From 51bd5a301d59abf703e77d7cc18489efd9b740d4 Mon Sep 17 00:00:00 2001 From: CarlosBordachar Date: Thu, 27 Oct 2022 02:50:30 -0300 Subject: [PATCH] Resolve #5. Resolve exercise 5 --- abis/ex5/ERC721.json | 522 + build/ex5/ERC721.json | 119590 ++++++++++++++++++++++++++++ contracts/tasks/ex5/ERC721.cairo | 345 + deploy/tasks/ex5/ERC721.md | 107 + 4 files changed, 120564 insertions(+) create mode 100644 abis/ex5/ERC721.json create mode 100644 build/ex5/ERC721.json create mode 100644 contracts/tasks/ex5/ERC721.cairo create mode 100644 deploy/tasks/ex5/ERC721.md diff --git a/abis/ex5/ERC721.json b/abis/ex5/ERC721.json new file mode 100644 index 0000000..47dfc68 --- /dev/null +++ b/abis/ex5/ERC721.json @@ -0,0 +1,522 @@ +[ + { + "members": [ + { + "name": "low", + "offset": 0, + "type": "felt" + }, + { + "name": "high", + "offset": 1, + "type": "felt" + } + ], + "name": "Uint256", + "size": 2, + "type": "struct" + }, + { + "data": [ + { + "name": "previousOwner", + "type": "felt" + }, + { + "name": "newOwner", + "type": "felt" + } + ], + "keys": [], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "data": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "keys": [], + "name": "Transfer", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "keys": [], + "name": "Approval", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "operator", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + } + ], + "keys": [], + "name": "ApprovalForAll", + "type": "event" + }, + { + "inputs": [ + { + "name": "name", + "type": "felt" + }, + { + "name": "symbol", + "type": "felt" + }, + { + "name": "owner", + "type": "felt" + }, + { + "name": "dummy_token_address", + "type": "felt" + } + ], + "name": "constructor", + "outputs": [], + "type": "constructor" + }, + { + "inputs": [ + { + "name": "interfaceId", + "type": "felt" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "name", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "symbol", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "ownerOf", + "outputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "getApproved", + "outputs": [ + { + "name": "approved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "operator", + "type": "felt" + } + ], + "name": "isApprovedForAll", + "outputs": [ + { + "name": "isApproved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "tokenURI", + "outputs": [ + { + "name": "tokenURI", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "name": "get_animal_characteristics", + "outputs": [ + { + "name": "sex", + "type": "felt" + }, + { + "name": "legs", + "type": "felt" + }, + { + "name": "wings", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + } + ], + "name": "is_breeder", + "outputs": [ + { + "name": "is_approved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + }, + { + "name": "index", + "type": "felt" + } + ], + "name": "token_of_owner_by_index", + "outputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "registration_price", + "outputs": [ + { + "name": "price", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "approve", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "operator", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + } + ], + "name": "setApprovalForAll", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "transferFrom", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + }, + { + "name": "data_len", + "type": "felt" + }, + { + "name": "data", + "type": "felt*" + } + ], + "name": "safeTransferFrom", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "mint", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "burn", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + }, + { + "name": "tokenURI", + "type": "felt" + } + ], + "name": "setTokenURI", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "newOwner", + "type": "felt" + } + ], + "name": "transferOwnership", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "sex", + "type": "felt" + }, + { + "name": "legs", + "type": "felt" + }, + { + "name": "wings", + "type": "felt" + } + ], + "name": "declare_animal", + "outputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "type": "function" + }, + { + "inputs": [], + "name": "register_me_as_breeder", + "outputs": [ + { + "name": "is_added", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [], + "name": "unregister_me_as_breeder", + "outputs": [ + { + "name": "is_added", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "name": "declare_dead_animal", + "outputs": [], + "type": "function" + } +] diff --git a/build/ex5/ERC721.json b/build/ex5/ERC721.json new file mode 100644 index 0000000..ce93891 --- /dev/null +++ b/build/ex5/ERC721.json @@ -0,0 +1,119590 @@ +{ + "abi": [ + { + "members": [ + { + "name": "low", + "offset": 0, + "type": "felt" + }, + { + "name": "high", + "offset": 1, + "type": "felt" + } + ], + "name": "Uint256", + "size": 2, + "type": "struct" + }, + { + "data": [ + { + "name": "previousOwner", + "type": "felt" + }, + { + "name": "newOwner", + "type": "felt" + } + ], + "keys": [], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "data": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "keys": [], + "name": "Transfer", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "keys": [], + "name": "Approval", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "operator", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + } + ], + "keys": [], + "name": "ApprovalForAll", + "type": "event" + }, + { + "inputs": [ + { + "name": "name", + "type": "felt" + }, + { + "name": "symbol", + "type": "felt" + }, + { + "name": "owner", + "type": "felt" + }, + { + "name": "dummy_token_address", + "type": "felt" + } + ], + "name": "constructor", + "outputs": [], + "type": "constructor" + }, + { + "inputs": [ + { + "name": "interfaceId", + "type": "felt" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "name", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "symbol", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "ownerOf", + "outputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "getApproved", + "outputs": [ + { + "name": "approved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "operator", + "type": "felt" + } + ], + "name": "isApprovedForAll", + "outputs": [ + { + "name": "isApproved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "tokenURI", + "outputs": [ + { + "name": "tokenURI", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "name": "owner", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "name": "get_animal_characteristics", + "outputs": [ + { + "name": "sex", + "type": "felt" + }, + { + "name": "legs", + "type": "felt" + }, + { + "name": "wings", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + } + ], + "name": "is_breeder", + "outputs": [ + { + "name": "is_approved", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + }, + { + "name": "index", + "type": "felt" + } + ], + "name": "token_of_owner_by_index", + "outputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "registration_price", + "outputs": [ + { + "name": "price", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "approve", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "operator", + "type": "felt" + }, + { + "name": "approved", + "type": "felt" + } + ], + "name": "setApprovalForAll", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "transferFrom", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + }, + { + "name": "data_len", + "type": "felt" + }, + { + "name": "data", + "type": "felt*" + } + ], + "name": "safeTransferFrom", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "to", + "type": "felt" + }, + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "mint", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + } + ], + "name": "burn", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "tokenId", + "type": "Uint256" + }, + { + "name": "tokenURI", + "type": "felt" + } + ], + "name": "setTokenURI", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "newOwner", + "type": "felt" + } + ], + "name": "transferOwnership", + "outputs": [], + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "sex", + "type": "felt" + }, + { + "name": "legs", + "type": "felt" + }, + { + "name": "wings", + "type": "felt" + } + ], + "name": "declare_animal", + "outputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "type": "function" + }, + { + "inputs": [], + "name": "register_me_as_breeder", + "outputs": [ + { + "name": "is_added", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [], + "name": "unregister_me_as_breeder", + "outputs": [ + { + "name": "is_added", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "token_id", + "type": "Uint256" + } + ], + "name": "declare_dead_animal", + "outputs": [], + "type": "function" + } + ], + "entry_points_by_type": { + "CONSTRUCTOR": [ + { + "offset": "0xa21", + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" + } + ], + "EXTERNAL": [ + { + "offset": "0xba3", + "selector": "0x288bc6d2a2f2ae8e8d1fda5179e3ff2d3048c6ddb08bc9d5e336952f03f818" + }, + { + "offset": "0xac8", + "selector": "0x2962ba17806af798afa6eaf4aa8c93a9fb60a3e305045b6eea33435086cae9" + }, + { + "offset": "0xcbb", + "selector": "0x3e8cfd4725c1e28fa4a6e3e468b4fcf75367166b850ac5f04e33ec843e82c1" + }, + { + "offset": "0xc4d", + "selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20" + }, + { + "offset": "0xd9e", + "selector": "0x49ff81cc2af2ca5d56b21388574e38d5fb2b1a828675efae5c628281bcfbe9" + }, + { + "offset": "0xaec", + "selector": "0xb180e2fe9f14914416216da76338ac0beb980443725c802af615f8431fdb1e" + }, + { + "offset": "0xd0f", + "selector": "0xd5d33d590e6660853069b37a2aea67c6fdaa0268626bc760350b590490feb5" + }, + { + "offset": "0xb34", + "selector": "0x12a7823b0c6bee58f8c694888f32f862c6584caa8afa0242de046d298ba684d" + }, + { + "offset": "0xcf7", + "selector": "0x14a390f291e2e1f29874769efdef47ddad94d76f77ff516fad206a385e8995f" + }, + { + "offset": "0xddf", + "selector": "0x15a4259bcd75a8b1e65ea057c5101febc97b4bf0fef67bbc5cb348a4133afba" + }, + { + "offset": "0xc6e", + "selector": "0x19d59d013d4aa1a8b1ce4c8299086f070733b453c02d0dc46e735edc04d6444" + }, + { + "offset": "0xdc4", + "selector": "0x1a2ca3f564d787d2f0904e81e4a1ed16263b397f955ef0b8a99d817d22429cb" + }, + { + "offset": "0xbfc", + "selector": "0x1acf678eadab4c7425a0e987e79bc4c92d5047c34a2727b456051b2b60185b1" + }, + { + "offset": "0xb56", + "selector": "0x2016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0" + }, + { + "offset": "0xa85", + "selector": "0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4" + }, + { + "offset": "0xc14", + "selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c" + }, + { + "offset": "0xb10", + "selector": "0x21cdf9aedfed41bc4485ae779fda471feca12075d9127a0fc70ac6b3b3d9c30" + }, + { + "offset": "0xa46", + "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd" + }, + { + "offset": "0xc30", + "selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a" + }, + { + "offset": "0xaa5", + "selector": "0x2e4263afad30923c891518314c3c95dbe830a16874e8abc5777a9a20b54c76e" + }, + { + "offset": "0xc9b", + "selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354" + }, + { + "offset": "0xb7d", + "selector": "0x31e5590607c15b3c601d2dd46306fa26fe67a93b81712c0da6a226ba7d61430" + }, + { + "offset": "0xa67", + "selector": "0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60" + }, + { + "offset": "0xcdc", + "selector": "0x3af14cf9125a7e603f469fb569173e11e14e3d05e809728bc019ab5bde8dfb1" + }, + { + "offset": "0xbd7", + "selector": "0x3f2387c5fc10a274c9063decad17252bdc446229607c764d106638ff3cdedd5" + }, + { + "offset": "0xd5b", + "selector": "0x3f2fdc092500ad53013aff77ad14f5b01d09e2475a52eb531ff0fd92df44f25" + } + ], + "L1_HANDLER": [] + }, + "program": { + "attributes": [ + { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "end_pc": 450, + "flow_tracking_data": { + "ap_tracking": { + "group": 34, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 448, + "value": "Ownable: caller is the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "end_pc": 451, + "flow_tracking_data": { + "ap_tracking": { + "group": 34, + "offset": 8 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 450, + "value": "Ownable: caller is not the owner" + }, + { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "end_pc": 464, + "flow_tracking_data": { + "ap_tracking": { + "group": 36, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 461, + "value": "Ownable: new owner is the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "end_pc": 567, + "flow_tracking_data": { + "ap_tracking": { + "group": 47, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 562, + "value": "ERC165: invalid interface id" + }, + { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "end_pc": 616, + "flow_tracking_data": { + "ap_tracking": { + "group": 49, + "offset": 35 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 614, + "value": "SafeUint256: addition overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "end_pc": 641, + "flow_tracking_data": { + "ap_tracking": { + "group": 50, + "offset": 60 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 639, + "value": "SafeUint256: subtraction overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "end_pc": 1100, + "flow_tracking_data": { + "ap_tracking": { + "group": 80, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1097, + "value": "ERC721: balance query for the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "end_pc": 1112, + "flow_tracking_data": { + "ap_tracking": { + "group": 81, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1107, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "end_pc": 1121, + "flow_tracking_data": { + "ap_tracking": { + "group": 81, + "offset": 74 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1119, + "value": "ERC721: owner query for nonexistent token" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "end_pc": 1131, + "flow_tracking_data": { + "ap_tracking": { + "group": 82, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1126, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "end_pc": 1140, + "flow_tracking_data": { + "ap_tracking": { + "group": 83, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1138, + "value": "ERC721: approved query for nonexistent token" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "end_pc": 1165, + "flow_tracking_data": { + "ap_tracking": { + "group": 86, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1163, + "value": "ERC721_Metadata: URI query for nonexistent token" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "end_pc": 1178, + "flow_tracking_data": { + "ap_tracking": { + "group": 87, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_mesage", + "start_pc": 1173, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "end_pc": 1183, + "flow_tracking_data": { + "ap_tracking": { + "group": 87, + "offset": 12 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1181, + "value": "ERC721: cannot approve from the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "end_pc": 1193, + "flow_tracking_data": { + "ap_tracking": { + "group": 87, + "offset": 82 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1190, + "value": "ERC721: approval to current owner" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "end_pc": 1217, + "flow_tracking_data": { + "ap_tracking": { + "group": 87, + "offset": 155 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1215, + "value": "ERC721: approve caller is not owner nor approved for all" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "end_pc": 1235, + "flow_tracking_data": { + "ap_tracking": { + "group": 90, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1232, + "value": "ERC721: either the caller or operator is the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "end_pc": 1239, + "flow_tracking_data": { + "ap_tracking": { + "group": 90, + "offset": 9 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1235, + "value": "ERC721: approve to caller" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "end_pc": 1245, + "flow_tracking_data": { + "ap_tracking": { + "group": 90, + "offset": 14 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1239, + "value": "ERC721: approved is not a Cairo boolean" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "end_pc": 1271, + "flow_tracking_data": { + "ap_tracking": { + "group": 91, + "offset": 1 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1266, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "end_pc": 1286, + "flow_tracking_data": { + "ap_tracking": { + "group": 92, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1283, + "value": "ERC721: either is not approved or the caller is the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "end_pc": 1306, + "flow_tracking_data": { + "ap_tracking": { + "group": 94, + "offset": 1 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1301, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "end_pc": 1321, + "flow_tracking_data": { + "ap_tracking": { + "group": 95, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1318, + "value": "ERC721: either is not approved or the caller is the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "end_pc": 1352, + "flow_tracking_data": { + "ap_tracking": { + "group": 97, + "offset": 99 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1351, + "value": "ERC721: caller is not the token owner" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "end_pc": 1367, + "flow_tracking_data": { + "ap_tracking": { + "group": 99, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1365, + "value": "ERC721: token id does not exist" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "end_pc": 1476, + "flow_tracking_data": { + "ap_tracking": { + "group": 103, + "offset": 87 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1475, + "value": "ERC721: transfer from incorrect owner" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "end_pc": 1479, + "flow_tracking_data": { + "ap_tracking": { + "group": 103, + "offset": 87 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1476, + "value": "ERC721: cannot transfer to the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "end_pc": 1558, + "flow_tracking_data": { + "ap_tracking": { + "group": 105, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1556, + "value": "ERC721: transfer to non ERC721Receiver implementer" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "end_pc": 1567, + "flow_tracking_data": { + "ap_tracking": { + "group": 106, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1562, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "end_pc": 1570, + "flow_tracking_data": { + "ap_tracking": { + "group": 106, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1567, + "value": "ERC721: cannot mint to the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "end_pc": 1579, + "flow_tracking_data": { + "ap_tracking": { + "group": 106, + "offset": 88 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1577, + "value": "ERC721: token already minted" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "end_pc": 1624, + "flow_tracking_data": { + "ap_tracking": { + "group": 107, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1619, + "value": "ERC721: token_id is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "end_pc": 1690, + "flow_tracking_data": { + "ap_tracking": { + "group": 108, + "offset": 85 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1688, + "value": "ERC721_Metadata: set token URI for nonexistent token" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "end_pc": 1726, + "flow_tracking_data": { + "ap_tracking": { + "group": 110, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1724, + "value": "ERC721: transfer to non ERC721Receiver implementer" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "end_pc": 2040, + "flow_tracking_data": { + "ap_tracking": { + "group": 126, + "offset": 124 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 2038, + "value": "ERC721Enumerable: owner index out of bounds" + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "end_pc": 2922, + "flow_tracking_data": { + "ap_tracking": { + "group": 198, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 2917, + "value": "ERC721: Invalid Input Type. token_id must be Uint256." + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "end_pc": 2963, + "flow_tracking_data": { + "ap_tracking": { + "group": 201, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 2960, + "value": "ERC721: Invalid Input Value. Zero address is not a breeder." + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "end_pc": 3002, + "flow_tracking_data": { + "ap_tracking": { + "group": 204, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_mesage", + "start_pc": 2999, + "value": "ERC721: Invalid Input Value. Account must be a valid address. Zero address is not supported as a token holder." + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "end_pc": 3006, + "flow_tracking_data": { + "ap_tracking": { + "group": 204, + "offset": 3 + }, + "reference_ids": {} + }, + "name": "error_mesage", + "start_pc": 3002, + "value": "ERC721: Invalid Input Value. index must be a positive integer." + }, + { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "end_pc": 3466, + "flow_tracking_data": { + "ap_tracking": { + "group": 253, + "offset": 74 + }, + "reference_ids": {} + }, + "name": "error_mesage", + "start_pc": 3464, + "value": "ERC721: Internal Error: Unable to charge dummy tokens." + }, + { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "end_pc": 3594, + "flow_tracking_data": { + "ap_tracking": { + "group": 264, + "offset": 67 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 3592, + "value": "Breeder Required. Caller is not a registered breeder." + } + ], + "builtins": [ + "pedersen", + "range_check" + ], + "compiler_version": "0.10.0", + "data": [ + "0x40780017fff7fff", + "0x1", + "0x208b7fff7fff7ffe", + "0x400380007ffb7ffc", + "0x400380017ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x480280027ffb8000", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x3", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480080007fff8000", + "0x400080007ffd7fff", + "0x482480017ffd8001", + "0x1", + "0x482480017ffd8001", + "0x1", + "0xa0680017fff7ffe", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", + "0x402a7ffc7ffd7fff", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x4", + "0x400780017fff7ffd", + "0x1", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffc", + "0x20680017fff7fff", + "0x4", + "0x402780017ffc7ffc", + "0x1", + "0x208b7fff7fff7ffe", + "0x400380007ffc7ffd", + "0x482680017ffc8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x48297ffc80007ffd", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x3ffffffffffffffffffffffffffffff", + "0x480280017ffc8000", + "0x48307fff80007ffe", + "0x400280027ffc7fff", + "0x480280017ffc8000", + "0x484480017fff8000", + "0x100000000000000000000000000000000", + "0x480280007ffc8000", + "0x40317fff7ffe7ffd", + "0x482680017ffc8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480280017ffc8000", + "0x484480017fff8000", + "0x100000000000000000000000000000000", + "0x480280007ffc8000", + "0x40317fff7ffe7ffd", + "0x480280017ffc8000", + "0x482480017fff8000", + "0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001", + "0x20680017fff7fff", + "0xb", + "0x482680017ffc8000", + "0x2", + "0x480280007ffc8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x10780017fff7fff", + "0x9", + "0x482680017ffc8000", + "0x2", + "0x480280017ffc8000", + "0x480680017fff8000", + "0x800000000000010ffffffffffffffff", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480280017ffc8000", + "0x480280007ffc8000", + "0x208b7fff7fff7ffe", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x484480017fff8000", + "0x2aaaaaaaaaaaab05555555555555556", + "0x48307fff7ffd8000", + "0x480280027ffb8000", + "0x480280037ffb8000", + "0x484480017fff8000", + "0x4000000000000088000000000000001", + "0x48307fff7ffd8000", + "0xa0680017fff8000", + "0xe", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffc80007fff", + "0x40307ffc7ff87fff", + "0x48297ffd80007ffc", + "0x482680017ffd8000", + "0x1", + "0x48507fff7ffe8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xc", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffd80007fff", + "0x48327fff7ffc8000", + "0x40307ffa7ff67fff", + "0x48527ffe7ffc8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x40317ffd7ff97ffd", + "0x48297ffc80007ffd", + "0x48527fff7ffc8000", + "0x40507ffb7ff77fff", + "0x40780017fff7fff", + "0x2", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0x10", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa3", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127ffe7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9d", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0xc", + "0x40780017fff7fff", + "0xa", + "0x480680017fff8000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", + "0x480a7ffc7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8e", + "0x10780017fff7fff", + "0x8", + "0x40780017fff7fff", + "0xb", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff86", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x43616c6c436f6e7472616374", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x7", + "0x480280057ff98000", + "0x480280067ff98000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x47657443616c6c657241646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x476574436f6e747261637441646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffc7fff", + "0x400380017ffc7ffd", + "0x482680017ffc8000", + "0x3", + "0x480280027ffc8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ffc", + "0x400380027ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x5", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xa", + "0x400380007ffc7ffd", + "0x40780017fff7fff", + "0x14", + "0x482680017ffc8000", + "0x1", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xe", + "0x484680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x400280007ffc7fff", + "0x40780017fff7fff", + "0x11", + "0x482680017ffc8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x100000000000000000000000000000000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff5c", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x48297ffc80007ffd", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", + "0x208b7fff7fff7ffe", + "0x400380007ffb7ffc", + "0x400380017ffb7ffd", + "0x482680017ffb8000", + "0x2", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x4", + "0x404b800280028002", + "0x404b800380038003", + "0x482a7ffc7ffa8000", + "0x4846800180028000", + "0x100000000000000000000000000000000", + "0x40327fff80007ffe", + "0x482a7ffd7ffb8000", + "0x482880027fff8000", + "0x4846800180038000", + "0x100000000000000000000000000000000", + "0x40327fff80017ffe", + "0x480a7ff97fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480a80037fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffb", + "0x20680017fff7fff", + "0x9", + "0x480a7ff97fff8000", + "0x482680017ffa8000", + "0x1", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffda", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd3", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x480680017fff8000", + "0x1", + "0x48127ffd7fff8000", + "0x48307ffd80007ffe", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0xffffffffffffffffffffffffffffffff", + "0x480680017fff8000", + "0xffffffffffffffffffffffffffffffff", + "0x480a7ffb7fff8000", + "0x48287ffc80007ffd", + "0x48287ffd80007ffd", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbd", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x48127ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffb", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffa", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe85", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x1390fd803c110ac71730ece1decfc34eb1d0088e295d4f1b125dda1e0c5b9ff", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7f", + "0x40137fff7fff8001", + "0x4003800080017ffc", + "0x4003800180017ffd", + "0x4826800180018000", + "0x2", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff47", + "0x480a7ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x2bd557f4ba80dfabefabe45e9b2dd35db1b9a78e96c72bc2b69b655ce47a930", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff28", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff22", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x2e", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xc", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefa", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe59", + "0x40127ffd7fff7ff7", + "0x48127ffc7fff8000", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4b", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xd", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffba", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127fe77fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff89", + "0x48127ffe7fff8000", + "0x48127fe37fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x10f6bdc8f69644775581b157f06334cb94ae302da4f6d09656c9a31f092cff6", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe08", + "0x480a7ffc7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe84", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb9", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb2", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffe00365a", + "0x20680017fff7fff", + "0x8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xffffffff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde9", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdbf", + "0x40137fff7fff8000", + "0x4003800080007ffd", + "0x4826800180008000", + "0x1", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", + "0x4828800080007ffc", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5e", + "0x482480017fff8000", + "0x1", + "0x40307ffe7ffd7fff", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480080007ffc8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeac", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea8", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea7", + "0x400680017fff7fff", + "0x0", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe93", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8f", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb5", + "0x400680017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffecf", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x3", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd71", + "0x40137fff7fff8000", + "0x4003800080007ff8", + "0x4003800180007ff9", + "0x4003800280007ffa", + "0x4003800380007ffb", + "0x4003800480007ffc", + "0x400380007ff67ffc", + "0x402780017ff68001", + "0x1", + "0x4826800180008000", + "0x5", + "0x40297ffc7fff8002", + "0x4826800180008000", + "0x5", + "0x480a7ffd7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd68", + "0x480a7ff57fff8000", + "0x480a7ff77fff8000", + "0x480680017fff8000", + "0xfa119a8fafc6f1a02deb36fe5efbcc4929ef2021e50cf1cb6d1a780ccd009b", + "0x4829800080008002", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe02", + "0x482480017fff8000", + "0x1", + "0x40307ffe7ffd7fff", + "0x48127ffc7fff8000", + "0x480a80017fff8000", + "0x480080007ffc8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4c", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd46", + "0x40137fff7fff8001", + "0x4003800080017ffa", + "0x4003800180017ffb", + "0x4003800280017ffc", + "0x4003800380017ffd", + "0x4826800180018000", + "0x4", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0c", + "0x480a7ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd31", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd2b", + "0x40137fff7fff8001", + "0x4003800080017ffa", + "0x4003800180017ffb", + "0x4003800280017ffc", + "0x4003800380017ffd", + "0x4826800180018000", + "0x4", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf1", + "0x480a7ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd16", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x6ad9ed7b6318f1bcffefe19df9aeb40d22c36bed567e1925a5ccde0536edd", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd10", + "0x40137fff7fff8001", + "0x4003800080017ffb", + "0x4003800180017ffc", + "0x4003800280017ffd", + "0x4826800180018000", + "0x3", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd7", + "0x480a7ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3a762f04043ed52ed42b61e4ad2e367163f5a928ef94f71121e68d78b8a00df", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb8", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb2", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x144d444467c1a7848e62c72fd678f9225602bf41005c66940ee2373705d90a2", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9a", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd94", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x19eba13c2ffadbed69e7a3ff4399447db5f0f1deff605072b123c3d33e5e300", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcc1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcbe", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd3a", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd6e", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd66", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x3bbfaec36427c06f699125e4eedffd9148420983ff94e5284a9087e22050b79", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc93", + "0x480a7ffc7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd0f", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd44", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd3f", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd37", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd32", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x2618225f6ac4a00b9635ed0e036ea1db17cf353e7ad948e882dbbca50565fbd", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc5f", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc5c", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd8", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd0c", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd04", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x350efce99c55a2fbf8c09cde498fd24d686f21a900621778cd59ed10f4ae843", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc31", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc2e", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcaa", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcde", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd6", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x1c87484b935c893d53d087ca6e0d4d7bcf1a90e5f4118b67a2c3df896c16cd8", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc03", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc00", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc7c", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb0", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffca8", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee7", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff02", + "0x480680017fff8000", + "0x80ac58cd", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdfd", + "0x480680017fff8000", + "0x5b5e139f", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf9", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec9", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee1", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbcf", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff2c", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb0", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef4", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbba", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc9d", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x11f", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3a", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff60", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x106", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7d", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc6e", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc1d", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb7c", + "0x48127ffc7fff8000", + "0x480a7ff87fff8000", + "0x48127ff57fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffead", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb77", + "0x48307ffb80007fb5", + "0x20680017fff7fff", + "0xe", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xf2", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127ff77fff8000", + "0x48127fb07fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff24", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb5a", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xdd", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbea", + "0x48487ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb48", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb49", + "0x480680017fff8000", + "0x1", + "0x48287ffd80007fff", + "0x480680017fff8000", + "0x0", + "0x40527ffe7ffd7fff", + "0x48127ff37fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff17fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0d", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127faf7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe00", + "0x48127ffe7fff8000", + "0x48127fe27fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc11", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc0", + "0x40137fff7fff8000", + "0x480a7ff77fff8000", + "0x48127ffd7fff8000", + "0x48127ff77fff8000", + "0x480a80007fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x4b", + "0x48527fff80008000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb15", + "0x48127ffa7fff8000", + "0x48127ff87fff8000", + "0x48127ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xaf", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff77fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbee", + "0x480a7ff67fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb9d", + "0x40137fff7fff8000", + "0x480a7ff57fff8000", + "0x48127ffd7fff8000", + "0x48127ff77fff8000", + "0x480a80007fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x28", + "0x48527fff80008000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffaf2", + "0x48127ffa7fff8000", + "0x48127ff87fff8000", + "0x48127ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xd1", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbcb", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb7a", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0f", + "0x40127fff7fff7fa8", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x3c", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef8", + "0x40137fff7fff8000", + "0x48297ffb80008000", + "0x20680017fff7fff", + "0x8", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefa", + "0x48287ffb80007fff", + "0x20680017fff7fff", + "0x8", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a80007fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff00", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x8", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdbd", + "0x20680017fff7fff", + "0x8", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe18", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea6", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd19", + "0x48127ffe7fff8000", + "0x48127fe07fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe93", + "0x400a7ffa7fff7fff", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa54", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdab", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc98", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb1", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9a", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc70", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda0", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd6b", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb7", + "0x48127ffe7fff8000", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb3", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x91", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa05", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffae9", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9f9", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x48127ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff69", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4d", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc23", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd53", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd1e", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc69", + "0x48127fe27fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffab0", + "0x480a7ffa7fff8000", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf7", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3f", + "0x48127f417fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd13", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc00", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127e6c7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd19", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce3", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x48127dea7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc2e", + "0x48127fe27fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa77", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefa", + "0x400680017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd7e", + "0x208b7fff7fff7ffe", + "0x480a7ff57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa14", + "0x48127ffe7fff8000", + "0x480a7ff77fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x150b7a02", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb96", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x15", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ff97fff8000", + "0x48127fe17fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbd5", + "0x400680017fff7fff", + "0x150b7a02", + "0x48127ffd7fff8000", + "0x480a7ff67fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0xa66bd575", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb78", + "0x48127ffd7fff8000", + "0x480a7ff67fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x262d01c4ea0ba5224219c45caec496441066662f6d51da63f7a7184ad4d7beb", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9eb", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9e6", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9df", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9da", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0xf11411b81c9239cfac89f17700199691be25bd01ff084beac5a58ae0f3a116", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff907", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff904", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff980", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b4", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9af", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480a7ff77fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9a6", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9a1", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x2b0c4bfff42b5530b077c974b25c0efd9f26ebb99ff749ef9462b69c6569843", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ce", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8cb", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff947", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff97b", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff976", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480a7ff77fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff96d", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff968", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x22dde6bfc6a0294f0be56e2261b1d20d98b72a06f6f327c202666e645a9b64", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff895", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff892", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff88f", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff90b", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff93e", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff939", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", + "0x480a7ff67fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff92f", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff92a", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0xb07881c3aa5eae500f7a20fc4f14798fc96eb5dbedba83d1c10500b7188c53", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff857", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff854", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8d0", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff904", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ff", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480a7ff77fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8f6", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8f1", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff91f", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc5d", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff92d", + "0x400680017fff7fff", + "0x1", + "0x48127fd37fff8000", + "0x48127fd37fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff82", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xdc", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xbd", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcdf", + "0x208b7fff7fff7ffe", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0xc8", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0xa9", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcec", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x25", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x94", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc12", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x99", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x24", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe00", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7e", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec4", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127fb77fff8000", + "0x48127fb77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef7", + "0x48127f727fff8000", + "0x48127f727fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9ee", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7d", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x6", + "0x480a7ffa7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5f", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9f2", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec0", + "0x40137ffe7fff8000", + "0x40137fff7fff8001", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127faf7fff8000", + "0x48127faf7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7e", + "0x40137ffe7fff8002", + "0x40137fff7fff8003", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127f637fff8000", + "0x48127f637fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe86", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb7", + "0x48127ed57fff8000", + "0x48127ed57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe43", + "0x40137ffd7fff8004", + "0x40137ffe7fff8005", + "0x48127ebb7fff8000", + "0x48127ebb7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8b7", + "0x20680017fff7fff", + "0x15", + "0x480a80047fff8000", + "0x480a80057fff8000", + "0x48127ffc7fff8000", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea0", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe61", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a80057fff8000", + "0x480a80047fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb7d", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebf", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127fab7fff8000", + "0x48127fab7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef3", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb61", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff980", + "0x40137ffe7fff8000", + "0x40137fff7fff8001", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec3", + "0x40137ffb7fff8002", + "0x40137ffc7fff8003", + "0x40137ffe7fff8004", + "0x40137fff7fff8005", + "0x48127ffd7fff8000", + "0x480a80047fff8000", + "0x480a80057fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff862", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x20680017fff7fff", + "0x1a", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebe", + "0x480a7ffb7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7b", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe59", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x480a80047fff8000", + "0x480a80057fff8000", + "0x48127ff87fff8000", + "0x48127ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe65", + "0x48127fad7fff8000", + "0x48127fad7fff8000", + "0x480a80047fff8000", + "0x480a80057fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe99", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6c2", + "0x40137fff7fff8000", + "0x4003800080007ffa", + "0x4003800180007ffb", + "0x4003800280007ffc", + "0x4003800380007ffd", + "0x4826800180008000", + "0x4", + "0x480a7ff77fff8000", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20", + "0x4828800080007ffc", + "0x480a80007fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff75e", + "0x482480017fff8000", + "0x1", + "0x40307ffe7ffd7fff", + "0x48127ffc7fff8000", + "0x480a7ff87fff8000", + "0x480080007ffc8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x2687c1589b5bbc17e871f3a35bef56697b9d627615e9630aea10ed0c2cbc382", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff764", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff75f", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff758", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff753", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x3b6bde008c6686e65ab0c866519171a1ee90b3760e8495d56b485f49f2eb9c", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff680", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff67d", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6f9", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff72d", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff728", + "0x48127ffe7fff8000", + "0x482480017ff08000", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff723", + "0x48127ffe7fff8000", + "0x48127fe77fff8000", + "0x48127fe77fff8000", + "0x48127fee7fff8000", + "0x48127ff47fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd1", + "0x480a7ff67fff8000", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff719", + "0x482480017ff88000", + "0x1", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff714", + "0x482480017ff28000", + "0x2", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff70f", + "0x48127fea7fff8000", + "0x48127fea7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x3d72774822e619673761878c7756db18d99d2c62ee36badda98a53e8b864d9c", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff63c", + "0x480a7ffc7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6b8", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6ed", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6e6", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x3edb1217667806d426f4af04da0624a4b134065308bdbecd0afacbd1263f943", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6ce", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6c8", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa1c", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff79f", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x3da", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x4", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff7e8", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9e3", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9cb", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b2", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff998", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff987", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff979", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff95d", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff67e", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff59e", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe23", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffa", + "0x4003800180007ffb", + "0x4003800280007ffc", + "0x4826800180008000", + "0x3", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x48127ff27fff8000", + "0x48127ff27fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff488", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe3c", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff461", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff468", + "0x480a7ffa7fff8000", + "0x480a7ff97fff8000", + "0x48127ffd7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x24c", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc19", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff885", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8a1", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbb8", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x4", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff57fff8000", + "0x480a7ff67fff8000", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbab", + "0x208b7fff7fff7ffe", + "0x480280027ffb8000", + "0x480280047ffd8000", + "0x400080007ffe7fff", + "0x482680017ffd8000", + "0x5", + "0x480280047ffd8000", + "0x48307fff7ffe8000", + "0x402a7ffd7ffc7fff", + "0x480280027ffb8000", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x482480017ffd8000", + "0x1", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x480280047ffd8000", + "0x482680017ffd8000", + "0x5", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff529", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb94", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff885", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb86", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ff87fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4e8", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b7", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4da", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4ce", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff7", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0xdc", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc35", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff3dd", + "0x40137ffd7fff8000", + "0x40137ffe7fff8001", + "0x48127fe57fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff385", + "0x48127fe07fff8000", + "0x48127ffd7fff8000", + "0x48127ff47fff8000", + "0x48127ffc7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffaf1", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc68", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc27", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbb", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x48127ff47fff8000", + "0x48127ff27fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff348", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff34c", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe73", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc76", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x48127fd57fff8000", + "0x48127fda7fff8000", + "0x48127fe27fff8000", + "0x48127fe27fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbb8", + "0x400680017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127fdf7fff8000", + "0x48127ffc7fff8000", + "0x48127fb87fff8000", + "0x480680017fff8000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc51", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffce", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff30a", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc2b", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff761", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa62", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280017ffb8000", + "0x480280007ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x40780017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb77", + "0x48127ffe7fff8000", + "0x48127ffc7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2b8", + "0x48127ffe7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffd7fff8000", + "0x48127ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbcd", + "0x400680017fff7fff", + "0x1", + "0x48127ffd7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff22a", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffc7fff8000", + "0x48127ffa7fff8000", + "0x208b7fff7fff7ffe" + ], + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo": "// Create a reference to tokenId as felt*.\nlet __calldata_tmp: felt* = cast(&tokenId, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/0a7b0d23cc295962f0ca1cbc893c9fd93cfd7ac5a7418f9bd06781fe23a1c19a.cairo": "let __calldata_arg_wings = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0e0baea5b6a2e35f26a18142a82419bfc3ce1e028618cf49049ae2608300eebf.cairo": "let __calldata_arg_legs = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo": "// Create a reference to ret_value.token_id as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.token_id, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo": "assert [__calldata_ptr] = interfaceId;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/29ea373a95a0a4800e714a3c1c36faa3d6e3abfec6aa2915361da0b2839ec517.cairo": "assert [__return_value_ptr] = ret_value.wings;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/2aef757f589447008293bddb77833a6b09ad6aeb3836fac2487b4b086c4e2ec0.cairo": "let __calldata_arg_newOwner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo": "let __return_value_arg_selector = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo": "let __calldata_arg_index = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/31a78b483470605c0e711fd67453b41bee9b52748b3310b33c0f792887cde889.cairo": "// Create a reference to ret_value.price as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.price, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo": "assert [__calldata_ptr] = recipient;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo": "assert [__return_value_ptr] = ret_value.symbol;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo": "assert [__calldata_ptr] = approved;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo": "let __calldata_arg_approved = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/45d79d0fce48a6083c5d2761954a983d1a07a59a39d5b135e591a33d62f282ce.cairo": "assert [__return_value_ptr] = ret_value.legs;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/4b9ee40c733fa52383f1aec7d0c0ae5371ee9ab774ef2bef5bde8db3429a1a03.cairo": "assert [__return_value_ptr] = ret_value.tokenURI;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo": "let __calldata_arg_data_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo": "// Create a reference to amount as felt*.\nlet __calldata_tmp: felt* = cast(&amount, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo": "assert [__calldata_ptr] = data_len;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = data_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __calldata_ptr.\nlet __calldata_ptr_copy = __calldata_ptr;\n// Store the updated __calldata_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __calldata_ptr: felt* = __calldata_ptr + data_len * 1;\nmemcpy(\n dst=__calldata_ptr_copy,\n src=data,\n len=data_len * 1);\n", + "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo": "let __calldata_arg_tokenId = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo": "assert [__return_value_ptr] = ret_value.isApproved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo": "assert [__return_value_ptr] = ret_value.name;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo": "let __calldata_arg_interfaceId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo": "assert [__calldata_ptr] = sender;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo": "assert [__return_value_ptr] = ret_value.approved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/767d68986d509d58057d618f38507ad70a1941e1852f89377e3d811a7c6e0bbe.cairo": "assert [__return_value_ptr] = ret_value.is_added;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7bc319d6ea02dcdc05b92379daf51a61e65b3a20e716a9c20084f70fb74b92db.cairo": "assert [__return_value_ptr] = ret_value.is_approved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo": "assert [__calldata_ptr] = owner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo": "let __return_value_arg_success = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo": "let __calldata_arg_token_id = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/9407d7733f2ab6f6153911669f8fdcbfc2c3c86fba30370fabb2b65a225aa092.cairo": "let __calldata_arg_dummy_token_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo": "assert retdata_size = __return_value_actual_size;\n", + "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo": "let __return_value_actual_size = __return_value_ptr - cast(retdata, felt*);\n", + "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo": "assert [__calldata_ptr] = from_;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/ae3dfa17dc12dd87af4e0534bebac4cd90aee5d1609c69e0139cd153707bf10b.cairo": "let __calldata_arg_sex = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo": "let __calldata_arg_operator = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/d04e2d3251723f2c7e6f92168ce103af197c6889e64f95c3180faf7ef6a79c04.cairo": "let __calldata_arg_tokenURI = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo": "assert [__calldata_ptr] = operator;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo": "let __calldata_arg_to = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo": "let __calldata_arg_from_ = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_data_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_data = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_data_len * 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo": "let __calldata_arg_account = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo": "// Create a reference to ret_value.balance as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.balance, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f774ab9b1a4c3a5620a8b6c5fe25685a8d75855d4c0081dbe84e3b7d99116866.cairo": "assert [__return_value_ptr] = ret_value.sex;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo": "func supportsInterface{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=SUPPORTSINTERFACE_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFERFROM_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo": "func transferFrom{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=ONERC721RECEIVED_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo": "func onERC721Received{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo": "\nreturn (selector=__return_value_arg_selector,);\n", + "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner,);\nlet (range_check_ptr, retdata_size, retdata) = balanceOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, owner=__calldata_arg_owner, dummy_token_address=__calldata_arg_dummy_token_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(sex=__calldata_arg_sex, legs=__calldata_arg_legs, wings=__calldata_arg_wings,);\nlet (range_check_ptr, retdata_size, retdata) = declare_animal_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/declare_animal/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/declare_animal/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/declare_animal/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/declare_dead_animal/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/declare_dead_animal/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/declare_dead_animal/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = getApproved_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_animal_characteristics/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_animal_characteristics/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id,);\nlet (range_check_ptr, retdata_size, retdata) = get_animal_characteristics_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_animal_characteristics/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, operator=__calldata_arg_operator,);\nlet (range_check_ptr, retdata_size, retdata) = isApprovedForAll_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(account=__calldata_arg_account,);\nlet (range_check_ptr, retdata_size, retdata) = is_breeder_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/is_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/is_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/is_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/mint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/mint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/mint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = name_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = owner_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = ownerOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/register_me_as_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/register_me_as_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/register_me_as_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = register_me_as_breeder_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = registration_price_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/registration_price/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/registration_price/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/registration_price/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/renounceOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/renounceOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/renounceOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo": "func balanceOf_encode_return(ret_value: (balance: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo": "func declare_animal_encode_return(ret_value: (token_id: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo": "func getApproved_encode_return(ret_value: (approved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo": "func get_animal_characteristics_encode_return(ret_value: (sex: felt, legs: felt, wings: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo": "func isApprovedForAll_encode_return(ret_value: (isApproved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo": "func is_breeder_encode_return(ret_value: (is_approved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo": "func name_encode_return(ret_value: (name: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo": "func owner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo": "func ownerOf_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo": "func register_me_as_breeder_encode_return(ret_value: (is_added: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo": "func registration_price_encode_return(ret_value: (price: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo": "func supportsInterface_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo": "func symbol_encode_return(ret_value: (symbol: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo": "func tokenURI_encode_return(ret_value: (tokenURI: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo": "func token_of_owner_by_index_encode_return(ret_value: (token_id: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo": "func unregister_me_as_breeder_encode_return(ret_value: (is_added: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId, data_len=__calldata_arg_data_len, data=__calldata_arg_data,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(operator=__calldata_arg_operator, approved=__calldata_arg_approved,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setTokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, tokenURI=__calldata_arg_tokenURI,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setTokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setTokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(interfaceId=__calldata_arg_interfaceId,);\nlet (range_check_ptr, retdata_size, retdata) = supportsInterface_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = symbol_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = tokenURI_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(account=__calldata_arg_account, index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = token_of_owner_by_index_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/token_of_owner_by_index/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/token_of_owner_by_index/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/token_of_owner_by_index/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(newOwner=__calldata_arg_newOwner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = unregister_me_as_breeder_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/unregister_me_as_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/unregister_me_as_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/unregister_me_as_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 479559987705328862372362947504386080106579713470203672197513890426980061174;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&interface_id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let (storage_addr) = addr(interface_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let (storage_addr) = addr(interface_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 425948655246834951023382595567403326392147733879151049994459729835523809558;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1216948699083389372761620393074310578140236810850808160611125698991729580099;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1079213035913931897056332105495109524451856058442083615283114591834346453995;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 61604307129196780118296711543584917649281122988081132028062811618121784164;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let (storage_addr) = addr(owner, index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(owner, index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 311796791401713537503427708838646807392281481788909959602639719990132509779;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_balances/decl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_balances/impl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1689070751711682002574449661976975431205580400605311704759272493176844520313;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_name/decl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_name/impl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1652684853864905172544337095254754697509410599464472831863256033323469373663;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (is_approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 1499941398251932938145434100423974784112539485970179630262769564930032724035;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&operator, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (is_approved: felt) {\n let (storage_addr) = addr(owner, operator);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let (storage_addr) = addr(owner, operator);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_owners/decl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_owners/impl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 732758942413505530596855626420601171651165063220406830197835351730705261312;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_symbol/decl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_symbol/impl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 573923459913003082056231149040220796427044997268401212428888364214688518306;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1076908112970844878973126643644898770413526557587041289723434576783586254781;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo": "namespace ERC721_token_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (token_uri: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo": "namespace ERC721_token_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 806486442333030233212762024990118693565074705322752959577960571137983343832;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (token_uri: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/_dummy_token_address/decl.cairo": "namespace _dummy_token_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n dummy_token_address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/_dummy_token_address/impl.cairo": "namespace _dummy_token_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1776903811353326730136201574748759631225114360054618373665722974886955317571;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n dummy_token_address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/_is_breeder/decl.cairo": "namespace _is_breeder {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n is_approved: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/_is_breeder/impl.cairo": "namespace _is_breeder {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1737082973848168054150592256147721266221325178072747574306851004333628476828;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n is_approved: felt\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: felt\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/animals/decl.cairo": "namespace animals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (animal: Animal) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Animal\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/animals/impl.cairo": "namespace animals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 104988448846948787179363677903273467897125718117664767780901691370369117084;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (animal: Animal) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n let (__storage_var_temp2) = storage_read(address=storage_addr + 2);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n tempvar __storage_var_temp2: felt = __storage_var_temp2;\n return ([cast(&__storage_var_temp0, Animal*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Animal\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n storage_write(address=storage_addr + 2, value=[cast(&value, felt) + 2]);\n return ();\n }\n}", + "autogen/starknet/storage_var/last_token_id/decl.cairo": "namespace last_token_id {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n token_id: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/last_token_id/impl.cairo": "namespace last_token_id {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1089234189111911538904872495087684628502945625141946150656908764684411978626;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n token_id: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "24": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "26": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "28": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "29": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 22 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "30": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "32": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 34, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "34": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 37 + } + }, + "35": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "36": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "38": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "39": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "40": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "41": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "43": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "48": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "49": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "52": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "53": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "54": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "57": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 134 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 142 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "58": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 142 + } + }, + "60": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 40, + "start_line": 142 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 143 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "63": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 143 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "67": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 144 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 132 + } + }, + "69": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 19, + "start_line": 144 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "70": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 144 + } + }, + "72": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 144 + } + }, + "74": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 132, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 146, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 132 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 146, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 19, + "start_line": 146 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "79": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 146, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 146 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 146, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 146 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 131, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 148 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 131 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 130, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 148 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 130 + } + }, + "85": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 148 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "87": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "91": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "96": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "100": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "103": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "110": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "112": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "114": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "115": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "116": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "117": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "119": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "121": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "122": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "123": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "124": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "125": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "126": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "128": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "131": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "133": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "135": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "136": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "138": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "140": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "142": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "143": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "144": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "146": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "148": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "149": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "151": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "153": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "155": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "157": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "158": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "159": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "161": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "163": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "165": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "166": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "167": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "169": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "170": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "171": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 47 + } + }, + "173": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "174": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "175": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "176": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "177": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 51, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "178": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 52, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 52 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 55, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 55 + } + }, + "180": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 56 + } + }, + "181": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 56 + } + }, + "182": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 56 + } + }, + "183": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 198 + } + }, + "185": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "186": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 199 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 201, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 200 + } + }, + "188": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 201, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 201 + } + }, + "189": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 201, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 201 + } + }, + "190": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 272, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 65, + "start_line": 272 + } + }, + "192": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 272, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 272 + } + }, + "193": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 273 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 60, + "end_line": 274, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 274 + } + }, + "195": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 275 + } + }, + "196": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 275 + } + }, + "197": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 350 + } + }, + "199": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "200": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "201": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 351, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 353, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 353 + } + }, + "203": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 354 + } + }, + "204": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "205": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 368 + } + }, + "207": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 367 + } + }, + "208": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 367 + } + }, + "209": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 367 + } + }, + "210": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 369, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 369 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 370, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 371, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 370 + } + }, + "212": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 371, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "213": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 387 + } + }, + "215": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "216": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "217": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "218": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "219": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 387, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "220": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 388, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 388 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 389, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 385, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 390 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 385 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 389 + } + }, + "222": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 390 + } + }, + "223": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 84, + "end_line": 19, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "225": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "226": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 22, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "228": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 23 + } + }, + "230": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "232": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "233": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 27, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "235": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 33, + "start_line": 29 + } + }, + "237": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 32, + "start_line": 29 + } + }, + "239": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "240": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 30, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "242": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 31 + } + }, + "244": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 32 + } + }, + "246": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "247": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "248": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 35 + } + }, + "250": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 29, + "start_line": 18 + } + }, + "251": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "253": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "255": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "256": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "257": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 18, + "start_line": 43 + } + }, + "258": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + } + }, + "260": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "261": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 22, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "262": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "263": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 24 + } + }, + "265": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "266": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "268": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 36 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "269": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 44, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "270": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 46, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 22, + "start_line": 46 + } + }, + "271": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 46, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 46 + } + }, + "273": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 46, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "274": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "275": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "276": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 47 + } + }, + "278": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "279": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "280": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "281": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "282": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "284": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "285": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "286": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 18, + "start_line": 50 + }, + "While expanding the reference 'carry_high' in:" + ], + "start_col": 11, + "start_line": 35 + } + }, + "287": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 50, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "288": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 134, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "289": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 134, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 134 + } + }, + "291": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "292": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 135, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 135 + } + }, + "294": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 135, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 34, + "start_line": 135 + } + }, + "295": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + } + }, + "297": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 135, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "298": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "299": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 137 + } + }, + "301": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 137 + } + }, + "302": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + } + }, + "304": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "305": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "306": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "307": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "308": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "309": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "310": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + } + }, + "312": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "314": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 149 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "315": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "316": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + } + }, + "317": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 227 + } + }, + "319": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 227 + } + }, + "321": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 226, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 226, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 226 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 226 + } + }, + "322": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 227 + } + }, + "323": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 227 + } + }, + "324": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 227 + } + }, + "325": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 226, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 233, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 226 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 232 + } + }, + "326": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 233, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 233 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 232 + } + }, + "327": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 233, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 233 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 232 + } + }, + "328": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 233, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 233 + } + }, + "330": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 234 + } + }, + "332": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 61, + "start_line": 234 + } + }, + "334": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 234 + } + }, + "336": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 235, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 232 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 234 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "337": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 235, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 235 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 234 + } + }, + "338": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 234, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 235, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 235 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 234 + } + }, + "339": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 235, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "340": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 232 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "341": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 291 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 290 + } + }, + "342": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 291 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 290 + } + }, + "343": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 291 + } + }, + "345": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 232, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 291 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 232 + } + }, + "346": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 292 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "347": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 292 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "348": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 292 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 291 + } + }, + "349": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 291, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 292 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 291 + } + }, + "350": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 292 + } + }, + "352": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "353": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "354": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "355": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + } + }, + "356": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 300 + } + }, + "357": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 300 + } + }, + "359": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 300 + } + }, + "361": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 301, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "362": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 301, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 301 + } + }, + "364": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 301, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 301 + } + }, + "365": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 303 + } + }, + "366": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 303 + } + }, + "368": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 303 + } + }, + "370": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 304, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "371": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 304, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 304 + } + }, + "373": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 304, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 304 + } + }, + "374": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 306, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "375": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 306, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 306 + } + }, + "377": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 306, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 306 + } + }, + "378": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "380": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "382": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "383": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "385": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "386": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "388": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "389": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 27, + "start_line": 15 + }, + "While handling calldata argument 'previousOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "390": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "391": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "393": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 385, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 385 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "394": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "396": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "397": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "398": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "399": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "401": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "402": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "403": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "404": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "405": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "407": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "408": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "409": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "410": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "412": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "413": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "414": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "416": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "417": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "418": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "419": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "420": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "421": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "422": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "423": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "425": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "426": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "427": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "428": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "430": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "431": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "432": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "433": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "434": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "435": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "436": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 32 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 87, + "start_line": 31 + } + }, + "437": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "439": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "440": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "441": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "442": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "443": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + } + }, + "445": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "446": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + } + }, + "448": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 44, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "450": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 47 + } + }, + "451": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "452": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "453": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "454": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "455": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "456": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "457": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "458": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "460": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 57, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 57 + } + }, + "461": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 64, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 64 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "462": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 64, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 64 + } + }, + "464": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + } + }, + "465": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + } + }, + "466": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + } + }, + "467": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + } + }, + "469": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 67, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 67 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "470": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 67, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 67 + } + }, + "472": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "473": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 72, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 71 + } + }, + "474": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 72, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 71 + } + }, + "475": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 72, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 71 + } + }, + "476": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 72, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 72 + } + }, + "478": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 73, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 73 + } + }, + "480": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 73, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 73 + } + }, + "482": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.renounce_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 74 + } + }, + "483": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + } + }, + "484": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + } + }, + "485": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + } + }, + "486": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + } + }, + "488": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "489": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "490": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "491": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 85 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "492": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "494": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "495": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "496": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 84, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 35, + "start_line": 86 + }, + "While expanding the reference 'previous_owner' in:" + ], + "start_col": 14, + "start_line": 84 + } + }, + "497": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "498": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "500": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "501": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "502": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "503": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "504": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "505": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "507": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "508": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "510": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "511": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "512": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "514": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "515": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "516": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "517": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "518": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "519": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "520": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 15 + } + }, + "521": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "523": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "524": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "525": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "527": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "528": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "529": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "530": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "531": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "532": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "533": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "534": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "535": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "537": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "538": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "539": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "540": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "542": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "543": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "544": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "545": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 20, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 20 + } + }, + "547": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 20, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "549": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + } + }, + "550": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + } + }, + "551": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + } + }, + "552": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 29, + "start_line": 21 + } + }, + "554": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + } + }, + "555": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + } + }, + "556": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + } + }, + "557": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + } + }, + "558": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 63, + "start_line": 25 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "559": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + } + }, + "561": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "562": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 30, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "563": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 44, + "start_line": 33 + } + }, + "565": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 33, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 33 + } + }, + "567": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 29 + } + }, + "568": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 29 + } + }, + "569": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 29, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 29 + } + }, + "570": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 30, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 43, + "start_line": 35 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "571": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 57, + "start_line": 35 + } + }, + "573": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "575": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "576": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "578": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "580": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "581": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 28, + "start_line": 8 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "582": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 8 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "584": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "585": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "586": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "588": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "589": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "590": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "592": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 51, + "start_line": 8 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "594": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "595": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "596": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "597": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 51, + "start_line": 8 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "598": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "599": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 23 + } + }, + "600": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "601": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "602": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 26, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "604": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 27, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 27 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 24 + } + }, + "605": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 27, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 27 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 24 + } + }, + "606": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 27, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "608": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 28 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "609": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 28 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 24 + } + }, + "610": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 28 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 24 + } + }, + "611": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 24, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 28 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 24 + } + }, + "612": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 41, + "start_line": 28 + } + }, + "614": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 30, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "616": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "617": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 23 + } + }, + "618": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "619": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 32 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "620": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 32 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "621": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "622": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 40 + } + }, + "624": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + } + }, + "625": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "626": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "627": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 41 + } + }, + "629": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 42 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "630": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 42 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "631": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 42 + } + }, + "633": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "634": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "635": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "636": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "637": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 43 + } + }, + "639": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 45, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 45 + } + }, + "641": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 43, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 43 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "642": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 47 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "643": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 47 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 9, + "start_line": 38 + } + }, + "644": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 47 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "645": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 38, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 47 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 21, + "start_line": 38 + } + }, + "646": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 47 + } + }, + "648": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + } + }, + "649": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + } + }, + "650": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 47 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "651": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 47 + } + }, + "652": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 47, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 47 + } + }, + "653": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 48 + } + }, + "654": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "656": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "658": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "659": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "660": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 25, + "start_line": 11 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "661": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 38, + "start_line": 11 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "662": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 38, + "start_line": 11 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "663": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 56, + "start_line": 11 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "664": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "665": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "667": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 31, + "start_line": 10 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 56, + "start_line": 11 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "669": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "670": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__calldata_ptr_copy' in:" + ], + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 27, + "start_line": 7 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 56, + "start_line": 11 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "672": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 13 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 72, + "start_line": 11 + } + }, + "673": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 14 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 56, + "start_line": 11 + } + }, + "674": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "676": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "677": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "678": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "680": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "681": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "682": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "684": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 11, + "start_line": 12 + }, + "While handling return value 'selector'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "686": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "687": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "688": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 11, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 11 + }, + "While handling calldata argument 'data'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "689": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 18, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_selector' in:" + ], + "start_col": 11, + "start_line": 12 + }, + "While handling return value 'selector'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "690": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "691": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "693": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "695": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "696": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "698": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "699": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "701": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "702": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 15, + "start_line": 28 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "703": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While handling calldata argument 'to'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "704": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "705": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "706": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "708": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 385, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 385 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "709": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "711": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "712": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "713": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "714": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "716": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "717": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "718": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "720": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "722": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "723": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "725": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "726": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "728": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "729": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 15, + "start_line": 32 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "730": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 28, + "start_line": 32 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "731": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "732": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "733": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "735": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 385, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 385 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "736": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "738": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "739": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "740": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "741": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "743": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "744": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "745": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "747": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "749": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "750": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "752": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "753": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "755": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "756": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 36 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "757": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 36 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "758": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 50, + "start_line": 36 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "759": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 50, + "start_line": 36 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "761": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 385, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 385 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "762": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "764": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "765": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "766": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "767": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "769": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "770": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "771": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "772": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "773": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "775": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "776": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "777": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "778": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "780": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "781": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "782": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "784": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "785": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "786": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "787": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "788": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "789": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "790": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "791": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "793": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "794": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "795": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "796": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "798": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "799": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "800": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "801": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "802": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "803": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "805": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "806": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "807": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "808": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "810": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "811": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "812": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "814": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "815": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "816": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "817": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "818": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "819": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "820": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "821": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "823": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "824": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "825": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "826": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "828": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "829": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "830": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "831": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "832": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "834": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "835": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "837": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "838": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "840": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "841": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "842": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "844": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "845": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "846": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "847": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "848": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "849": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "850": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "851": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "852": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "854": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "855": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "856": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "858": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "859": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "860": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "861": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "862": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "863": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "864": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "865": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "866": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "867": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "869": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "870": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "871": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "872": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "874": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "875": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "876": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "877": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "878": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "880": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "881": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "883": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "884": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "885": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "887": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "888": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "889": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "890": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "891": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "892": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "893": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "894": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "896": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "897": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "898": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "900": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "901": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "903": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "905": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "906": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "907": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "908": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "909": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "910": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "911": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 29 + } + }, + "912": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 29 + } + }, + "913": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 32 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "914": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + } + }, + "916": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 29 + } + }, + "917": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 33 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 32 + } + }, + "918": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 33 + } + }, + "919": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "921": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + } + }, + "923": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "924": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "926": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "927": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "928": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "929": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "930": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "932": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "933": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "935": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "936": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "938": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "939": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "940": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "942": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "943": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "944": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "945": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "946": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "947": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "948": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "949": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "950": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "952": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "953": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "954": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "956": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "957": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "958": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "959": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "960": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "961": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "962": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "963": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "964": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "965": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "967": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "968": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "969": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "970": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "972": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "973": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "974": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "975": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "976": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "978": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "979": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "981": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "982": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "984": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "985": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 12 + } + }, + "986": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "988": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 12 + } + }, + "989": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "990": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "991": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "992": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 17 + } + }, + "993": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 17 + } + }, + "994": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "995": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 42, + "start_line": 20 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 18 + } + }, + "996": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + } + }, + "998": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 17 + } + }, + "999": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1000": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "1002": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1003": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 32, + "start_line": 24 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1004": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 25 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1005": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "1006": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1007": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1008": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1009": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1010": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 42, + "start_line": 33 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "1011": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1013": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1014": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1015": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1016": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1018": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1019": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1020": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1021": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1022": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1024": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1025": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1027": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1028": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1030": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1031": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1032": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1034": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1035": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1036": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1037": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1038": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1039": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1040": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1041": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1042": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1044": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1045": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1046": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1048": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1049": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1050": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1051": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1052": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "1053": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "1054": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "1055": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "1056": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "1057": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "1059": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "1060": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "1061": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "1062": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "1064": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1065": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1066": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_uri", + "openzeppelin.token.erc721.library.ERC721_token_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "1067": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 76 + } + }, + "1068": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 76 + } + }, + "1069": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 76 + } + }, + "1070": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 77, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 79, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 79 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 9, + "start_line": 77 + } + }, + "1071": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + } + }, + "1073": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 80 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 21, + "start_line": 77 + } + }, + "1074": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 80 + } + }, + "1076": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 81 + } + }, + "1078": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 81 + } + }, + "1080": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 82, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 82 + } + }, + "1082": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 82, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "1084": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 83, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 83 + } + }, + "1085": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + } + }, + "1086": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + } + }, + "1087": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + } + }, + "1088": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + } + }, + "1090": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 91, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 91 + } + }, + "1091": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 94 + } + }, + "1092": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 94 + } + }, + "1093": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 94 + } + }, + "1094": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + } + }, + "1096": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "1097": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 104 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 101 + } + }, + "1098": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 104 + } + }, + "1100": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "1101": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "1102": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "1103": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 106 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 101 + } + }, + "1104": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + } + }, + "1106": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 106 + } + }, + "1107": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1108": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 113 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1109": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 113 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1110": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 113 + } + }, + "1112": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1113": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1114": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 113 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1115": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 115 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1116": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 115 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1117": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + } + }, + "1119": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 117 + } + }, + "1121": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1122": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1123": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1124": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 119 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 115 + } + }, + "1125": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + } + }, + "1126": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1127": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1128": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1129": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 126 + } + }, + "1131": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1132": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1133": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 126 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1134": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 128 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1135": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 128 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1136": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + } + }, + "1138": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 130, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 130 + } + }, + "1140": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1141": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1142": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1143": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 133 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1144": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 133 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1145": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + } + }, + "1147": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "1148": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1149": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1150": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1151": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 139 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 137 + } + }, + "1152": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 54, + "start_line": 139 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 137 + } + }, + "1153": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + } + }, + "1155": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 139 + } + }, + "1156": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 142 + } + }, + "1157": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 142 + } + }, + "1158": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 142 + } + }, + "1159": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 145 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "1160": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 145 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "1161": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 145 + } + }, + "1163": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 147, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 147 + } + }, + "1165": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1166": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1167": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1168": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 151 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "1169": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 151 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 143 + } + }, + "1170": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 151 + } + }, + "1172": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 151 + } + }, + "1173": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 162 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + } + }, + "1174": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 162 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1175": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 162 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1176": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 162 + } + }, + "1178": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + } + }, + "1179": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 166 + } + }, + "1181": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 168, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 168 + } + }, + "1183": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 166 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1184": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + } + }, + "1185": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 162 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1186": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 172 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1187": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 172 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1188": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + } + }, + "1190": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 174 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1191": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 174 + } + }, + "1193": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 179, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 179 + } + }, + "1194": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 179, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 179 + } + }, + "1196": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1197": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1198": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1199": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 180 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1200": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 180 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1201": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 180 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1202": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + } + }, + "1204": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1205": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1206": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1207": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + } + }, + "1208": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1209": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1210": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1211": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 64, + "start_line": 183 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 172 + } + }, + "1212": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 71, + "start_line": 183 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "1213": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + } + }, + "1215": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 17, + "start_line": 185 + } + }, + "1217": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1218": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1219": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1220": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 187 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1221": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 187 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1222": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 187 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1223": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + } + }, + "1225": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1226": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1227": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1228": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + } + }, + "1229": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + } + }, + "1230": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 196 + } + }, + "1232": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 198 + } + }, + "1233": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 198 + } + }, + "1235": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 207, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 207 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1236": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 207, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 207 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1237": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 207, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 207 + } + }, + "1239": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 212, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "1241": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 212, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "1242": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 212, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 212 + } + }, + "1244": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 212, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 212 + } + }, + "1245": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 196 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1246": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + } + }, + "1247": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + } + }, + "1248": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 215 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1249": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 64, + "start_line": 215 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1250": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 80, + "start_line": 215 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 25, + "start_line": 193 + } + }, + "1251": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + } + }, + "1253": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "1254": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "1255": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 216 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1256": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 216 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1257": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 216 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 25, + "start_line": 193 + } + }, + "1258": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + } + }, + "1260": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 216 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1261": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "1262": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 216 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1263": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + } + }, + "1264": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 223, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 223 + } + }, + "1266": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 225 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 220 + } + }, + "1267": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 225 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1268": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 225 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1269": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 225 + } + }, + "1271": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 220 + } + }, + "1272": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 227 + } + }, + "1274": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 227 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 227 + } + }, + "1275": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 220 + } + }, + "1276": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 227 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1277": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1278": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 228 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 227 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 227 + } + }, + "1279": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 228 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1280": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 228 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1281": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + } + }, + "1283": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 231, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 231 + } + }, + "1284": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 231, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 231 + } + }, + "1286": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1287": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1288": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1289": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 19, + "start_line": 239 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 221 + } + }, + "1290": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 239 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 221 + } + }, + "1291": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 239 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1292": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 239 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1293": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + } + }, + "1295": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 220 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + } + }, + "1296": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 220 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + } + }, + "1297": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 220, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 220 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + } + }, + "1298": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + } + }, + "1299": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 246, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 246 + } + }, + "1301": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 243 + } + }, + "1302": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 248, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 248 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1303": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 248, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 248 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1304": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 248 + } + }, + "1306": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 250 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 243 + } + }, + "1307": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 250 + } + }, + "1309": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 250 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 250 + } + }, + "1310": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 243 + } + }, + "1311": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 250 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1312": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 248 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1313": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 251 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 250 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 250 + } + }, + "1314": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 251 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1315": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 251 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1316": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + } + }, + "1318": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 254, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 254 + } + }, + "1319": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 254, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 254 + } + }, + "1321": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1322": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1323": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1324": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 262 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 244 + } + }, + "1325": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 262 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 244 + } + }, + "1326": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 262 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1327": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 262 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1328": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 45, + "start_line": 262 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 244 + } + }, + "1329": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 244, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 262 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 244 + } + }, + "1330": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + } + }, + "1332": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 243 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + } + }, + "1333": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 243 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + } + }, + "1334": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 243, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 243 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + } + }, + "1335": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + } + }, + "1336": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + } + }, + "1337": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 273 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1338": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 273 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1339": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 273 + } + }, + "1341": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 274 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + } + }, + "1342": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 274 + } + }, + "1344": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 274 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1345": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + } + }, + "1346": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 273 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1347": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 275 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1348": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 275 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1349": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + } + }, + "1351": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 278, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 278 + } + }, + "1352": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1353": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1354": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1355": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "1356": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 286, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 286 + } + }, + "1358": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1359": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1360": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1361": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 288 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1362": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 288 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1363": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + } + }, + "1365": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 290, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 290 + } + }, + "1367": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1368": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1369": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1370": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 293 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1371": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 293 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1372": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + } + }, + "1374": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 293 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 293 + } + }, + "1375": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 294, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 294 + } + }, + "1376": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 294, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 294 + } + }, + "1378": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1379": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1380": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1381": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 295, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 295 + } + }, + "1383": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + } + }, + "1384": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1385": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1386": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1387": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 298 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1388": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 298 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1389": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + } + }, + "1391": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 299 + } + }, + "1392": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 299 + } + }, + "1394": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1395": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1396": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1397": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 300 + } + }, + "1399": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + } + }, + "1400": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1401": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1402": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1403": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 303 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 293 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 293 + } + }, + "1404": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 284, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 303 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 284 + } + }, + "1405": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + } + }, + "1407": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 304, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 304 + } + }, + "1409": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 304, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 304 + } + }, + "1411": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1412": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1413": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1414": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 305, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 305 + } + }, + "1416": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + } + }, + "1417": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1418": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1419": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1420": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 308, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 308 + } + }, + "1422": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + } + }, + "1423": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1424": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1425": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1426": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 312, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 43, + "start_line": 314 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 312 + } + }, + "1427": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 312, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 43, + "start_line": 314 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 312 + } + }, + "1428": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + } + }, + "1430": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 315, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 315 + } + }, + "1432": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1433": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1434": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1435": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 316, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 316 + } + }, + "1437": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + } + }, + "1438": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1439": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1440": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1441": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 319, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 319 + } + }, + "1443": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + } + }, + "1444": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1445": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1446": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1447": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 325 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1448": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 325 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1449": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 325 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 323 + } + }, + "1450": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + } + }, + "1452": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 326 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1453": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 326 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1454": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 326 + } + }, + "1456": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1457": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1458": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 327 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 326 + } + }, + "1459": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 327 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 323 + } + }, + "1460": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 327 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1461": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 327 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1462": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + } + }, + "1464": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 327 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1465": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1466": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 327 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1467": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + } + }, + "1468": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + } + }, + "1469": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + } + }, + "1470": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + } + }, + "1471": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 335 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1472": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 335 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1473": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + } + }, + "1475": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 337, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 337 + } + }, + "1476": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 341, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 341 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1477": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 341, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 341 + } + }, + "1479": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1480": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1481": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1482": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 18, + "start_line": 345 + } + }, + "1484": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 345 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1485": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 345 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1486": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + } + }, + "1488": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 348 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1489": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 348 + } + }, + "1491": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 76, + "start_line": 349 + } + }, + "1493": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 79, + "start_line": 349 + } + }, + "1495": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 349 + } + }, + "1497": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 349 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + } + }, + "1498": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 349 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + } + }, + "1499": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 349 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + } + }, + "1500": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 350 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1501": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 350 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 349 + } + }, + "1502": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 349, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 350 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 349 + } + }, + "1503": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + } + }, + "1505": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 353, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 51, + "start_line": 353 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1506": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 353, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 353 + } + }, + "1508": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 76, + "start_line": 354 + } + }, + "1510": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 79, + "start_line": 354 + } + }, + "1512": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 354 + } + }, + "1514": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 354 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1515": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 354 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 23 + } + }, + "1516": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 354 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 23 + } + }, + "1517": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 355 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1518": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 355 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 354 + } + }, + "1519": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 354, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 355 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 354 + } + }, + "1520": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + } + }, + "1522": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 358 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1523": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 358 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1524": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 358 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1525": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 358 + } + }, + "1527": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1528": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1529": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 359 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1530": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 359 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1531": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 359 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1532": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 359 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1533": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + } + }, + "1535": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 359 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1536": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1537": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 359 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1538": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + } + }, + "1539": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + } + }, + "1540": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + } + }, + "1541": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + } + }, + "1542": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 19, + "start_line": 366 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 364 + } + }, + "1543": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 366 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 364 + } + }, + "1544": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 366 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1545": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 366 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1546": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + } + }, + "1548": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 368 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 364 + } + }, + "1549": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 368 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 364 + } + }, + "1550": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 60, + "start_line": 368 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1551": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 60, + "start_line": 368 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1552": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 70, + "start_line": 368 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 364 + } + }, + "1553": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 364, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 80, + "start_line": 368 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 364 + } + }, + "1554": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 368 + } + }, + "1556": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 370, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 370 + } + }, + "1558": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + } + }, + "1559": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1560": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + } + }, + "1561": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + } + }, + "1562": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 379 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 375 + } + }, + "1563": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 379, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 379 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1564": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 379, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 379 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1565": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 379 + } + }, + "1567": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 382, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 382 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1568": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 382, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 382 + } + }, + "1570": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 375 + } + }, + "1571": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 375 + } + }, + "1572": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 379 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1573": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 386 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1574": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 386 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1575": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + } + }, + "1577": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 388, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 388 + } + }, + "1579": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1580": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1581": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1582": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 391, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 391 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1583": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + } + }, + "1585": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 71, + "start_line": 392 + } + }, + "1587": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 74, + "start_line": 392 + } + }, + "1589": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 392 + } + }, + "1591": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 392 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1592": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 392 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 23 + } + }, + "1593": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 23, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 392 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 23 + } + }, + "1594": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 393 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1595": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 393 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 392 + } + }, + "1596": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 392, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 393 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 392 + } + }, + "1597": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + } + }, + "1599": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 394 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1600": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 394 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1601": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 394 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1602": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 394 + } + }, + "1604": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1605": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1606": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 395 + } + }, + "1608": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 395 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1609": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 395 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1610": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 395 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1611": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + } + }, + "1613": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 375 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1614": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 375 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1615": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 375, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 375 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1616": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + } + }, + "1617": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 415, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 415 + } + }, + "1619": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 417 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 414 + } + }, + "1620": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 417, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 417 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1621": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 417, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 417 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1622": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 417 + } + }, + "1624": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 414 + } + }, + "1625": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 414 + } + }, + "1626": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 417 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1627": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 419 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1628": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 419 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1629": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + } + }, + "1631": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1632": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1633": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1634": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 18, + "start_line": 422 + } + }, + "1636": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 422 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1637": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 422 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1638": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + } + }, + "1640": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 425, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 425 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1641": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 425, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 425 + } + }, + "1643": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 74, + "start_line": 426 + } + }, + "1645": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 77, + "start_line": 426 + } + }, + "1647": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 426 + } + }, + "1649": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 426 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + } + }, + "1650": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 426 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + } + }, + "1651": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 426 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + } + }, + "1652": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 427 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1653": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 427 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 426 + } + }, + "1654": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 426, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 427 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 426 + } + }, + "1655": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + } + }, + "1657": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 430 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1658": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 430 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1659": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 430 + } + }, + "1661": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 430 + } + }, + "1663": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1664": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1665": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 431 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1666": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 431 + } + }, + "1668": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 431 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1669": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 431 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1670": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + } + }, + "1672": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 414 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1673": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 414 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 431 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1674": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 414, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 414 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 431 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1675": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + } + }, + "1676": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 438, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 438 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 435 + } + }, + "1677": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 438, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 438 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1678": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 438, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 438 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1679": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 438, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 438 + } + }, + "1681": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 439 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 435 + } + }, + "1682": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 439 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 435 + } + }, + "1683": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 438, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 439 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 438 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1684": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 439 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1685": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 439 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1686": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 439 + } + }, + "1688": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 441, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 441 + } + }, + "1690": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 439 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1691": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 439 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1692": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 439, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 439 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1693": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 444 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1694": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 444 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 436 + } + }, + "1695": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 436, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 444 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 28, + "start_line": 436 + } + }, + "1696": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 444 + } + }, + "1698": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._set_token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 445, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 445 + } + }, + "1699": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + } + }, + "1700": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 456 + } + }, + "1702": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 456 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "1703": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + } + }, + "1704": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 52, + "start_line": 457 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1705": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 457 + } + }, + "1707": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + } + }, + "1709": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 458, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 458 + } + }, + "1711": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 458, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 458 + } + }, + "1713": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1714": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1715": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 460 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1716": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 456, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 17, + "start_line": 460 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 10, + "start_line": 456 + } + }, + "1717": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 460 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 454 + } + }, + "1718": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 460 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 454 + } + }, + "1719": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 460 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 454 + } + }, + "1720": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 460 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 47, + "start_line": 454 + } + }, + "1721": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 460, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 52, + "start_line": 460 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 63, + "start_line": 454 + } + }, + "1722": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + } + }, + "1724": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 464, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 464 + } + }, + "1726": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 459 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1727": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1728": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 459 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + } + }, + "1729": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 466, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 466 + } + }, + "1731": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + } + }, + "1732": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1733": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1734": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 50, + "start_line": 469 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1735": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 54, + "start_line": 469 + } + }, + "1737": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + } + }, + "1739": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 469 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1740": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1741": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 469 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1742": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 469, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 470, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 470 + }, + "While expanding the reference 'is_account' in:" + ], + "start_col": 10, + "start_line": 469 + } + }, + "1743": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + } + }, + "1744": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1745": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1746": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1748": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "1749": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "1750": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "1751": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "1753": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "1754": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "1755": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "1757": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1758": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "1760": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "1762": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1763": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1764": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1765": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "1766": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "1767": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "1768": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "1769": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "1770": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "1772": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "1773": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "1774": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "1775": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "1777": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 30 + } + }, + "1779": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 55, + "start_line": 30 + } + }, + "1780": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "1782": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1783": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1784": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "1785": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1786": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1788": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1789": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1791": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1792": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1794": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1795": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1796": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1798": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1799": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1800": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1801": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1802": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1803": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1804": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 15 + } + }, + "1805": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 15 + } + }, + "1806": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1808": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1809": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1810": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1812": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1813": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1815": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1817": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1818": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1819": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1820": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1821": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1822": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1823": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1824": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1825": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1826": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1827": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1829": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1830": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1831": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1832": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1834": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "1836": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "1837": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1839": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1840": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1841": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "1842": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1843": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1845": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1846": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1848": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1849": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1851": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1852": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1853": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1855": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1856": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1857": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1858": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1859": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1860": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1861": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1862": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1863": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1865": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1866": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1867": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1869": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1870": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1872": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1874": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1875": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1876": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1877": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1878": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1879": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1880": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1881": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1882": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1883": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1884": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1886": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1887": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1888": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1889": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1891": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "1893": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "1894": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1896": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1897": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1898": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "1899": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1900": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "1902": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "1903": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1905": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "1906": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "1908": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 13 + } + }, + "1909": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "1911": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1912": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 44, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "1913": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + } + }, + "1915": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 13 + } + }, + "1916": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 14 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1917": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 15 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "1918": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + } + }, + "1919": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 18 + } + }, + "1920": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 18 + } + }, + "1921": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 19 + } + }, + "1922": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 21 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 19 + } + }, + "1923": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 21 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 19 + } + }, + "1924": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + } + }, + "1926": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 18 + } + }, + "1927": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 22 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "1928": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + } + }, + "1930": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 22 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1931": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 23 + } + }, + "1933": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + } + }, + "1935": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 23 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1936": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 32, + "start_line": 26 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 21 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1937": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 27 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 21 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1938": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 22 + } + }, + "1939": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 29 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1940": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "1941": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 33 + } + }, + "1942": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 33 + } + }, + "1943": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 36 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 34 + } + }, + "1944": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 36 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 34 + } + }, + "1945": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 36 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 34 + } + }, + "1946": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + } + }, + "1948": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 33 + } + }, + "1949": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 36 + } + }, + "1950": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "1951": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "1953": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 38 + } + }, + "1955": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 38 + } + }, + "1956": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "1958": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1959": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1960": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + } + }, + "1961": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1962": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1964": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1965": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1967": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1968": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1970": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1971": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1972": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1974": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1975": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1976": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1977": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1978": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1979": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1980": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1981": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1982": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1984": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1985": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1986": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1988": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1989": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1991": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1993": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "1994": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1995": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1996": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1997": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1998": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1999": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "2000": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "2001": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "2002": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "2003": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "2005": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "2006": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "2007": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "2008": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "2010": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "2012": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "2013": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "2015": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2016": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2017": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "2018": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 77, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 77 + } + }, + "2020": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 78 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "2021": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 78, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 78 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2022": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 78, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 78 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2023": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 78 + } + }, + "2025": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "2026": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "2027": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 78 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "2028": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 80 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 75 + } + }, + "2029": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + } + }, + "2031": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "2032": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 81 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2033": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 81 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2034": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 81 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 80 + } + }, + "2035": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 81 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 80 + } + }, + "2036": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 81 + } + }, + "2038": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 83, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 13, + "start_line": 83 + } + }, + "2040": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "2041": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "2042": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 81 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "2043": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 75 + } + }, + "2044": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 58, + "start_line": 86 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2045": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 58, + "start_line": 86 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2046": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + } + }, + "2048": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 86, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "2049": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 92 + } + }, + "2050": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 92 + } + }, + "2051": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 92 + } + }, + "2052": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 95 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 93 + } + }, + "2053": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 95 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2054": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 95 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2055": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "2057": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 96, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 96 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 93 + } + }, + "2058": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 96, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 96 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2059": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 96, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 96 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2060": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 96, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 96 + } + }, + "2062": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 97 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 93 + } + }, + "2063": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 37, + "start_line": 97 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 93 + } + }, + "2064": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 97 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2065": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 97 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2066": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 97, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "2068": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 98, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 98 + } + }, + "2069": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 101 + } + }, + "2070": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 101 + } + }, + "2071": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 101 + } + }, + "2072": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 104 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 102 + } + }, + "2073": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 104 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2074": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 104 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2075": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + } + }, + "2077": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 105, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 105 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 102 + } + }, + "2078": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 105, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 105 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2079": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 105, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 105 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2080": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 105, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 105 + } + }, + "2082": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 102 + } + }, + "2083": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 42, + "start_line": 106 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 102 + } + }, + "2084": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2085": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2086": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 106 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 102 + } + }, + "2087": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 102, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 66, + "start_line": 106 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 102 + } + }, + "2088": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 106, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 106 + } + }, + "2090": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 107 + } + }, + "2091": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + } + }, + "2092": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + } + }, + "2093": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + } + }, + "2094": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 117 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2095": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 117 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2096": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + } + }, + "2098": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 118, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 118 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 115 + } + }, + "2099": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 118, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 118 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2100": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 118, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 118 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2101": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 118, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 118 + } + }, + "2103": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 119 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 115 + } + }, + "2104": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 26, + "start_line": 119 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2105": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 26, + "start_line": 119 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2106": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 119, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 119 + } + }, + "2108": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 120, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 120 + } + }, + "2109": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 123 + } + }, + "2110": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 123 + } + }, + "2111": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 123 + } + }, + "2112": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 124 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2113": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 124 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2114": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + } + }, + "2116": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "2117": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "2118": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "2119": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 125 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 14, + "start_line": 124 + } + }, + "2120": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 125 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2121": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 125 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2122": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + } + }, + "2124": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2125": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2126": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 126, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 126 + } + }, + "2128": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 127, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 127 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2129": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 127, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 127 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2130": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 127, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 127 + } + }, + "2132": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 128, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 128 + } + }, + "2133": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + } + }, + "2134": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + } + }, + "2135": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + } + }, + "2136": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + } + }, + "2138": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 140, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2139": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 140, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2140": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 140, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 140 + } + }, + "2142": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 141 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2143": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 141 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2144": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 55, + "start_line": 141 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2145": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 55, + "start_line": 141 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2146": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 141, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "2148": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 143 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2149": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 143 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2150": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 65, + "start_line": 143 + } + }, + "2152": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 68, + "start_line": 143 + } + }, + "2154": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 143, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 143 + } + }, + "2156": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 144 + } + }, + "2158": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2159": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2160": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2161": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + } + }, + "2162": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 151, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 151 + } + }, + "2164": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + } + }, + "2165": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + } + }, + "2166": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + } + }, + "2167": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + } + }, + "2169": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 74, + "start_line": 153 + } + }, + "2171": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 77, + "start_line": 153 + } + }, + "2173": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 153 + } + }, + "2175": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 153 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + } + }, + "2176": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 153 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + } + }, + "2177": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 153 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + } + }, + "2178": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 73, + "start_line": 154 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2179": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 73, + "start_line": 154 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2180": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + } + }, + "2182": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2183": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2184": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2185": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2186": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2187": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 155 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2188": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 155 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2189": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + } + }, + "2191": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2192": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2193": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2194": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2195": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2196": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 157 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2197": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 157 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2198": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 65, + "start_line": 157 + } + }, + "2200": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 68, + "start_line": 157 + } + }, + "2202": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + } + }, + "2204": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 158 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2205": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 158 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2206": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 63, + "start_line": 158 + } + }, + "2208": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 66, + "start_line": 158 + } + }, + "2210": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 158 + } + }, + "2212": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 159 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2213": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 159 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2214": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + } + }, + "2216": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2217": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2218": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 161 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2219": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 161 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2220": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 161 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2221": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 161 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2222": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 161 + } + }, + "2224": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 162, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 162 + } + }, + "2226": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2227": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2228": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 161 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "2229": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 163 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2230": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 163 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2231": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 64, + "start_line": 163 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2232": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 64, + "start_line": 163 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2233": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + } + }, + "2235": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 164 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2236": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 164 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2237": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 164 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2238": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 164 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2239": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 164 + } + }, + "2241": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2242": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2243": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2244": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + } + }, + "2245": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2246": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2247": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 161 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "2248": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "2249": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 171 + } + }, + "2250": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + } + }, + "2251": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 171 + } + }, + "2252": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 173 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 3, + "start_line": 172 + } + }, + "2253": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + } + }, + "2255": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "2256": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "2257": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "2258": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 174 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 3, + "start_line": 172 + } + }, + "2259": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 174 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2260": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 174 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2261": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 174 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2262": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 174 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2263": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + } + }, + "2265": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 175 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2266": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 175 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2267": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 175 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2268": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 175 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2269": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 175 + } + }, + "2271": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2272": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 171 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2273": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 171, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 171 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2274": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + } + }, + "2275": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 182 + } + }, + "2277": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + } + }, + "2278": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + } + }, + "2279": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + } + }, + "2280": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 183 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2281": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + } + }, + "2283": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 185 + } + }, + "2285": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 185 + } + }, + "2287": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 185 + } + }, + "2289": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2290": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2291": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 185 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 37 + } + }, + "2292": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 185 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 37 + } + }, + "2293": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 185 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 37 + } + }, + "2294": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 186 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2295": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 186 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2296": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + } + }, + "2298": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2299": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2300": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2301": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2302": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 189 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2303": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 189 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2304": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 189 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2305": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 189 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2306": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 189 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2307": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 189 + } + }, + "2309": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 190, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 190 + } + }, + "2311": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 190, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 190 + } + }, + "2313": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2314": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2315": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 189 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "2316": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 191 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2317": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 191 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2318": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 191 + } + }, + "2320": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 72, + "start_line": 191 + } + }, + "2322": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + } + }, + "2324": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 192 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2325": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 52, + "start_line": 192 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2326": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 52, + "start_line": 192 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2327": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 192 + } + }, + "2329": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 81, + "start_line": 192 + } + }, + "2331": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 192 + } + }, + "2333": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2334": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2335": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2336": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + } + }, + "2337": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2338": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2339": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 299, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 189 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 299 + } + }, + "2340": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 71, + "start_line": 197 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2341": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 197 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2342": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 197 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2343": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + } + }, + "2345": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "2346": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "2347": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "2348": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 198 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2349": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 198 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2350": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 198 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2351": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 61, + "start_line": 198 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2352": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 61, + "start_line": 198 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2353": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "2355": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 199 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2356": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 199 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2357": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 62, + "start_line": 199 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2358": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 62, + "start_line": 199 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2359": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "2361": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2362": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2363": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2364": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "2365": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2367": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "2369": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "2370": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 23, + "start_line": 31 + }, + "While handling calldata argument 'sender'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2371": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 37, + "start_line": 31 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2372": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "2373": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "2374": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "2376": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2377": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "2378": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "2380": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "2381": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "2382": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "2384": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2386": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2387": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "2388": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "2389": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "2390": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2391": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2392": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2393": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2395": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2396": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2397": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2398": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "2400": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2401": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "2402": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "2404": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2405": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "2407": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "2409": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 31, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2410": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2411": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2412": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "2413": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "2414": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "2415": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "2416": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "2417": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "2419": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "2420": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "2421": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "2422": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "2424": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 31, + "start_line": 30 + } + }, + "2426": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 55, + "start_line": 30 + } + }, + "2427": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "2429": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2430": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2431": { + "accessible_scopes": [ + "__main__", + "__main__.last_token_id", + "__main__.last_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "2432": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2433": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2435": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "2436": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "2438": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "2439": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "2441": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2442": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "2443": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "2445": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "2446": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "2447": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "2448": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "2449": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "2450": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "2451": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "2452": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "2453": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "2455": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "2456": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "2457": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "2459": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2460": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "2462": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "2464": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2465": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + } + }, + "2467": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "2469": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 31, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2470": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 32, + "start_line": 24 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2471": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 35, + "start_line": 25 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2472": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "2473": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 45, + "start_line": 27 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "2474": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp2' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "2475": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "2476": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 32 + } + }, + "2477": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + } + }, + "2478": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 35, + "start_line": 35 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "2479": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 35, + "start_line": 35 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "2480": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + } + }, + "2482": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + } + }, + "2483": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 31, + "start_line": 36 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 35 + } + }, + "2484": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 55, + "start_line": 36 + } + }, + "2485": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "2487": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + } + }, + "2489": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "2490": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "2492": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 31, + "start_line": 38 + } + }, + "2494": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 55, + "start_line": 38 + } + }, + "2495": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "2497": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2498": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2499": { + "accessible_scopes": [ + "__main__", + "__main__.animals", + "__main__.animals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + } + }, + "2500": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2501": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2503": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "2504": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "2506": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2507": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "2508": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "2510": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "2511": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "2512": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "2513": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "2514": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "2515": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "2516": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "2517": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "2519": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "2520": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "2521": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "2523": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2524": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2525": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2526": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "2527": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "2528": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "2529": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "2530": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "2531": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "2533": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "2534": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "2535": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "2536": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "2538": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2539": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2540": { + "accessible_scopes": [ + "__main__", + "__main__._is_breeder", + "__main__._is_breeder.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "2541": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2542": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2543": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2545": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2546": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2547": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2548": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "2550": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2551": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "2552": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "2554": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 348, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 348 + } + }, + "2555": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2556": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2557": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "2558": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "2559": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "2560": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "2561": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "2563": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 366 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "2564": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "2565": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "2566": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "2568": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2569": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2570": { + "accessible_scopes": [ + "__main__", + "__main__._dummy_token_address", + "__main__._dummy_token_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "2571": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 76 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 53 + } + }, + "2572": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 76 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 53 + } + }, + "2573": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 76, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 76 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 53 + } + }, + "2574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 24, + "start_line": 56 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 5, + "start_line": 54 + } + }, + "2575": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 56 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 17, + "start_line": 54 + } + }, + "2576": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 56, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 56 + } + }, + "2578": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 57, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 57 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 31, + "start_line": 54 + } + }, + "2579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "2581": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 58 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 321 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "2582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 58 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 55, + "start_line": 321 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "2583": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 58 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 321 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "2584": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "2586": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 59, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 58 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 55, + "start_line": 321 + } + }, + "2587": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 59, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 58 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 321 + } + }, + "2588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 58, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 59, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 58 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 321 + } + }, + "2589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 59, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 59 + }, + "While expanding the reference 'dummy_token_address' in:" + ], + "start_col": 44, + "start_line": 54 + } + }, + "2590": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 59, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 59 + } + }, + "2592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "2593": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9407d7733f2ab6f6153911669f8fdcbfc2c3c86fba30370fabb2b65a225aa092.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 44, + "start_line": 54 + }, + "While handling calldata argument 'dummy_token_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2596": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2597": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2599": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 5, + "start_line": 54 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "2600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 150, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 17, + "start_line": 54 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "2601": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 179, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 31, + "start_line": 54 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "2602": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/9407d7733f2ab6f6153911669f8fdcbfc2c3c86fba30370fabb2b65a225aa092.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 54, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 255, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 221, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_dummy_token_address' in:" + ], + "start_col": 44, + "start_line": 54 + }, + "While handling calldata argument 'dummy_token_address'" + ], + "start_col": 42, + "start_line": 1 + } + }, + "2603": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + } + }, + "2605": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "2607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2608": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2609": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "2612": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/1817c0bc71529aba7cb78851064caf4f944ad6689d78c553c607b27a6ed0e5d5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "2613": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 53, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 53 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2614": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 68 + } + }, + "2615": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 68 + } + }, + "2616": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 68 + } + }, + "2617": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 69, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 38, + "start_line": 71 + }, + "While expanding the reference 'interfaceId' in:" + ], + "start_col": 5, + "start_line": 69 + } + }, + "2618": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 71 + } + }, + "2620": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 71, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 71 + } + }, + "2621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2623": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 70, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 70 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 70, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 70 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2626": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "2627": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2628": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2629": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 69, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 69 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2632": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2634": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2635": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2636": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 69, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 155, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 129, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_interfaceId' in:" + ], + "start_col": 5, + "start_line": 69 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "2637": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + } + }, + "2639": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2640": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2642": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2644": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2647": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 68, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 76, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 75 + } + }, + "2649": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 76, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 75 + } + }, + "2650": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 76, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 75 + } + }, + "2651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 76, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 76 + } + }, + "2653": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 76, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "2654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2656": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 82, + "start_line": 75 + }, + "While handling return value 'name'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2657": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 82, + "start_line": 75 + }, + "While handling return value 'name'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2659": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 50, + "start_line": 1 + } + }, + "2660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2661": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2662": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2663": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2664": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2665": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2666": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2667": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + } + }, + "2669": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2670": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2673": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2674": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2675": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2677": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 75, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2678": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 81, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 94 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 80 + } + }, + "2679": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 81, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 94 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 80 + } + }, + "2680": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 94, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 81, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 94 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 80 + } + }, + "2681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 81, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 81 + } + }, + "2683": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 81, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "2684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2686": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 84, + "start_line": 80 + }, + "While handling return value 'symbol'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2687": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 84, + "start_line": 80 + }, + "While handling return value 'symbol'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2689": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "2690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2692": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2695": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2696": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + } + }, + "2699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 80, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2700": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2702": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2703": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2704": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2707": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 80, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 88 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 85 + } + }, + "2709": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 88 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 85 + } + }, + "2710": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 88 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 85 + } + }, + "2711": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 88 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 81, + "start_line": 85 + } + }, + "2712": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 88 + } + }, + "2714": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 88, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "2715": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2717": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 86, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 86 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "2718": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 86, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 86 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "2719": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 86, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 86 + }, + "While handling return value 'balance'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "2721": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 92, + "start_line": 1 + } + }, + "2722": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2723": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2724": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2725": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 81, + "start_line": 85 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2727": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2728": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2729": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2730": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2731": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 81, + "start_line": 85 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "2732": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + } + }, + "2734": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2735": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2737": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2738": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2739": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2740": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2741": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2742": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 85 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2743": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 92 + } + }, + "2744": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 92 + } + }, + "2745": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 92 + } + }, + "2746": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 95 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 79, + "start_line": 92 + } + }, + "2747": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 95 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 79, + "start_line": 92 + } + }, + "2748": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 95 + } + }, + "2750": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 95 + } + }, + "2751": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2753": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 93, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 93 + }, + "While handling return value 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2754": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 93, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 93 + }, + "While handling return value 'owner'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2756": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "2757": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2758": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2759": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2760": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 79, + "start_line": 92 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "2762": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2763": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2764": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2765": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2766": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 79, + "start_line": 92 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2767": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 79, + "start_line": 92 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2768": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + } + }, + "2770": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 81, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2771": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2773": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2774": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2775": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2776": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2777": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2778": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 92, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 92 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2779": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 99 + } + }, + "2780": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 99 + } + }, + "2781": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 99 + } + }, + "2782": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 100, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 102 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 100 + } + }, + "2783": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 100, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 102 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 100 + } + }, + "2784": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 102 + } + }, + "2786": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 102, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 102 + } + }, + "2787": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2789": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 101, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 101 + }, + "While handling return value 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2790": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 101, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 101 + }, + "While handling return value 'approved'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2792": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "2793": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2794": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2795": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2796": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 100, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 100 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "2798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2800": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2802": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 100, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 100 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2803": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 100, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 100 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2804": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + } + }, + "2806": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2807": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2809": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2810": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2811": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2812": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2813": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2814": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 99, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 99 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2815": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 106 + } + }, + "2816": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 106 + } + }, + "2817": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 106 + } + }, + "2818": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 107, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 57, + "start_line": 109 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 107 + } + }, + "2819": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 64, + "start_line": 109 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 18, + "start_line": 107 + } + }, + "2820": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 109, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 109 + } + }, + "2822": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 110, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 110 + } + }, + "2823": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2825": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 108, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 108 + }, + "While handling return value 'isApproved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2826": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 108, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 108 + }, + "While handling return value 'isApproved'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2828": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 68, + "start_line": 1 + } + }, + "2829": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2830": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2832": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 107 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2836": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 107, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 107 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "2839": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 107, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 154, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_operator' in:" + ], + "start_col": 18, + "start_line": 107 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "2840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + } + }, + "2842": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 90, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2845": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2848": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2849": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 106, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 106 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2851": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 142 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 114 + } + }, + "2852": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 142 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 114 + } + }, + "2853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 142, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 142 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 114 + } + }, + "2854": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 115, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 45, + "start_line": 117 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 115 + } + }, + "2855": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 115, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 45, + "start_line": 117 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 115 + } + }, + "2856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 117, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 117 + } + }, + "2858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 118, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 118 + } + }, + "2859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4b9ee40c733fa52383f1aec7d0c0ae5371ee9ab774ef2bef5bde8db3429a1a03.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 116, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 116 + }, + "While handling return value 'tokenURI'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4b9ee40c733fa52383f1aec7d0c0ae5371ee9ab774ef2bef5bde8db3429a1a03.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 116, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 116 + }, + "While handling return value 'tokenURI'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2864": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 58, + "start_line": 1 + } + }, + "2865": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2866": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2867": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/b2aa0ebca7abf801e74d97ef31f50349777e6ca1d42ba0c6f8919bbed6db6d3c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2868": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 115, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 115 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "2870": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2871": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2872": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2873": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2874": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 115, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 115 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2875": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 115, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 115 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + } + }, + "2878": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2881": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2882": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2883": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2884": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2885": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2886": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 114, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 114 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2887": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 123, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 12, + "start_line": 122 + } + }, + "2888": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 123, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 122 + } + }, + "2889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 123, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 60, + "start_line": 122 + } + }, + "2890": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 123, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 12, + "start_line": 123 + } + }, + "2892": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 123, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 123 + } + }, + "2893": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2895": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 83, + "start_line": 122 + }, + "While handling return value 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2896": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 83, + "start_line": 122 + }, + "While handling return value 'owner'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2898": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 52, + "start_line": 1 + } + }, + "2899": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2900": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2901": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2902": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2903": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 12, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2905": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 60, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + } + }, + "2908": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 79, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2909": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2911": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2912": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2914": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2915": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 122, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 122 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2917": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 131, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 81, + "start_line": 127 + } + }, + "2918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 131, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 23, + "start_line": 131 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "2919": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 131, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 23, + "start_line": 131 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "2920": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 131, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 131 + } + }, + "2922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 18, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 127 + } + }, + "2923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 18, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 53, + "start_line": 127 + } + }, + "2924": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 131, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 18, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "2925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 134 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "2926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 134 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "2927": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 134, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 18, + "start_line": 134 + } + }, + "2929": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 137, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "2930": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f774ab9b1a4c3a5620a8b6c5fe25685a8d75855d4c0081dbe84e3b7d99116866.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 129, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 129 + }, + "While handling return value 'sex'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/45d79d0fce48a6083c5d2761954a983d1a07a59a39d5b135e591a33d62f282ce.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 129, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 18, + "start_line": 129 + }, + "While handling return value 'legs'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/29ea373a95a0a4800e714a3c1c36faa3d6e3abfec6aa2915361da0b2839ec517.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 129, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 30, + "start_line": 129 + }, + "While handling return value 'wings'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2935": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/29ea373a95a0a4800e714a3c1c36faa3d6e3abfec6aa2915361da0b2839ec517.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 129, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 30, + "start_line": 129 + }, + "While handling return value 'wings'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2937": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 111, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 96, + "start_line": 1 + } + }, + "2938": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2939": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_animal_characteristics/6ebed429d8c6f1fdf2f756cf2d444f1e0c320804fef0260d9d84473a8a45886f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2941": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 128 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "2943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2944": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 53, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 81, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2947": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 128 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "2948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 128 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "2949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + } + }, + "2951": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 116, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2954": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2956": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2957": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2958": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/a52849579bb5939b1270d7db2c9281627d2183651dbd2f67b7f15c0f48943792.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2959": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_animal_characteristics/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 142, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 145, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 145 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 5, + "start_line": 142 + } + }, + "2961": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 145, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 145 + } + }, + "2963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 141 + } + }, + "2964": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 141 + } + }, + "2965": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 141 + } + }, + "2966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 142, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 148, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 48, + "start_line": 148 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 5, + "start_line": 142 + } + }, + "2967": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 148 + } + }, + "2969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 149, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 149 + } + }, + "2970": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "2972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7bc319d6ea02dcdc05b92379daf51a61e65b3a20e716a9c20084f70fb74b92db.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 143, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 143 + }, + "While handling return value 'is_approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7bc319d6ea02dcdc05b92379daf51a61e65b3a20e716a9c20084f70fb74b92db.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 143, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 143 + }, + "While handling return value 'is_approved'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 63, + "start_line": 1 + } + }, + "2976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "2977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "2978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_breeder/a634dcdf24b2b75accd384e16c36be5c19f92276086563800203118306a800f8.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "2979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 142, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 142 + }, + "While handling calldata argument 'account'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2981": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "2983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "2984": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "2985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 142, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_account' in:" + ], + "start_col": 5, + "start_line": 142 + }, + "While handling calldata argument 'account'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "2986": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + } + }, + "2988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 84, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "2989": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "2991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "2992": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "2993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "2995": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/51f507078a9009b4e2d2a039d329f2ade0b18b8d6641e08b076c304e69b1ac45.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "2996": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 141, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 141 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 156, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 156 + } + }, + "2999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 158, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 158 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 5, + "start_line": 154 + } + }, + "3000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 158, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 158 + } + }, + "3002": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 161, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 161 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 153 + } + }, + "3003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 161, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 161 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 20, + "start_line": 154 + } + }, + "3004": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 161, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 161 + } + }, + "3006": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 338 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 153 + } + }, + "3007": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 50, + "start_line": 338 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 153 + } + }, + "3008": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 161, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 338 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + } + }, + "3009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 43, + "start_line": 164 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 20, + "start_line": 154 + } + }, + "3010": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 164 + } + }, + "3012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 164 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 50, + "start_line": 338 + } + }, + "3013": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 164 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 338 + } + }, + "3014": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 164 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 338 + } + }, + "3015": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 69, + "start_line": 165 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 5, + "start_line": 154 + } + }, + "3016": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 84, + "start_line": 165 + }, + "While expanding the reference 'index_uint256' in:" + ], + "start_col": 10, + "start_line": 164 + } + }, + "3017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 164, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 84, + "start_line": 165 + }, + "While expanding the reference 'index_uint256' in:" + ], + "start_col": 10, + "start_line": 164 + } + }, + "3018": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 165, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 165 + } + }, + "3020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 167, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "3021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3023": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 155, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 155 + }, + "While handling return value 'token_id'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3024": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 155, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 155 + }, + "While handling return value 'token_id'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "3025": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 155, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 155 + }, + "While handling return value 'token_id'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "3027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 122, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 107, + "start_line": 1 + } + }, + "3028": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_of_owner_by_index/92b4211e077b847b4d88790d82a312bf1de5a6709cd78213f81d5f82b9737953.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 154 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3033": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3034": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3036": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_account' in:" + ], + "start_col": 5, + "start_line": 154 + }, + "While handling calldata argument 'account'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3038": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 154, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 175, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 155, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 20, + "start_line": 154 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "3039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + } + }, + "3041": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 112, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 97, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/672c7dea563ddc7d88ab70d4d562b2fbd693258689c76d1c3f4d5db0bba041fa.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3049": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_of_owner_by_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 153, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 153 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 171 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 171 + } + }, + "3051": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 171 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 171 + } + }, + "3052": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 171 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 171 + } + }, + "3053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 173, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 174 + }, + "While expanding the reference 'one_as_uint256' in:" + ], + "start_col": 34, + "start_line": 173 + } + }, + "3055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 173, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 174 + }, + "While expanding the reference 'one_as_uint256' in:" + ], + "start_col": 37, + "start_line": 173 + } + }, + "3057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 174, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 174 + } + }, + "3058": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/31a78b483470605c0e711fd67453b41bee9b52748b3310b33c0f792887cde889.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 172, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 172 + }, + "While handling return value 'price'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3061": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/31a78b483470605c0e711fd67453b41bee9b52748b3310b33c0f792887cde889.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 172, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 172 + }, + "While handling return value 'price'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "3062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/31a78b483470605c0e711fd67453b41bee9b52748b3310b33c0f792887cde889.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 172, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 172 + }, + "While handling return value 'price'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "3064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 114, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 99, + "start_line": 1 + } + }, + "3065": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/registration_price/ddc29956a222fe870af36b36bf81bf25b365d6378c76573d79db282b046232a6.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3070": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3071": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + } + }, + "3074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 92, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 108, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3080": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/registration_price/19b7a8c1d69d7001fa939b78f2e7a41deef070d9c61182941d7437a08357f8b9.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/registration_price/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 171 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3083": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 14, + "start_line": 182 + } + }, + "3084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 42, + "start_line": 182 + } + }, + "3085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 182 + } + }, + "3086": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 20, + "start_line": 185 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 5, + "start_line": 183 + } + }, + "3087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 24, + "start_line": 185 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 183 + } + }, + "3088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 24, + "start_line": 185 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 183 + } + }, + "3089": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 185, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 185 + } + }, + "3091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 186, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 186 + } + }, + "3092": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 183 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "3094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3095": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 14, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3096": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 42, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3098": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 137, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 120, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 5, + "start_line": 183 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "3099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 183 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 183, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 183 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3101": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + } + }, + "3103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3108": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3110": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 182, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 182 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 190 + } + }, + "3113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 190 + } + }, + "3114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 190 + } + }, + "3115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 191, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 33, + "start_line": 193 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 5, + "start_line": 191 + } + }, + "3116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 191, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 43, + "start_line": 193 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 21, + "start_line": 191 + } + }, + "3117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 193, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 193 + } + }, + "3119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 194, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 194 + } + }, + "3120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 191, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 21, + "start_line": 191 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3122": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3125": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 191, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_operator' in:" + ], + "start_col": 5, + "start_line": 191 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 191, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 160, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_approved' in:" + ], + "start_col": 21, + "start_line": 191 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + } + }, + "3130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3132": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 190, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 190 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3139": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 92 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 198 + } + }, + "3140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 92 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 198 + } + }, + "3141": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 92, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 198 + } + }, + "3142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 201 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 199 + } + }, + "3143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 43, + "start_line": 201 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 199 + } + }, + "3144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 47, + "start_line": 201 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 199 + } + }, + "3145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 47, + "start_line": 201 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 199 + } + }, + "3146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 201, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 201 + } + }, + "3148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 202, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "3149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 199 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "3151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_from_' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "3156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 148, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 18, + "start_line": 199 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "3157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 199 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 199, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 199 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + } + }, + "3161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 198, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 198 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 206 + } + }, + "3171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 206 + } + }, + "3172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 101, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 206 + } + }, + "3173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 41, + "start_line": 209 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 207 + } + }, + "3174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 48, + "start_line": 209 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 207 + } + }, + "3175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 52, + "start_line": 209 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 207 + } + }, + "3176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 52, + "start_line": 209 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 207 + } + }, + "3177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 61, + "start_line": 209 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 46, + "start_line": 207 + } + }, + "3178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 71, + "start_line": 209 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 62, + "start_line": 207 + } + }, + "3179": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 209, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "3181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 210, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 210 + } + }, + "3182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3184": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "3185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "3189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "3195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_from_' in:" + ], + "start_col": 5, + "start_line": 207 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "3196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 148, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 18, + "start_line": 207 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "3197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 207 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 207 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 231, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 208, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 207 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 207, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 257, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 238, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_data' in:" + ], + "start_col": 62, + "start_line": 207 + }, + "While handling calldata argument 'data'" + ], + "start_col": 27, + "start_line": 5 + } + }, + "3202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + } + }, + "3204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3209": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3212": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 206, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 206 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 214 + } + }, + "3214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 214 + } + }, + "3215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 214 + } + }, + "3216": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "3218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 218 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 217 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "3219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 218 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 217 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "3220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 217, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 218 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 217 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "3221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 218 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 5, + "start_line": 215 + } + }, + "3222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 218 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 215 + } + }, + "3223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 218 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 215 + } + }, + "3224": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 218, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 218 + } + }, + "3226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 219, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 219 + } + }, + "3227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 215 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "3229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 137, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 120, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 5, + "start_line": 215 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "3234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 215 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 215, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 215 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + } + }, + "3238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3242": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mint/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 214, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 214 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 223 + } + }, + "3248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 223 + } + }, + "3249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 223 + } + }, + "3250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 224 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + } + }, + "3251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 224 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + } + }, + "3252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 224, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 224 + } + }, + "3254": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 225 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + } + }, + "3255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 225 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + } + }, + "3256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 225 + } + }, + "3258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 226, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 226 + } + }, + "3259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 76, + "start_line": 223 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "3261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3266": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 76, + "start_line": 223 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + } + }, + "3269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 223, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 223 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 233, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 230 + } + }, + "3279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 233, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 230 + } + }, + "3280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 233, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 233 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 230 + } + }, + "3281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 233, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 233 + } + }, + "3283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 234 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 231 + } + }, + "3284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 234 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 231 + } + }, + "3285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 234 + }, + "While expanding the reference 'tokenURI' in:" + ], + "start_col": 23, + "start_line": 231 + } + }, + "3286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 234 + } + }, + "3288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 235, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 230 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 435 + } + }, + "3289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 235, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 230 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 435 + } + }, + "3290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 435, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 234, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 235, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 230 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 435 + } + }, + "3291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 235, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "3292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d04e2d3251723f2c7e6f92168ce103af197c6889e64f95c3180faf7ef6a79c04.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 23, + "start_line": 231 + }, + "While handling calldata argument 'tokenURI'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3296": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 231 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 231 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "3300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d04e2d3251723f2c7e6f92168ce103af197c6889e64f95c3180faf7ef6a79c04.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 231, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 181, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 158, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenURI' in:" + ], + "start_col": 23, + "start_line": 231 + }, + "While handling calldata argument 'tokenURI'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + } + }, + "3303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3308": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/7a2fe5ec765c50e83309541c6ba103d7647f45acb288bf22627667bc81fdcab0.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setTokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 230 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 242, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 239 + } + }, + "3313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 242, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 239 + } + }, + "3314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 242, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 239 + } + }, + "3315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 242, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 32, + "start_line": 242 + }, + "While expanding the reference 'newOwner' in:" + ], + "start_col": 5, + "start_line": 240 + } + }, + "3316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 242, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 242 + } + }, + "3318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 243, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 243 + } + }, + "3319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2aef757f589447008293bddb77833a6b09ad6aeb3836fac2487b4b086c4e2ec0.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 240 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2aef757f589447008293bddb77833a6b09ad6aeb3836fac2487b4b086c4e2ec0.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_newOwner' in:" + ], + "start_col": 5, + "start_line": 240 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3326": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + } + }, + "3328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/4d5877fd8a506c09961181726d072f7724872dde775702471c48c981eb559b84.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 239, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 239 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 71 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 247 + } + }, + "3338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 71 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 247 + } + }, + "3339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 71, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 247 + } + }, + "3340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 248, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 248 + } + }, + "3342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 249, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 249 + } + }, + "3343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3344": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + } + }, + "3349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renounceOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 247, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 247 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 256, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 256 + } + }, + "3360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 327 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 253 + } + }, + "3361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 327 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 49, + "start_line": 253 + } + }, + "3362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 257 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 327 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 253 + } + }, + "3363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 257 + } + }, + "3365": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 37, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 257 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 327 + } + }, + "3366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 37, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 257 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 327 + } + }, + "3367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 257, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 37, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 257 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 327 + } + }, + "3368": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 37, + "start_line": 260 + } + }, + "3370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 261, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 65, + "start_line": 262 + }, + "While expanding the reference 'one_as_uint256' in:" + ], + "start_col": 34, + "start_line": 261 + } + }, + "3372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 261, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 65, + "start_line": 262 + }, + "While expanding the reference 'one_as_uint256' in:" + ], + "start_col": 37, + "start_line": 261 + } + }, + "3374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 35, + "start_line": 262 + } + }, + "3376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 10, + "start_line": 262 + } + }, + "3377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 10, + "start_line": 262 + } + }, + "3378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 264, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 264 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 260 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 264, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 264 + } + }, + "3381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 260, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 260 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 264, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 264 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "3383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 262 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "3384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 264, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 267 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 10, + "start_line": 264 + } + }, + "3385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 44, + "start_line": 267 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 44, + "start_line": 267 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 267 + } + }, + "3389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 267 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + } + }, + "3390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 267 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + } + }, + "3391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 267, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/animals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 267 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + } + }, + "3392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 268 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 268 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 44, + "start_line": 268 + }, + "While expanding the reference 'sex' in:" + ], + "start_col": 5, + "start_line": 254 + } + }, + "3395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 54, + "start_line": 268 + }, + "While expanding the reference 'legs' in:" + ], + "start_col": 16, + "start_line": 254 + } + }, + "3396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 66, + "start_line": 268 + }, + "While expanding the reference 'wings' in:" + ], + "start_col": 28, + "start_line": 254 + } + }, + "3397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 268, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 268 + } + }, + "3399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 271 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 271 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 271 + } + }, + "3403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 253 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 271 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "3404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 49, + "start_line": 253 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 271 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "3405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 271, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 253 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 271 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "3406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 273 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 262, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 273 + }, + "While expanding the reference 'new_token_id' in:" + ], + "start_col": 16, + "start_line": 262 + } + }, + "3408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 273, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 273 + } + }, + "3409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 255 + }, + "While handling return value 'token_id'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 255 + }, + "While handling return value 'token_id'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "3413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e19f9a682a39db2364aac95fe9c14dd6ee6e0f4fe00aa83ca62c4d3c56a2bbe.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 255, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 255 + }, + "While handling return value 'token_id'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "3415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 98, + "start_line": 1 + } + }, + "3416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/declare_animal/880e34ca66ea1c861d265954938b00b7394765fd32ba87d5b9824abdb8909b6e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/0a7b0d23cc295962f0ca1cbc893c9fd93cfd7ac5a7418f9bd06781fe23a1c19a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 254 + }, + "While handling calldata argument 'wings'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 49, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ae3dfa17dc12dd87af4e0534bebac4cd90aee5d1609c69e0139cd153707bf10b.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 139, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_sex' in:" + ], + "start_col": 5, + "start_line": 254 + }, + "While handling calldata argument 'sex'" + ], + "start_col": 26, + "start_line": 1 + } + }, + "3426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0e0baea5b6a2e35f26a18142a82419bfc3ce1e028618cf49049ae2608300eebf.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 146, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_legs' in:" + ], + "start_col": 16, + "start_line": 254 + }, + "While handling calldata argument 'legs'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "3427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0a7b0d23cc295962f0ca1cbc893c9fd93cfd7ac5a7418f9bd06781fe23a1c19a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 254, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 193, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 173, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_wings' in:" + ], + "start_col": 28, + "start_line": 254 + }, + "While handling calldata argument 'wings'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "3428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + } + }, + "3430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 88, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/18cd591c25d49cf7753158998722caa4532d6e6d1bc5e23a04e76ce0eff83235.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3438": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 253, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 253 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 279, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 277 + } + }, + "3440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 279, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 279 + } + }, + "3442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 279, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 280, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 279 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "3443": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 280, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 280 + } + }, + "3445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 280, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 171 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 280 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 270 + } + }, + "3446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 171 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 277 + } + }, + "3447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 171 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 277 + } + }, + "3448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 281 + } + }, + "3450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 33, + "start_line": 282 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 281 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 171 + } + }, + "3451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 33, + "start_line": 282 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 281 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 171 + } + }, + "3452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 171, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 33, + "start_line": 282 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 281 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 171 + } + }, + "3453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 33, + "start_line": 282 + } + }, + "3455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 289, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 282 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3456": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 289, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 282 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 285, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 26, + "start_line": 285 + }, + "While expanding the reference 'dummy_token_address' in:" + ], + "start_col": 10, + "start_line": 282 + } + }, + "3458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 279, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 286, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 16, + "start_line": 286 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 10, + "start_line": 279 + } + }, + "3459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 280, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 287, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 19, + "start_line": 287 + }, + "While expanding the reference 'erc721_address' in:" + ], + "start_col": 10, + "start_line": 280 + } + }, + "3460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 288, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 16, + "start_line": 288 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 10, + "start_line": 281 + } + }, + "3461": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 281, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 288, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 16, + "start_line": 288 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 10, + "start_line": 281 + } + }, + "3462": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 289, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 284 + } + }, + "3464": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 292, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 292 + } + }, + "3466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 289, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 284 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3467": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_dummy_token_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 282, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 282 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3468": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 289, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 284 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "3469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 279, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 295 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 10, + "start_line": 279 + } + }, + "3470": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 53, + "start_line": 295 + } + }, + "3472": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 295, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 295 + } + }, + "3474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 296, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 296 + } + }, + "3476": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 296, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 296 + } + }, + "3477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3479": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/767d68986d509d58057d618f38507ad70a1941e1852f89377e3d811a7c6e0bbe.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 278, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 278 + }, + "While handling return value 'is_added'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3480": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/767d68986d509d58057d618f38507ad70a1941e1852f89377e3d811a7c6e0bbe.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 278, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 278 + }, + "While handling return value 'is_added'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "3482": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 72, + "start_line": 1 + } + }, + "3483": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3484": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3485": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/register_me_as_breeder/91e0613ef5fd046cdc9405e697ec03f1e85562c525506990e3f3da0405227c9f.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3486": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3488": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3489": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + } + }, + "3492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 111, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 96, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 112, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3496": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3497": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/b8541e9775a656d23ea9bc2a109f8c18d382458eb1a7fd98fc3fd7ec809a993d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3500": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/register_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 277, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 277 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 302, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 300 + } + }, + "3502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 302, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 302 + } + }, + "3504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 302, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 302 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "3505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 300 + } + }, + "3506": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 300 + } + }, + "3507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 302, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 31, + "start_line": 303 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 10, + "start_line": 302 + } + }, + "3508": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 53, + "start_line": 303 + } + }, + "3510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 303, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 303 + } + }, + "3512": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 305, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 22, + "start_line": 305 + } + }, + "3514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 305 + } + }, + "3515": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/767d68986d509d58057d618f38507ad70a1941e1852f89377e3d811a7c6e0bbe.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 301, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 7, + "start_line": 301 + }, + "While handling return value 'is_added'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3518": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/767d68986d509d58057d618f38507ad70a1941e1852f89377e3d811a7c6e0bbe.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 301, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 301 + }, + "While handling return value 'is_added'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "3520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 74, + "start_line": 1 + } + }, + "3521": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3523": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/unregister_me_as_breeder/a36d5c77657b91701c34e6a8cb51cc7d4eb17e744a5b809f98ec9fcec5f6fcc0.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3524": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3526": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + } + }, + "3530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 113, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 98, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 114, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3534": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3536": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/20cf905d90f40331aa4ae48c0e5f2cc1fe239ac7de6f8bbf3236c823a3f9fdf5.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/unregister_me_as_breeder/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 300, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3539": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 312 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 309 + } + }, + "3540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 312 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 309 + } + }, + "3541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 312 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 309 + } + }, + "3542": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 312 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 310 + } + }, + "3543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 36, + "start_line": 312 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 310 + } + }, + "3544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 312, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 312 + } + }, + "3546": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 313, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 313 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 310 + } + }, + "3547": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 313, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 313 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 310 + } + }, + "3548": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 313, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 313 + } + }, + "3550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 314, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 314 + } + }, + "3551": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 310 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "3553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3554": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3557": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 310 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3558": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8dea1d1b40eba589dfef8ffede5c32d2992cc763ba6b4fbe8747fb9ab14ba4c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 310, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 310 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3559": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + } + }, + "3561": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3563": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "3564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "3565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3566": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3568": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/33c94fd96978edc829dc77807c50da72ab8ffca60778c6c59571a448d308d6e3.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3569": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/declare_dead_animal/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 309, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 6, + "start_line": 309 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3570": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 323 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 55, + "start_line": 321 + } + }, + "3571": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 323 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 321 + } + }, + "3572": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 323 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 321 + } + }, + "3573": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 322, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 323 + }, + "While expanding the reference 'zero_as_uint256' in:" + ], + "start_col": 44, + "start_line": 322 + } + }, + "3575": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 322, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 25, + "start_line": 323 + }, + "While expanding the reference 'zero_as_uint256' in:" + ], + "start_col": 47, + "start_line": 322 + } + }, + "3577": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 323 + } + }, + "3579": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 324, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 321 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 323 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "3580": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 324, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 55, + "start_line": 321 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 323 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "3581": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/last_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 323, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 321, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 324, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 321 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 323 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "3582": { + "accessible_scopes": [ + "__main__", + "__main__.token_id_initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 324, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 324 + } + }, + "3583": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 328, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 327 + } + }, + "3584": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 328, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 28, + "start_line": 328 + } + }, + "3586": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 196, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 328, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 329 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 328 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 196 + } + }, + "3587": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 329 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 327 + } + }, + "3588": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 329 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 327 + } + }, + "3589": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 328, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 38, + "start_line": 329 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 10, + "start_line": 328 + } + }, + "3590": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 21, + "start_line": 329 + } + }, + "3592": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 332, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 9, + "start_line": 332 + } + }, + "3594": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 335, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 327 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 329 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3595": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 335, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 327 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 329 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3596": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_is_breeder/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 329, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 327, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 335, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 327 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 329 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3597": { + "accessible_scopes": [ + "__main__", + "__main__.assert_only_breeder" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 335, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 335 + } + }, + "3598": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 23, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 338 + } + }, + "3599": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 339, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 34, + "start_line": 341 + }, + "While expanding the reference 'felt_value' in:" + ], + "start_col": 5, + "start_line": 339 + } + }, + "3600": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 23, + "start_line": 341 + } + }, + "3602": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 344 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 338 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 338 + } + }, + "3603": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 344 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 50, + "start_line": 338 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 50, + "start_line": 338 + } + }, + "3604": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 124, + "input_file": { + "filename": "/home/carlosdev/cairo_venv/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 338, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 344 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 338 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 341 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 124 + } + }, + "3605": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 342, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 344 + }, + "While expanding the reference 'uint256_value' in:" + ], + "start_col": 42, + "start_line": 342 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 16, + "start_line": 341 + } + }, + "3606": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 341, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 342, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 27, + "start_line": 344 + }, + "While expanding the reference 'uint256_value' in:" + ], + "start_col": 47, + "start_line": 342 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 10, + "start_line": 341 + } + }, + "3607": { + "accessible_scopes": [ + "__main__", + "__main__.felt_to_uint256" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 344, + "input_file": { + "filename": "contracts/tasks/ex5/ERC721.cairo" + }, + "start_col": 5, + "start_line": 344 + } + } + } + }, + "hints": { + "0": [ + { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 0, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "12": [ + { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "code": "vm_enter_scope({'n': ids.len})", + "flow_tracking_data": { + "ap_tracking": { + "group": 2, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.memcpy.memcpy.len": 0 + } + } + } + ], + "20": [ + { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 2, + "offset": 5 + }, + "reference_ids": { + "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 + } + } + } + ], + "23": [ + { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "code": "vm_exit_scope()", + "flow_tracking_data": { + "ap_tracking": { + "group": 2, + "offset": 6 + }, + "reference_ids": {} + } + } + ], + "24": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 3, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_zero.value": 2 + } + } + } + ], + "29": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "code": "from starkware.cairo.lang.vm.relocatable import RelocatableValue\nboth_ints = isinstance(ids.a, int) and isinstance(ids.b, int)\nboth_relocatable = (\n isinstance(ids.a, RelocatableValue) and isinstance(ids.b, RelocatableValue) and\n ids.a.segment_index == ids.b.segment_index)\nassert both_ints or both_relocatable, \\\n f'assert_not_equal failed: non-comparable values: {ids.a}, {ids.b}.'\nassert (ids.a - ids.b) % PRIME != 0, f'assert_not_equal failed: {ids.a} = {ids.b}.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 4, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_equal.a": 3, + "starkware.cairo.common.math.assert_not_equal.b": 4 + } + } + } + ], + "35": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 5, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_nn.a": 5 + } + } + } + ], + "44": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", + "flow_tracking_data": { + "ap_tracking": { + "group": 7, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_250_bit.high": 8, + "starkware.cairo.common.math.assert_250_bit.low": 7, + "starkware.cairo.common.math.assert_250_bit.value": 6 + } + } + } + ], + "57": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.split_felt" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128\nassert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW\nassert_integer(ids.value)\nids.low = ids.value & ((1 << 128) - 1)\nids.high = ids.value >> 128", + "flow_tracking_data": { + "ap_tracking": { + "group": 8, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.split_felt.high": 11, + "starkware.cairo.common.math.split_felt.low": 10, + "starkware.cairo.common.math.split_felt.value": 9 + } + } + } + ], + "86": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", + "flow_tracking_data": { + "ap_tracking": { + "group": 9, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_le_felt.a": 12, + "starkware.cairo.common.math.assert_le_felt.b": 13, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 14 + } + } + } + ], + "96": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 0 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 9, + "offset": 8 + }, + "reference_ids": {} + } + } + ], + "110": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 1 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 9, + "offset": 9 + }, + "reference_ids": {} + } + } + ], + "122": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "assert excluded == 2", + "flow_tracking_data": { + "ap_tracking": { + "group": 9, + "offset": 10 + }, + "reference_ids": {} + } + } + ], + "133": [ + { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 15, + "starkware.starknet.common.storage.normalize_address.is_small": 16 + } + } + } + ], + "151": [ + { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 2 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 15, + "starkware.starknet.common.storage.normalize_address.is_250": 17 + } + } + } + ], + "178": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "code": "syscall_handler.call_contract(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 11, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.call_contract.syscall_ptr": 18 + } + } + } + ], + "186": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 19 + } + } + } + ], + "193": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "code": "syscall_handler.get_contract_address(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 13, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": 20 + } + } + } + ], + "201": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 14, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 21 + } + } + } + ], + "210": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 15, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 22 + } + } + } + ], + "220": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 16, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 23 + } + } + } + ], + "223": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 17, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math_cmp.is_nn.a": 24 + } + } + } + ], + "233": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 17, + "offset": 1 + }, + "reference_ids": { + "starkware.cairo.common.math_cmp.is_nn.a": 24 + } + } + } + ], + "268": [ + { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "code": "sum_low = ids.a.low + ids.b.low\nids.carry_low = 1 if sum_low >= ids.SHIFT else 0\nsum_high = ids.a.high + ids.b.high + ids.carry_low\nids.carry_high = 1 if sum_high >= ids.SHIFT else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 20, + "offset": 4 + }, + "reference_ids": { + "starkware.cairo.common.uint256.uint256_add.a": 25, + "starkware.cairo.common.uint256.uint256_add.b": 26, + "starkware.cairo.common.uint256.uint256_add.carry_high": 28, + "starkware.cairo.common.uint256.uint256_add.carry_low": 27 + } + } + } + ], + "2605": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 164, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2621": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 167, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2654": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 171, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2684": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 174, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2715": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 177, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2751": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 180, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2787": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 184, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2823": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 188, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2859": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 192, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2893": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 196, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2930": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_animal_characteristics_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 199, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "2970": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_breeder_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 202, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3021": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_of_owner_by_index_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 206, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3058": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.registration_price_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 210, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3103": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 215, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3130": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 217, + "offset": 129 + }, + "reference_ids": {} + } + } + ], + "3161": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 221, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3204": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 225, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3238": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 230, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3269": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 234, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3303": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setTokenURI" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 238, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3328": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 242, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3349": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renounceOwnership" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 246, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3409": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_animal_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 250, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3477": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.register_me_as_breeder_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 254, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3515": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.unregister_me_as_breeder_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 257, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "3561": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.declare_dead_animal" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 262, + "offset": 0 + }, + "reference_ids": {} + } + } + ] + }, + "identifiers": { + "__main__.Animal": { + "full_name": "__main__.Animal", + "members": { + "legs": { + "cairo_type": "felt", + "offset": 1 + }, + "sex": { + "cairo_type": "felt", + "offset": 0 + }, + "wings": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.ERC165": { + "destination": "openzeppelin.introspection.erc165.library.ERC165", + "type": "alias" + }, + "__main__.ERC721": { + "destination": "openzeppelin.token.erc721.library.ERC721", + "type": "alias" + }, + "__main__.ERC721Enumerable": { + "destination": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "type": "alias" + }, + "__main__.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.IERC20": { + "destination": "openzeppelin.token.erc20.IERC20.IERC20", + "type": "alias" + }, + "__main__.Ownable": { + "destination": "openzeppelin.access.ownable.library.Ownable", + "type": "alias" + }, + "__main__.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "__main__._dummy_token_address": { + "type": "namespace" + }, + "__main__._dummy_token_address.Args": { + "full_name": "__main__._dummy_token_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._dummy_token_address.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__._dummy_token_address.ImplicitArgs": { + "full_name": "__main__._dummy_token_address.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._dummy_token_address.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__._dummy_token_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._dummy_token_address.addr": { + "decorators": [], + "pc": 2541, + "type": "function" + }, + "__main__._dummy_token_address.addr.Args": { + "full_name": "__main__._dummy_token_address.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._dummy_token_address.addr.ImplicitArgs": { + "full_name": "__main__._dummy_token_address.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__._dummy_token_address.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "__main__._dummy_token_address.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._dummy_token_address.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "__main__._dummy_token_address.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "__main__._dummy_token_address.read": { + "decorators": [], + "pc": 2546, + "type": "function" + }, + "__main__._dummy_token_address.read.Args": { + "full_name": "__main__._dummy_token_address.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._dummy_token_address.read.ImplicitArgs": { + "full_name": "__main__._dummy_token_address.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__._dummy_token_address.read.Return": { + "cairo_type": "(dummy_token_address: felt)", + "type": "type_definition" + }, + "__main__._dummy_token_address.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._dummy_token_address.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "__main__._dummy_token_address.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "__main__._dummy_token_address.write": { + "decorators": [], + "pc": 2559, + "type": "function" + }, + "__main__._dummy_token_address.write.Args": { + "full_name": "__main__._dummy_token_address.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__._dummy_token_address.write.ImplicitArgs": { + "full_name": "__main__._dummy_token_address.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__._dummy_token_address.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__._dummy_token_address.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._is_breeder": { + "type": "namespace" + }, + "__main__._is_breeder.Args": { + "full_name": "__main__._is_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._is_breeder.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__._is_breeder.ImplicitArgs": { + "full_name": "__main__._is_breeder.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__._is_breeder.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__._is_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._is_breeder.addr": { + "decorators": [], + "pc": 2500, + "type": "function" + }, + "__main__._is_breeder.addr.Args": { + "full_name": "__main__._is_breeder.addr.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__._is_breeder.addr.ImplicitArgs": { + "full_name": "__main__._is_breeder.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__._is_breeder.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "__main__._is_breeder.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._is_breeder.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "__main__._is_breeder.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "__main__._is_breeder.read": { + "decorators": [], + "pc": 2514, + "type": "function" + }, + "__main__._is_breeder.read.Args": { + "full_name": "__main__._is_breeder.read.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__._is_breeder.read.ImplicitArgs": { + "full_name": "__main__._is_breeder.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__._is_breeder.read.Return": { + "cairo_type": "(is_approved: felt)", + "type": "type_definition" + }, + "__main__._is_breeder.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__._is_breeder.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "__main__._is_breeder.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "__main__._is_breeder.write": { + "decorators": [], + "pc": 2528, + "type": "function" + }, + "__main__._is_breeder.write.Args": { + "full_name": "__main__._is_breeder.write.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__._is_breeder.write.ImplicitArgs": { + "full_name": "__main__._is_breeder.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__._is_breeder.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__._is_breeder.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.animals": { + "type": "namespace" + }, + "__main__.animals.Args": { + "full_name": "__main__.animals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.animals.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.animals.ImplicitArgs": { + "full_name": "__main__.animals.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.animals.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.animals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.animals.addr": { + "decorators": [], + "pc": 2432, + "type": "function" + }, + "__main__.animals.addr.Args": { + "full_name": "__main__.animals.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.animals.addr.ImplicitArgs": { + "full_name": "__main__.animals.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.animals.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "__main__.animals.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.animals.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "__main__.animals.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "__main__.animals.read": { + "decorators": [], + "pc": 2449, + "type": "function" + }, + "__main__.animals.read.Args": { + "full_name": "__main__.animals.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.animals.read.ImplicitArgs": { + "full_name": "__main__.animals.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.animals.read.Return": { + "cairo_type": "(animal: __main__.Animal)", + "type": "type_definition" + }, + "__main__.animals.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.animals.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "__main__.animals.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "__main__.animals.write": { + "decorators": [], + "pc": 2476, + "type": "function" + }, + "__main__.animals.write.Args": { + "full_name": "__main__.animals.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "__main__.Animal", + "offset": 2 + } + }, + "size": 5, + "type": "struct" + }, + "__main__.animals.write.ImplicitArgs": { + "full_name": "__main__.animals.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.animals.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.animals.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.approve": { + "decorators": [ + "external" + ], + "pc": 3083, + "type": "function" + }, + "__main__.approve.Args": { + "full_name": "__main__.approve.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.approve.ImplicitArgs": { + "full_name": "__main__.approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.approve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.assert_nn": { + "destination": "starkware.cairo.common.math.assert_nn", + "type": "alias" + }, + "__main__.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "__main__.assert_only_breeder": { + "decorators": [], + "pc": 3583, + "type": "function" + }, + "__main__.assert_only_breeder.Args": { + "full_name": "__main__.assert_only_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.assert_only_breeder.ImplicitArgs": { + "full_name": "__main__.assert_only_breeder.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.assert_only_breeder.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.assert_only_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.balanceOf": { + "decorators": [ + "view" + ], + "pc": 2708, + "type": "function" + }, + "__main__.balanceOf.Args": { + "full_name": "__main__.balanceOf.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.balanceOf.ImplicitArgs": { + "full_name": "__main__.balanceOf.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.balanceOf.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.balanceOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.burn": { + "decorators": [ + "external" + ], + "pc": 3247, + "type": "function" + }, + "__main__.burn.Args": { + "full_name": "__main__.burn.Args", + "members": { + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.burn.ImplicitArgs": { + "full_name": "__main__.burn.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.burn.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.burn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.constructor": { + "decorators": [ + "constructor" + ], + "pc": 2571, + "type": "function" + }, + "__main__.constructor.Args": { + "full_name": "__main__.constructor.Args", + "members": { + "dummy_token_address": { + "cairo_type": "felt", + "offset": 3 + }, + "name": { + "cairo_type": "felt", + "offset": 0 + }, + "owner": { + "cairo_type": "felt", + "offset": 2 + }, + "symbol": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.constructor.ImplicitArgs": { + "full_name": "__main__.constructor.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.constructor.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.constructor.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.declare_animal": { + "decorators": [ + "external" + ], + "pc": 3358, + "type": "function" + }, + "__main__.declare_animal.Args": { + "full_name": "__main__.declare_animal.Args", + "members": { + "legs": { + "cairo_type": "felt", + "offset": 1 + }, + "sex": { + "cairo_type": "felt", + "offset": 0 + }, + "wings": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.declare_animal.ImplicitArgs": { + "full_name": "__main__.declare_animal.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.declare_animal.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.declare_animal.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "__main__.declare_dead_animal": { + "decorators": [ + "external" + ], + "pc": 3539, + "type": "function" + }, + "__main__.declare_dead_animal.Args": { + "full_name": "__main__.declare_dead_animal.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.declare_dead_animal.ImplicitArgs": { + "full_name": "__main__.declare_dead_animal.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.declare_dead_animal.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.declare_dead_animal.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.felt_to_uint256": { + "decorators": [], + "pc": 3598, + "type": "function" + }, + "__main__.felt_to_uint256.Args": { + "full_name": "__main__.felt_to_uint256.Args", + "members": { + "felt_value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.felt_to_uint256.ImplicitArgs": { + "full_name": "__main__.felt_to_uint256.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.felt_to_uint256.Return": { + "cairo_type": "(uint256_value: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.felt_to_uint256.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.getApproved": { + "decorators": [ + "view" + ], + "pc": 2779, + "type": "function" + }, + "__main__.getApproved.Args": { + "full_name": "__main__.getApproved.Args", + "members": { + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.getApproved.ImplicitArgs": { + "full_name": "__main__.getApproved.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.getApproved.Return": { + "cairo_type": "(approved: felt)", + "type": "type_definition" + }, + "__main__.getApproved.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_animal_characteristics": { + "decorators": [ + "view" + ], + "pc": 2917, + "type": "function" + }, + "__main__.get_animal_characteristics.Args": { + "full_name": "__main__.get_animal_characteristics.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.get_animal_characteristics.ImplicitArgs": { + "full_name": "__main__.get_animal_characteristics.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.get_animal_characteristics.Return": { + "cairo_type": "(sex: felt, legs: felt, wings: felt)", + "type": "type_definition" + }, + "__main__.get_animal_characteristics.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "__main__.get_contract_address": { + "destination": "starkware.starknet.common.syscalls.get_contract_address", + "type": "alias" + }, + "__main__.isApprovedForAll": { + "decorators": [ + "view" + ], + "pc": 2815, + "type": "function" + }, + "__main__.isApprovedForAll.Args": { + "full_name": "__main__.isApprovedForAll.Args", + "members": { + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.isApprovedForAll.ImplicitArgs": { + "full_name": "__main__.isApprovedForAll.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.isApprovedForAll.Return": { + "cairo_type": "(isApproved: felt)", + "type": "type_definition" + }, + "__main__.isApprovedForAll.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.is_breeder": { + "decorators": [ + "view" + ], + "pc": 2960, + "type": "function" + }, + "__main__.is_breeder.Args": { + "full_name": "__main__.is_breeder.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.is_breeder.ImplicitArgs": { + "full_name": "__main__.is_breeder.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.is_breeder.Return": { + "cairo_type": "(is_approved: felt)", + "type": "type_definition" + }, + "__main__.is_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.last_token_id": { + "type": "namespace" + }, + "__main__.last_token_id.Args": { + "full_name": "__main__.last_token_id.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.last_token_id.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.last_token_id.ImplicitArgs": { + "full_name": "__main__.last_token_id.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.last_token_id.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.last_token_id.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.last_token_id.addr": { + "decorators": [], + "pc": 2391, + "type": "function" + }, + "__main__.last_token_id.addr.Args": { + "full_name": "__main__.last_token_id.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.last_token_id.addr.ImplicitArgs": { + "full_name": "__main__.last_token_id.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.last_token_id.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "__main__.last_token_id.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.last_token_id.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "__main__.last_token_id.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "__main__.last_token_id.read": { + "decorators": [], + "pc": 2396, + "type": "function" + }, + "__main__.last_token_id.read.Args": { + "full_name": "__main__.last_token_id.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.last_token_id.read.ImplicitArgs": { + "full_name": "__main__.last_token_id.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.last_token_id.read.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.last_token_id.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.last_token_id.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "__main__.last_token_id.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "__main__.last_token_id.write": { + "decorators": [], + "pc": 2415, + "type": "function" + }, + "__main__.last_token_id.write.Args": { + "full_name": "__main__.last_token_id.write.Args", + "members": { + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.last_token_id.write.ImplicitArgs": { + "full_name": "__main__.last_token_id.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.last_token_id.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.last_token_id.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.mint": { + "decorators": [ + "external" + ], + "pc": 3213, + "type": "function" + }, + "__main__.mint.Args": { + "full_name": "__main__.mint.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.mint.ImplicitArgs": { + "full_name": "__main__.mint.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.mint.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.name": { + "decorators": [ + "view" + ], + "pc": 2648, + "type": "function" + }, + "__main__.name.Args": { + "full_name": "__main__.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.name.ImplicitArgs": { + "full_name": "__main__.name.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.name.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "__main__.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.owner": { + "decorators": [ + "view" + ], + "pc": 2887, + "type": "function" + }, + "__main__.owner.Args": { + "full_name": "__main__.owner.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.owner.ImplicitArgs": { + "full_name": "__main__.owner.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.owner.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "__main__.owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.ownerOf": { + "decorators": [ + "view" + ], + "pc": 2743, + "type": "function" + }, + "__main__.ownerOf.Args": { + "full_name": "__main__.ownerOf.Args", + "members": { + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.ownerOf.ImplicitArgs": { + "full_name": "__main__.ownerOf.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.ownerOf.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "__main__.ownerOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.register_me_as_breeder": { + "decorators": [ + "external" + ], + "pc": 3439, + "type": "function" + }, + "__main__.register_me_as_breeder.Args": { + "full_name": "__main__.register_me_as_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.register_me_as_breeder.ImplicitArgs": { + "full_name": "__main__.register_me_as_breeder.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.register_me_as_breeder.Return": { + "cairo_type": "(is_added: felt)", + "type": "type_definition" + }, + "__main__.register_me_as_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.registration_price": { + "decorators": [ + "view" + ], + "pc": 3050, + "type": "function" + }, + "__main__.registration_price.Args": { + "full_name": "__main__.registration_price.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.registration_price.ImplicitArgs": { + "full_name": "__main__.registration_price.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.registration_price.Return": { + "cairo_type": "(price: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.registration_price.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.renounceOwnership": { + "decorators": [ + "external" + ], + "pc": 3337, + "type": "function" + }, + "__main__.renounceOwnership.Args": { + "full_name": "__main__.renounceOwnership.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.renounceOwnership.ImplicitArgs": { + "full_name": "__main__.renounceOwnership.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.renounceOwnership.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.renounceOwnership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.safeTransferFrom": { + "decorators": [ + "external" + ], + "pc": 3170, + "type": "function" + }, + "__main__.safeTransferFrom.Args": { + "full_name": "__main__.safeTransferFrom.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 5 + }, + "data_len": { + "cairo_type": "felt", + "offset": 4 + }, + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 6, + "type": "struct" + }, + "__main__.safeTransferFrom.ImplicitArgs": { + "full_name": "__main__.safeTransferFrom.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.safeTransferFrom.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.safeTransferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.setApprovalForAll": { + "decorators": [ + "external" + ], + "pc": 3112, + "type": "function" + }, + "__main__.setApprovalForAll.Args": { + "full_name": "__main__.setApprovalForAll.Args", + "members": { + "approved": { + "cairo_type": "felt", + "offset": 1 + }, + "operator": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.setApprovalForAll.ImplicitArgs": { + "full_name": "__main__.setApprovalForAll.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.setApprovalForAll.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.setApprovalForAll.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.setTokenURI": { + "decorators": [ + "external" + ], + "pc": 3278, + "type": "function" + }, + "__main__.setTokenURI.Args": { + "full_name": "__main__.setTokenURI.Args", + "members": { + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "tokenURI": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.setTokenURI.ImplicitArgs": { + "full_name": "__main__.setTokenURI.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.setTokenURI.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.setTokenURI.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.split_felt": { + "destination": "starkware.cairo.common.math.split_felt", + "type": "alias" + }, + "__main__.supportsInterface": { + "decorators": [ + "view" + ], + "pc": 2614, + "type": "function" + }, + "__main__.supportsInterface.Args": { + "full_name": "__main__.supportsInterface.Args", + "members": { + "interfaceId": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.supportsInterface.ImplicitArgs": { + "full_name": "__main__.supportsInterface.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.supportsInterface.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.supportsInterface.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.symbol": { + "decorators": [ + "view" + ], + "pc": 2678, + "type": "function" + }, + "__main__.symbol.Args": { + "full_name": "__main__.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.symbol.ImplicitArgs": { + "full_name": "__main__.symbol.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.symbol.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "__main__.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.tokenURI": { + "decorators": [ + "view" + ], + "pc": 2851, + "type": "function" + }, + "__main__.tokenURI.Args": { + "full_name": "__main__.tokenURI.Args", + "members": { + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.tokenURI.ImplicitArgs": { + "full_name": "__main__.tokenURI.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.tokenURI.Return": { + "cairo_type": "(tokenURI: felt)", + "type": "type_definition" + }, + "__main__.tokenURI.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.token_id_initializer": { + "decorators": [], + "pc": 3570, + "type": "function" + }, + "__main__.token_id_initializer.Args": { + "full_name": "__main__.token_id_initializer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.token_id_initializer.ImplicitArgs": { + "full_name": "__main__.token_id_initializer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.token_id_initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.token_id_initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.token_of_owner_by_index": { + "decorators": [ + "view" + ], + "pc": 2997, + "type": "function" + }, + "__main__.token_of_owner_by_index.Args": { + "full_name": "__main__.token_of_owner_by_index.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + }, + "index": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.token_of_owner_by_index.ImplicitArgs": { + "full_name": "__main__.token_of_owner_by_index.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.token_of_owner_by_index.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.token_of_owner_by_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.transferFrom": { + "decorators": [ + "external" + ], + "pc": 3139, + "type": "function" + }, + "__main__.transferFrom.Args": { + "full_name": "__main__.transferFrom.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.transferFrom.ImplicitArgs": { + "full_name": "__main__.transferFrom.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.transferFrom.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.transferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.transferOwnership": { + "decorators": [ + "external" + ], + "pc": 3312, + "type": "function" + }, + "__main__.transferOwnership.Args": { + "full_name": "__main__.transferOwnership.Args", + "members": { + "newOwner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.transferOwnership.ImplicitArgs": { + "full_name": "__main__.transferOwnership.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.transferOwnership.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.transferOwnership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.uint256_add": { + "destination": "starkware.cairo.common.uint256.uint256_add", + "type": "alias" + }, + "__main__.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "__main__.unregister_me_as_breeder": { + "decorators": [ + "external" + ], + "pc": 3501, + "type": "function" + }, + "__main__.unregister_me_as_breeder.Args": { + "full_name": "__main__.unregister_me_as_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.unregister_me_as_breeder.ImplicitArgs": { + "full_name": "__main__.unregister_me_as_breeder.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.unregister_me_as_breeder.Return": { + "cairo_type": "(is_added: felt)", + "type": "type_definition" + }, + "__main__.unregister_me_as_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.approve": { + "decorators": [ + "external" + ], + "pc": 3092, + "type": "function" + }, + "__wrappers__.approve.Args": { + "full_name": "__wrappers__.approve.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.approve.ImplicitArgs": { + "full_name": "__wrappers__.approve.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.approve.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.approve.__wrapped_func": { + "destination": "__main__.approve", + "type": "alias" + }, + "__wrappers__.approve_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.balanceOf": { + "decorators": [ + "view" + ], + "pc": 2725, + "type": "function" + }, + "__wrappers__.balanceOf.Args": { + "full_name": "__wrappers__.balanceOf.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf.ImplicitArgs": { + "full_name": "__wrappers__.balanceOf.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.balanceOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.balanceOf.__wrapped_func": { + "destination": "__main__.balanceOf", + "type": "alias" + }, + "__wrappers__.balanceOf_encode_return": { + "decorators": [], + "pc": 2715, + "type": "function" + }, + "__wrappers__.balanceOf_encode_return.Args": { + "full_name": "__wrappers__.balanceOf_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.balanceOf_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.balanceOf_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.balanceOf_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.balanceOf_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.burn": { + "decorators": [ + "external" + ], + "pc": 3259, + "type": "function" + }, + "__wrappers__.burn.Args": { + "full_name": "__wrappers__.burn.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.burn.ImplicitArgs": { + "full_name": "__wrappers__.burn.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.burn.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.burn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.burn.__wrapped_func": { + "destination": "__main__.burn", + "type": "alias" + }, + "__wrappers__.burn_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.constructor": { + "decorators": [ + "constructor" + ], + "pc": 2593, + "type": "function" + }, + "__wrappers__.constructor.Args": { + "full_name": "__wrappers__.constructor.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.constructor.ImplicitArgs": { + "full_name": "__wrappers__.constructor.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.constructor.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.constructor.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.constructor.__wrapped_func": { + "destination": "__main__.constructor", + "type": "alias" + }, + "__wrappers__.constructor_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.declare_animal": { + "decorators": [ + "external" + ], + "pc": 3419, + "type": "function" + }, + "__wrappers__.declare_animal.Args": { + "full_name": "__wrappers__.declare_animal.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.declare_animal.ImplicitArgs": { + "full_name": "__wrappers__.declare_animal.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.declare_animal.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.declare_animal.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.declare_animal.__wrapped_func": { + "destination": "__main__.declare_animal", + "type": "alias" + }, + "__wrappers__.declare_animal_encode_return": { + "decorators": [], + "pc": 3409, + "type": "function" + }, + "__wrappers__.declare_animal_encode_return.Args": { + "full_name": "__wrappers__.declare_animal_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.declare_animal_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.declare_animal_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.declare_animal_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.declare_animal_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.declare_animal_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.declare_dead_animal": { + "decorators": [ + "external" + ], + "pc": 3551, + "type": "function" + }, + "__wrappers__.declare_dead_animal.Args": { + "full_name": "__wrappers__.declare_dead_animal.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.declare_dead_animal.ImplicitArgs": { + "full_name": "__wrappers__.declare_dead_animal.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.declare_dead_animal.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.declare_dead_animal.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.declare_dead_animal.__wrapped_func": { + "destination": "__main__.declare_dead_animal", + "type": "alias" + }, + "__wrappers__.declare_dead_animal_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.getApproved": { + "decorators": [ + "view" + ], + "pc": 2796, + "type": "function" + }, + "__wrappers__.getApproved.Args": { + "full_name": "__wrappers__.getApproved.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getApproved.ImplicitArgs": { + "full_name": "__wrappers__.getApproved.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getApproved.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.getApproved.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.getApproved.__wrapped_func": { + "destination": "__main__.getApproved", + "type": "alias" + }, + "__wrappers__.getApproved_encode_return": { + "decorators": [], + "pc": 2787, + "type": "function" + }, + "__wrappers__.getApproved_encode_return.Args": { + "full_name": "__wrappers__.getApproved_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(approved: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.getApproved_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.getApproved_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.getApproved_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.getApproved_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.getApproved_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.get_animal_characteristics": { + "decorators": [ + "view" + ], + "pc": 2941, + "type": "function" + }, + "__wrappers__.get_animal_characteristics.Args": { + "full_name": "__wrappers__.get_animal_characteristics.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_animal_characteristics.ImplicitArgs": { + "full_name": "__wrappers__.get_animal_characteristics.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_animal_characteristics.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_animal_characteristics.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.get_animal_characteristics.__wrapped_func": { + "destination": "__main__.get_animal_characteristics", + "type": "alias" + }, + "__wrappers__.get_animal_characteristics_encode_return": { + "decorators": [], + "pc": 2930, + "type": "function" + }, + "__wrappers__.get_animal_characteristics_encode_return.Args": { + "full_name": "__wrappers__.get_animal_characteristics_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 3 + }, + "ret_value": { + "cairo_type": "(sex: felt, legs: felt, wings: felt)", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "__wrappers__.get_animal_characteristics_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.get_animal_characteristics_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.get_animal_characteristics_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.get_animal_characteristics_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.get_animal_characteristics_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.isApprovedForAll": { + "decorators": [ + "view" + ], + "pc": 2832, + "type": "function" + }, + "__wrappers__.isApprovedForAll.Args": { + "full_name": "__wrappers__.isApprovedForAll.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isApprovedForAll.ImplicitArgs": { + "full_name": "__wrappers__.isApprovedForAll.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isApprovedForAll.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.isApprovedForAll.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.isApprovedForAll.__wrapped_func": { + "destination": "__main__.isApprovedForAll", + "type": "alias" + }, + "__wrappers__.isApprovedForAll_encode_return": { + "decorators": [], + "pc": 2823, + "type": "function" + }, + "__wrappers__.isApprovedForAll_encode_return.Args": { + "full_name": "__wrappers__.isApprovedForAll_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(isApproved: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.isApprovedForAll_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.isApprovedForAll_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.isApprovedForAll_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.isApprovedForAll_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.isApprovedForAll_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.is_breeder": { + "decorators": [ + "view" + ], + "pc": 2979, + "type": "function" + }, + "__wrappers__.is_breeder.Args": { + "full_name": "__wrappers__.is_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.is_breeder.ImplicitArgs": { + "full_name": "__wrappers__.is_breeder.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.is_breeder.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.is_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.is_breeder.__wrapped_func": { + "destination": "__main__.is_breeder", + "type": "alias" + }, + "__wrappers__.is_breeder_encode_return": { + "decorators": [], + "pc": 2970, + "type": "function" + }, + "__wrappers__.is_breeder_encode_return.Args": { + "full_name": "__wrappers__.is_breeder_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(is_approved: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.is_breeder_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.is_breeder_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.is_breeder_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.is_breeder_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.is_breeder_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.mint": { + "decorators": [ + "external" + ], + "pc": 3227, + "type": "function" + }, + "__wrappers__.mint.Args": { + "full_name": "__wrappers__.mint.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.mint.ImplicitArgs": { + "full_name": "__wrappers__.mint.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.mint.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.mint.__wrapped_func": { + "destination": "__main__.mint", + "type": "alias" + }, + "__wrappers__.mint_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.name": { + "decorators": [ + "view" + ], + "pc": 2663, + "type": "function" + }, + "__wrappers__.name.Args": { + "full_name": "__wrappers__.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name.ImplicitArgs": { + "full_name": "__wrappers__.name.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.name.__wrapped_func": { + "destination": "__main__.name", + "type": "alias" + }, + "__wrappers__.name_encode_return": { + "decorators": [], + "pc": 2654, + "type": "function" + }, + "__wrappers__.name_encode_return.Args": { + "full_name": "__wrappers__.name_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(name: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.name_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.name_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.name_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.name_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.owner": { + "decorators": [ + "view" + ], + "pc": 2902, + "type": "function" + }, + "__wrappers__.owner.Args": { + "full_name": "__wrappers__.owner.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.owner.ImplicitArgs": { + "full_name": "__wrappers__.owner.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.owner.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.owner.__wrapped_func": { + "destination": "__main__.owner", + "type": "alias" + }, + "__wrappers__.ownerOf": { + "decorators": [ + "view" + ], + "pc": 2760, + "type": "function" + }, + "__wrappers__.ownerOf.Args": { + "full_name": "__wrappers__.ownerOf.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.ownerOf.ImplicitArgs": { + "full_name": "__wrappers__.ownerOf.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.ownerOf.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.ownerOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.ownerOf.__wrapped_func": { + "destination": "__main__.ownerOf", + "type": "alias" + }, + "__wrappers__.ownerOf_encode_return": { + "decorators": [], + "pc": 2751, + "type": "function" + }, + "__wrappers__.ownerOf_encode_return.Args": { + "full_name": "__wrappers__.ownerOf_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(owner: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.ownerOf_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.ownerOf_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.ownerOf_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.ownerOf_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.ownerOf_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.owner_encode_return": { + "decorators": [], + "pc": 2893, + "type": "function" + }, + "__wrappers__.owner_encode_return.Args": { + "full_name": "__wrappers__.owner_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(owner: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.owner_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.owner_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.owner_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.owner_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.owner_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.register_me_as_breeder": { + "decorators": [ + "external" + ], + "pc": 3486, + "type": "function" + }, + "__wrappers__.register_me_as_breeder.Args": { + "full_name": "__wrappers__.register_me_as_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.register_me_as_breeder.ImplicitArgs": { + "full_name": "__wrappers__.register_me_as_breeder.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.register_me_as_breeder.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.register_me_as_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.register_me_as_breeder.__wrapped_func": { + "destination": "__main__.register_me_as_breeder", + "type": "alias" + }, + "__wrappers__.register_me_as_breeder_encode_return": { + "decorators": [], + "pc": 3477, + "type": "function" + }, + "__wrappers__.register_me_as_breeder_encode_return.Args": { + "full_name": "__wrappers__.register_me_as_breeder_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(is_added: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.register_me_as_breeder_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.register_me_as_breeder_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.register_me_as_breeder_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.register_me_as_breeder_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.register_me_as_breeder_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.registration_price": { + "decorators": [ + "view" + ], + "pc": 3068, + "type": "function" + }, + "__wrappers__.registration_price.Args": { + "full_name": "__wrappers__.registration_price.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.registration_price.ImplicitArgs": { + "full_name": "__wrappers__.registration_price.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.registration_price.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.registration_price.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.registration_price.__wrapped_func": { + "destination": "__main__.registration_price", + "type": "alias" + }, + "__wrappers__.registration_price_encode_return": { + "decorators": [], + "pc": 3058, + "type": "function" + }, + "__wrappers__.registration_price_encode_return.Args": { + "full_name": "__wrappers__.registration_price_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(price: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.registration_price_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.registration_price_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.registration_price_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.registration_price_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.registration_price_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.renounceOwnership": { + "decorators": [ + "external" + ], + "pc": 3343, + "type": "function" + }, + "__wrappers__.renounceOwnership.Args": { + "full_name": "__wrappers__.renounceOwnership.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.renounceOwnership.ImplicitArgs": { + "full_name": "__wrappers__.renounceOwnership.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.renounceOwnership.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.renounceOwnership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.renounceOwnership.__wrapped_func": { + "destination": "__main__.renounceOwnership", + "type": "alias" + }, + "__wrappers__.renounceOwnership_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.safeTransferFrom": { + "decorators": [ + "external" + ], + "pc": 3182, + "type": "function" + }, + "__wrappers__.safeTransferFrom.Args": { + "full_name": "__wrappers__.safeTransferFrom.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.safeTransferFrom.ImplicitArgs": { + "full_name": "__wrappers__.safeTransferFrom.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.safeTransferFrom.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.safeTransferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.safeTransferFrom.__wrapped_func": { + "destination": "__main__.safeTransferFrom", + "type": "alias" + }, + "__wrappers__.safeTransferFrom_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.setApprovalForAll": { + "decorators": [ + "external" + ], + "pc": 3120, + "type": "function" + }, + "__wrappers__.setApprovalForAll.Args": { + "full_name": "__wrappers__.setApprovalForAll.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setApprovalForAll.ImplicitArgs": { + "full_name": "__wrappers__.setApprovalForAll.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setApprovalForAll.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.setApprovalForAll.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.setApprovalForAll.__wrapped_func": { + "destination": "__main__.setApprovalForAll", + "type": "alias" + }, + "__wrappers__.setApprovalForAll_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.setTokenURI": { + "decorators": [ + "external" + ], + "pc": 3292, + "type": "function" + }, + "__wrappers__.setTokenURI.Args": { + "full_name": "__wrappers__.setTokenURI.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setTokenURI.ImplicitArgs": { + "full_name": "__wrappers__.setTokenURI.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.setTokenURI.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.setTokenURI.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.setTokenURI.__wrapped_func": { + "destination": "__main__.setTokenURI", + "type": "alias" + }, + "__wrappers__.setTokenURI_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.supportsInterface": { + "decorators": [ + "view" + ], + "pc": 2630, + "type": "function" + }, + "__wrappers__.supportsInterface.Args": { + "full_name": "__wrappers__.supportsInterface.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.supportsInterface.ImplicitArgs": { + "full_name": "__wrappers__.supportsInterface.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.supportsInterface.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.supportsInterface.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.supportsInterface.__wrapped_func": { + "destination": "__main__.supportsInterface", + "type": "alias" + }, + "__wrappers__.supportsInterface_encode_return": { + "decorators": [], + "pc": 2621, + "type": "function" + }, + "__wrappers__.supportsInterface_encode_return.Args": { + "full_name": "__wrappers__.supportsInterface_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.supportsInterface_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.supportsInterface_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.supportsInterface_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.supportsInterface_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.supportsInterface_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.symbol": { + "decorators": [ + "view" + ], + "pc": 2693, + "type": "function" + }, + "__wrappers__.symbol.Args": { + "full_name": "__wrappers__.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol.ImplicitArgs": { + "full_name": "__wrappers__.symbol.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.symbol.__wrapped_func": { + "destination": "__main__.symbol", + "type": "alias" + }, + "__wrappers__.symbol_encode_return": { + "decorators": [], + "pc": 2684, + "type": "function" + }, + "__wrappers__.symbol_encode_return.Args": { + "full_name": "__wrappers__.symbol_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(symbol: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.symbol_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.symbol_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.symbol_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.symbol_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.tokenURI": { + "decorators": [ + "view" + ], + "pc": 2868, + "type": "function" + }, + "__wrappers__.tokenURI.Args": { + "full_name": "__wrappers__.tokenURI.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.tokenURI.ImplicitArgs": { + "full_name": "__wrappers__.tokenURI.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.tokenURI.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.tokenURI.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.tokenURI.__wrapped_func": { + "destination": "__main__.tokenURI", + "type": "alias" + }, + "__wrappers__.tokenURI_encode_return": { + "decorators": [], + "pc": 2859, + "type": "function" + }, + "__wrappers__.tokenURI_encode_return.Args": { + "full_name": "__wrappers__.tokenURI_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(tokenURI: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.tokenURI_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.tokenURI_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.tokenURI_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.tokenURI_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.tokenURI_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.token_of_owner_by_index": { + "decorators": [ + "view" + ], + "pc": 3031, + "type": "function" + }, + "__wrappers__.token_of_owner_by_index.Args": { + "full_name": "__wrappers__.token_of_owner_by_index.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.token_of_owner_by_index.ImplicitArgs": { + "full_name": "__wrappers__.token_of_owner_by_index.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.token_of_owner_by_index.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.token_of_owner_by_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.token_of_owner_by_index.__wrapped_func": { + "destination": "__main__.token_of_owner_by_index", + "type": "alias" + }, + "__wrappers__.token_of_owner_by_index_encode_return": { + "decorators": [], + "pc": 3021, + "type": "function" + }, + "__wrappers__.token_of_owner_by_index_encode_return.Args": { + "full_name": "__wrappers__.token_of_owner_by_index_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.token_of_owner_by_index_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.token_of_owner_by_index_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.token_of_owner_by_index_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.token_of_owner_by_index_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.token_of_owner_by_index_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.transferFrom": { + "decorators": [ + "external" + ], + "pc": 3149, + "type": "function" + }, + "__wrappers__.transferFrom.Args": { + "full_name": "__wrappers__.transferFrom.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferFrom.ImplicitArgs": { + "full_name": "__wrappers__.transferFrom.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferFrom.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.transferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.transferFrom.__wrapped_func": { + "destination": "__main__.transferFrom", + "type": "alias" + }, + "__wrappers__.transferFrom_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.transferOwnership": { + "decorators": [ + "external" + ], + "pc": 3319, + "type": "function" + }, + "__wrappers__.transferOwnership.Args": { + "full_name": "__wrappers__.transferOwnership.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferOwnership.ImplicitArgs": { + "full_name": "__wrappers__.transferOwnership.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferOwnership.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.transferOwnership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.transferOwnership.__wrapped_func": { + "destination": "__main__.transferOwnership", + "type": "alias" + }, + "__wrappers__.transferOwnership_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.unregister_me_as_breeder": { + "decorators": [ + "external" + ], + "pc": 3524, + "type": "function" + }, + "__wrappers__.unregister_me_as_breeder.Args": { + "full_name": "__wrappers__.unregister_me_as_breeder.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.unregister_me_as_breeder.ImplicitArgs": { + "full_name": "__wrappers__.unregister_me_as_breeder.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.unregister_me_as_breeder.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.unregister_me_as_breeder.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.unregister_me_as_breeder.__wrapped_func": { + "destination": "__main__.unregister_me_as_breeder", + "type": "alias" + }, + "__wrappers__.unregister_me_as_breeder_encode_return": { + "decorators": [], + "pc": 3515, + "type": "function" + }, + "__wrappers__.unregister_me_as_breeder_encode_return.Args": { + "full_name": "__wrappers__.unregister_me_as_breeder_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(is_added: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.unregister_me_as_breeder_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.unregister_me_as_breeder_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.unregister_me_as_breeder_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.unregister_me_as_breeder_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.unregister_me_as_breeder_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.access.ownable.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable": { + "type": "namespace" + }, + "openzeppelin.access.ownable.library.Ownable.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable._transfer_ownership": { + "decorators": [], + "pc": 483, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args", + "members": { + "new_owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable._transfer_ownership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable.assert_only_owner": { + "decorators": [], + "pc": 440, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.assert_only_owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable.initializer": { + "decorators": [], + "pc": 433, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable.initializer.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable.owner": { + "decorators": [], + "pc": 455, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable.owner.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.owner.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.owner.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable.renounce_ownership": { + "decorators": [], + "pc": 473, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable.renounce_ownership.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.renounce_ownership.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.renounce_ownership.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.renounce_ownership.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.renounce_ownership.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.renounce_ownership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable.transfer_ownership": { + "decorators": [], + "pc": 461, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args", + "members": { + "new_owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable.transfer_ownership.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable_owner": { + "type": "namespace" + }, + "openzeppelin.access.ownable.library.Ownable_owner.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable_owner.addr": { + "decorators": [], + "pc": 403, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable_owner.addr.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable_owner.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable_owner.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable_owner.read": { + "decorators": [], + "pc": 408, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable_owner.read.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.read.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable_owner.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.access.ownable.library.Ownable_owner.write": { + "decorators": [], + "pc": 421, + "type": "function" + }, + "openzeppelin.access.ownable.library.Ownable_owner.write.Args": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.access.ownable.library.Ownable_owner.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.Ownable_owner.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.OwnershipTransferred": { + "type": "namespace" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { + "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { + "type": "const", + "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit": { + "decorators": [], + "pc": 378, + "type": "function" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args": { + "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args", + "members": { + "newOwner": { + "cairo_type": "felt", + "offset": 1 + }, + "previousOwner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs": { + "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.access.ownable.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "openzeppelin.access.ownable.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165": { + "type": "namespace" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.Args": { + "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.SUPPORTSINTERFACE_SELECTOR": { + "type": "const", + "value": 1184015894760294494673613438913361435336722154500302038630992932234692784845 + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.call_contract": { + "destination": "starkware.starknet.common.syscalls.call_contract", + "type": "alias" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface": { + "decorators": [], + "pc": 576, + "type": "function" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Args": { + "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Args", + "members": { + "contract_address": { + "cairo_type": "felt", + "offset": 0 + }, + "interfaceId": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "openzeppelin.introspection.erc165.library.ERC165": { + "type": "namespace" + }, + "openzeppelin.introspection.erc165.library.ERC165.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165.register_interface": { + "decorators": [], + "pc": 562, + "type": "function" + }, + "openzeppelin.introspection.erc165.library.ERC165.register_interface.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.register_interface.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.register_interface.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.register_interface.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.register_interface.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165.register_interface.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165.supports_interface": { + "decorators": [], + "pc": 545, + "type": "function" + }, + "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.supports_interface.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165.supports_interface.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165.supports_interface.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces": { + "type": "namespace" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr": { + "decorators": [], + "pc": 504, + "type": "function" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read": { + "decorators": [], + "pc": 518, + "type": "function" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Return": { + "cairo_type": "(is_supported: felt)", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write": { + "decorators": [], + "pc": 532, + "type": "function" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Args": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Args", + "members": { + "interface_id": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.ImplicitArgs": { + "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.introspection.erc165.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.IERC165_ID": { + "destination": "openzeppelin.utils.constants.library.IERC165_ID", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.INVALID_ID": { + "destination": "openzeppelin.utils.constants.library.INVALID_ID", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.introspection.erc165.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "openzeppelin.security.safemath.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "openzeppelin.security.safemath.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.security.safemath.library.SafeUint256": { + "type": "namespace" + }, + "openzeppelin.security.safemath.library.SafeUint256.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.SafeUint256.add": { + "decorators": [], + "pc": 599, + "type": "function" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.Return": { + "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le": { + "decorators": [], + "pc": 622, + "type": "function" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.Return": { + "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.security.safemath.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_add": { + "destination": "starkware.cairo.common.uint256.uint256_add", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_eq": { + "destination": "starkware.cairo.common.uint256.uint256_eq", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_le": { + "destination": "starkware.cairo.common.uint256.uint256_le", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_lt": { + "destination": "starkware.cairo.common.uint256.uint256_lt", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_mul": { + "destination": "starkware.cairo.common.uint256.uint256_mul", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_sub": { + "destination": "starkware.cairo.common.uint256.uint256_sub", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_unsigned_div_rem": { + "destination": "starkware.cairo.common.uint256.uint256_unsigned_div_rem", + "type": "alias" + }, + "openzeppelin.token.erc20.IERC20.IERC20": { + "type": "namespace" + }, + "openzeppelin.token.erc20.IERC20.IERC20.ALLOWANCE_SELECTOR": { + "type": "const", + "value": 863164345921111744606866654754108663958095967665259696902984674202985078753 + }, + "openzeppelin.token.erc20.IERC20.IERC20.APPROVE_SELECTOR": { + "type": "const", + "value": 949021990203918389843157787496164629863144228991510976554585288817234167820 + }, + "openzeppelin.token.erc20.IERC20.IERC20.Args": { + "full_name": "openzeppelin.token.erc20.IERC20.IERC20.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.IERC20.IERC20.BALANCEOF_SELECTOR": { + "type": "const", + "value": 1307730684388977109649524593492043083703013045633289330664425380824804018030 + }, + "openzeppelin.token.erc20.IERC20.IERC20.DECIMALS_SELECTOR": { + "type": "const", + "value": 134830404806214277570220174593674215737759987247891306080029841794115377321 + }, + "openzeppelin.token.erc20.IERC20.IERC20.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.IERC20.IERC20.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.IERC20.IERC20.NAME_SELECTOR": { + "type": "const", + "value": 1528802474226268325865027367859591458315299653151958663884057507666229546336 + }, + "openzeppelin.token.erc20.IERC20.IERC20.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.IERC20.IERC20.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.IERC20.IERC20.SYMBOL_SELECTOR": { + "type": "const", + "value": 944713526212149105522785400348068751682982210605126537021911324578866405028 + }, + "openzeppelin.token.erc20.IERC20.IERC20.TOTALSUPPLY_SELECTOR": { + "type": "const", + "value": 227334030968744315992796982100494617316223563777432855541120004521101595501 + }, + "openzeppelin.token.erc20.IERC20.IERC20.TRANSFERFROM_SELECTOR": { + "type": "const", + "value": 116061167288211781254449158074459916871457383008289084697957612485591092000 + }, + "openzeppelin.token.erc20.IERC20.IERC20.TRANSFER_SELECTOR": { + "type": "const", + "value": 232670485425082704932579856502088130646006032362877466777181098476241604910 + }, + "openzeppelin.token.erc20.IERC20.IERC20.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc20.IERC20.IERC20.call_contract": { + "destination": "starkware.starknet.common.syscalls.call_contract", + "type": "alias" + }, + "openzeppelin.token.erc20.IERC20.IERC20.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "openzeppelin.token.erc20.IERC20.IERC20.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom": { + "decorators": [], + "pc": 2365, + "type": "function" + }, + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.Args": { + "full_name": "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 3 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 0 + }, + "recipient": { + "cairo_type": "felt", + "offset": 2 + }, + "sender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 5, + "type": "struct" + }, + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "openzeppelin.token.erc20.IERC20.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver": { + "type": "namespace" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Args": { + "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ONERC721RECEIVED_SELECTOR": { + "type": "const", + "value": 441833262846246486607087847804043886170335009155803575450536462761436446875 + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.call_contract": { + "destination": "starkware.starknet.common.syscalls.call_contract", + "type": "alias" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.library_call": { + "destination": "starkware.starknet.common.syscalls.library_call", + "type": "alias" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received": { + "decorators": [], + "pc": 654, + "type": "function" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Args": { + "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Args", + "members": { + "contract_address": { + "cairo_type": "felt", + "offset": 0 + }, + "data": { + "cairo_type": "felt*", + "offset": 6 + }, + "data_len": { + "cairo_type": "felt", + "offset": 5 + }, + "from_": { + "cairo_type": "felt", + "offset": 2 + }, + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 3 + } + }, + "size": 7, + "type": "struct" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Return": { + "cairo_type": "(selector: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.SIZEOF_LOCALS": { + "type": "const", + "value": 3 + }, + "openzeppelin.token.erc721.IERC721Receiver.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC165": { + "destination": "openzeppelin.introspection.erc165.library.ERC165", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721": { + "destination": "openzeppelin.token.erc721.library.ERC721", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn": { + "decorators": [], + "pc": 2109, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint": { + "decorators": [], + "pc": 2091, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from": { + "decorators": [], + "pc": 2069, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 5 + }, + "data_len": { + "cairo_type": "felt", + "offset": 4 + }, + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 6, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index": { + "decorators": [], + "pc": 2018, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from": { + "decorators": [], + "pc": 2049, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr": { + "decorators": [], + "pc": 1785, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read": { + "decorators": [], + "pc": 1802, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write": { + "decorators": [], + "pc": 1823, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr": { + "decorators": [], + "pc": 1842, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read": { + "decorators": [], + "pc": 1859, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Return": { + "cairo_type": "(index: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write": { + "decorators": [], + "pc": 1880, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr": { + "decorators": [], + "pc": 1744, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read": { + "decorators": [], + "pc": 1749, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Return": { + "cairo_type": "(total_supply: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write": { + "decorators": [], + "pc": 1768, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Args", + "members": { + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr": { + "decorators": [], + "pc": 1899, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read": { + "decorators": [], + "pc": 1919, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Return": { + "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write": { + "decorators": [], + "pc": 1941, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Args", + "members": { + "index": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 3 + } + }, + "size": 5, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index": { + "type": "namespace" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr": { + "decorators": [], + "pc": 1961, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read": { + "decorators": [], + "pc": 1978, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Return": { + "cairo_type": "(index: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write": { + "decorators": [], + "pc": 1999, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.IERC721_ENUMERABLE_ID": { + "destination": "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.SafeUint256": { + "destination": "openzeppelin.security.safemath.library.SafeUint256", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration": { + "decorators": [], + "pc": 2133, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration": { + "decorators": [], + "pc": 2249, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration": { + "decorators": [], + "pc": 2162, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.SIZEOF_LOCALS": { + "type": "const", + "value": 6 + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration": { + "decorators": [], + "pc": 2275, + "type": "function" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Args": { + "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.SIZEOF_LOCALS": { + "type": "const", + "value": 6 + }, + "openzeppelin.token.erc721.enumerable.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.uint256_eq": { + "destination": "starkware.cairo.common.uint256.uint256_eq", + "type": "alias" + }, + "openzeppelin.token.erc721.enumerable.library.uint256_lt": { + "destination": "starkware.cairo.common.uint256.uint256_lt", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Approval": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.Approval.Args": { + "full_name": "openzeppelin.token.erc721.library.Approval.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Approval.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.Approval.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Approval.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.Approval.SELECTOR": { + "type": "const", + "value": 544914742286571513055574265148471203182105283038408585630116262969508767999 + }, + "openzeppelin.token.erc721.library.Approval.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.Approval.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Approval.emit": { + "decorators": [], + "pc": 718, + "type": "function" + }, + "openzeppelin.token.erc721.library.Approval.emit.Args": { + "full_name": "openzeppelin.token.erc721.library.Approval.emit.Args", + "members": { + "approved": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Approval.emit.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.Approval.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Approval.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.Approval.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.token.erc721.library.Approval.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Approval.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ApprovalForAll": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.Args": { + "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.SELECTOR": { + "type": "const", + "value": 11799366895331287683400559711902461446731448035283747365813974388970843869 + }, + "openzeppelin.token.erc721.library.ApprovalForAll.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ApprovalForAll.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit": { + "decorators": [], + "pc": 745, + "type": "function" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit.Args": { + "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.emit.Args", + "members": { + "approved": { + "cairo_type": "felt", + "offset": 2 + }, + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.token.erc721.library.ApprovalForAll.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ApprovalForAll.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC165": { + "destination": "openzeppelin.introspection.erc165.library.ERC165", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._approve": { + "decorators": [], + "pc": 1444, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._approve.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._approve.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._approve.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._approve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._burn": { + "decorators": [], + "pc": 1617, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._burn.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._burn.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._burn.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._burn.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._burn.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._burn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._exists": { + "decorators": [], + "pc": 1423, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._exists.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._exists.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._exists.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._exists.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._exists.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._exists.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner": { + "decorators": [], + "pc": 1356, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Args", + "members": { + "spender": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "openzeppelin.token.erc721.library.ERC721._mint": { + "decorators": [], + "pc": 1562, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._mint.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._mint.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._mint.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._mint.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._mint.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._safe_transfer": { + "decorators": [], + "pc": 1539, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._safe_transfer.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._safe_transfer.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 5 + }, + "data_len": { + "cairo_type": "felt", + "offset": 4 + }, + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 6, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._safe_transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._safe_transfer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._safe_transfer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._safe_transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._set_token_uri": { + "decorators": [], + "pc": 1676, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._set_token_uri.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._set_token_uri.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "token_uri": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._set_token_uri.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._set_token_uri.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._set_token_uri.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._set_token_uri.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721._transfer": { + "decorators": [], + "pc": 1468, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721._transfer.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721._transfer.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721._transfer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721._transfer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721._transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.approve": { + "decorators": [], + "pc": 1173, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.approve.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.approve.Args", + "members": { + "to": { + "cairo_type": "felt", + "offset": 0 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.approve.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.approve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner": { + "decorators": [], + "pc": 1336, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.balance_of": { + "decorators": [], + "pc": 1097, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.balance_of.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.balance_of.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.balance_of.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.balance_of.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.balance_of.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.balance_of.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.get_approved": { + "decorators": [], + "pc": 1126, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.get_approved.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.get_approved.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.get_approved.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.get_approved.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.get_approved.Return": { + "cairo_type": "(approved: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.get_approved.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.initializer": { + "decorators": [], + "pc": 1067, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.initializer.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.initializer.Args", + "members": { + "name": { + "cairo_type": "felt", + "offset": 0 + }, + "symbol": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.initializer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.initializer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all": { + "decorators": [], + "pc": 1148, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Args", + "members": { + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Return": { + "cairo_type": "(is_approved: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.name": { + "decorators": [], + "pc": 1085, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.name.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.name.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.name.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.name.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.owner_of": { + "decorators": [], + "pc": 1107, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.owner_of.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.owner_of.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.owner_of.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.owner_of.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.owner_of.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.owner_of.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from": { + "decorators": [], + "pc": 1299, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 5 + }, + "data_len": { + "cairo_type": "felt", + "offset": 4 + }, + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 6, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all": { + "decorators": [], + "pc": 1229, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Args", + "members": { + "approved": { + "cairo_type": "felt", + "offset": 1 + }, + "operator": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.symbol": { + "decorators": [], + "pc": 1091, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.symbol.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.symbol.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.symbol.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.symbol.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.token_uri": { + "decorators": [], + "pc": 1156, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.token_uri.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.token_uri.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.token_uri.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.token_uri.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.token_uri.Return": { + "cairo_type": "(token_uri: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.token_uri.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721.transfer_from": { + "decorators": [], + "pc": 1264, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721.transfer_from.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721.transfer_from.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.transfer_from.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721.transfer_from.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721.transfer_from.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721.transfer_from.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "openzeppelin.token.erc721.library.ERC721_balances": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_balances.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_balances.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_balances.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_balances.addr": { + "decorators": [], + "pc": 877, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_balances.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.addr.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_balances.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_balances.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_balances.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_balances.read": { + "decorators": [], + "pc": 891, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_balances.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.read.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.read.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_balances.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_balances.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_balances.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_balances.write": { + "decorators": [], + "pc": 911, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_balances.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.write.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_balances.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_balances.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_balances.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_name": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_name.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_name.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_name.addr": { + "decorators": [], + "pc": 771, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_name.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_name.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_name.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_name.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_name.read": { + "decorators": [], + "pc": 776, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_name.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.read.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_name.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_name.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_name.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_name.write": { + "decorators": [], + "pc": 789, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_name.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_name.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_name.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_name.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr": { + "decorators": [], + "pc": 975, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Args", + "members": { + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read": { + "decorators": [], + "pc": 992, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Args", + "members": { + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Return": { + "cairo_type": "(is_approved: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write": { + "decorators": [], + "pc": 1007, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Args", + "members": { + "operator": { + "cairo_type": "felt", + "offset": 1 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_owners": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_owners.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_owners.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_owners.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_owners.addr": { + "decorators": [], + "pc": 831, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_owners.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_owners.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_owners.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_owners.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_owners.read": { + "decorators": [], + "pc": 848, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_owners.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.read.Return": { + "cairo_type": "(owner: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_owners.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_owners.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_owners.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_owners.write": { + "decorators": [], + "pc": 863, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_owners.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_owners.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_owners.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_owners.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_symbol": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_symbol.addr": { + "decorators": [], + "pc": 801, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_symbol.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.read": { + "decorators": [], + "pc": 806, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.read.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_symbol.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.write": { + "decorators": [], + "pc": 819, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_symbol.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr": { + "decorators": [], + "pc": 929, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.read": { + "decorators": [], + "pc": 946, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Return": { + "cairo_type": "(approved: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.write": { + "decorators": [], + "pc": 961, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_approvals.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_uri": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.addr": { + "decorators": [], + "pc": 1021, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.addr.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.addr.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.read": { + "decorators": [], + "pc": 1038, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.read.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.read.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.read.Return": { + "cairo_type": "(token_uri: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.write": { + "decorators": [], + "pc": 1053, + "type": "function" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.write.Args": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.write.Args", + "members": { + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.ERC721_token_uri.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "openzeppelin.token.erc721.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IACCOUNT_ID": { + "destination": "openzeppelin.utils.constants.library.IACCOUNT_ID", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IERC165": { + "destination": "openzeppelin.introspection.erc165.IERC165.IERC165", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IERC721Receiver": { + "destination": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IERC721_ID": { + "destination": "openzeppelin.utils.constants.library.IERC721_ID", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IERC721_METADATA_ID": { + "destination": "openzeppelin.utils.constants.library.IERC721_METADATA_ID", + "type": "alias" + }, + "openzeppelin.token.erc721.library.IERC721_RECEIVER_ID": { + "destination": "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID", + "type": "alias" + }, + "openzeppelin.token.erc721.library.SafeUint256": { + "destination": "openzeppelin.security.safemath.library.SafeUint256", + "type": "alias" + }, + "openzeppelin.token.erc721.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Transfer": { + "type": "namespace" + }, + "openzeppelin.token.erc721.library.Transfer.Args": { + "full_name": "openzeppelin.token.erc721.library.Transfer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.Transfer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Transfer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.Transfer.SELECTOR": { + "type": "const", + "value": 271746229759260285552388728919865295615886751538523744128730118297934206697 + }, + "openzeppelin.token.erc721.library.Transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.Transfer.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Transfer.emit": { + "decorators": [], + "pc": 691, + "type": "function" + }, + "openzeppelin.token.erc721.library.Transfer.emit.Args": { + "full_name": "openzeppelin.token.erc721.library.Transfer.emit.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "tokenId": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Transfer.emit.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library.Transfer.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc721.library.Transfer.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library.Transfer.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.token.erc721.library.Transfer.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Transfer.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc721.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.token.erc721.library._check_onERC721Received": { + "decorators": [], + "pc": 1699, + "type": "function" + }, + "openzeppelin.token.erc721.library._check_onERC721Received.Args": { + "full_name": "openzeppelin.token.erc721.library._check_onERC721Received.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 5 + }, + "data_len": { + "cairo_type": "felt", + "offset": 4 + }, + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "token_id": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 6, + "type": "struct" + }, + "openzeppelin.token.erc721.library._check_onERC721Received.ImplicitArgs": { + "full_name": "openzeppelin.token.erc721.library._check_onERC721Received.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc721.library._check_onERC721Received.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc721.library._check_onERC721Received.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc721.library.assert_not_equal": { + "destination": "starkware.cairo.common.math.assert_not_equal", + "type": "alias" + }, + "openzeppelin.token.erc721.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "openzeppelin.token.erc721.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "openzeppelin.token.erc721.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "openzeppelin.utils.constants.library.DEFAULT_ADMIN_ROLE": { + "type": "const", + "value": 0 + }, + "openzeppelin.utils.constants.library.IACCESSCONTROL_ID": { + "type": "const", + "value": 2036718347 + }, + "openzeppelin.utils.constants.library.IACCOUNT_ID": { + "type": "const", + "value": 2792084853 + }, + "openzeppelin.utils.constants.library.IERC165_ID": { + "type": "const", + "value": 33540519 + }, + "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID": { + "type": "const", + "value": 2014223715 + }, + "openzeppelin.utils.constants.library.IERC721_ID": { + "type": "const", + "value": 2158778573 + }, + "openzeppelin.utils.constants.library.IERC721_METADATA_ID": { + "type": "const", + "value": 1532892063 + }, + "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID": { + "type": "const", + "value": 353073666 + }, + "openzeppelin.utils.constants.library.INVALID_ID": { + "type": "const", + "value": 4294967295 + }, + "openzeppelin.utils.constants.library.UINT8_MAX": { + "type": "const", + "value": 255 + }, + "starkware.cairo.common.alloc.alloc": { + "decorators": [], + "pc": 0, + "type": "function" + }, + "starkware.cairo.common.alloc.alloc.Args": { + "full_name": "starkware.cairo.common.alloc.alloc.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.alloc.alloc.ImplicitArgs": { + "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.alloc.alloc.Return": { + "cairo_type": "(ptr: felt*)", + "type": "type_definition" + }, + "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.bitwise.ALL_ONES": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719234 + }, + "starkware.cairo.common.bitwise.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.bool.FALSE": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.bool.TRUE": { + "type": "const", + "value": 1 + }, + "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "x_and_y": { + "cairo_type": "felt", + "offset": 2 + }, + "x_or_y": { + "cairo_type": "felt", + "offset": 4 + }, + "x_xor_y": { + "cairo_type": "felt", + "offset": 3 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "members": { + "m": { + "cairo_type": "felt", + "offset": 4 + }, + "p": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 0 + }, + "q": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 2 + }, + "r": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.cairo_builtins.HashBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "members": { + "result": { + "cairo_type": "felt", + "offset": 2 + }, + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 8 + } + }, + "size": 16, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { + "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "type": "alias" + }, + "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "members": { + "message": { + "cairo_type": "felt", + "offset": 1 + }, + "pub_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.dict_access.DictAccess": { + "full_name": "starkware.cairo.common.dict_access.DictAccess", + "members": { + "key": { + "cairo_type": "felt", + "offset": 0 + }, + "new_value": { + "cairo_type": "felt", + "offset": 2 + }, + "prev_value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.ec_point.EcPoint": { + "full_name": "starkware.cairo.common.ec_point.EcPoint", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "starkware.cairo.common.hash.hash2": { + "decorators": [], + "pc": 3, + "type": "function" + }, + "starkware.cairo.common.hash.hash2.Args": { + "full_name": "starkware.cairo.common.hash.hash2.Args", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash.hash2.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash.hash2.Return": { + "cairo_type": "(result: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.keccak_state.KeccakBuiltinState": { + "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + }, + "s3": { + "cairo_type": "felt", + "offset": 3 + }, + "s4": { + "cairo_type": "felt", + "offset": 4 + }, + "s5": { + "cairo_type": "felt", + "offset": 5 + }, + "s6": { + "cairo_type": "felt", + "offset": 6 + }, + "s7": { + "cairo_type": "felt", + "offset": 7 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.cairo.common.math.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.math.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.math.assert_250_bit": { + "decorators": [ + "known_ap_change" + ], + "pc": 44, + "type": "function" + }, + "starkware.cairo.common.math.assert_250_bit.Args": { + "full_name": "starkware.cairo.common.math.assert_250_bit.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { + "type": "const", + "value": 5316911983139663491615228241121378304 + }, + "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_250_bit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_250_bit.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { + "type": "const", + "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 + }, + "starkware.cairo.common.math.assert_250_bit.high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.high", + "references": [ + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast([fp + (-4)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_250_bit.low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.low", + "references": [ + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast([fp + (-4)], felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_250_bit.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.value", + "references": [ + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le": { + "decorators": [], + "pc": 39, + "type": "function" + }, + "starkware.cairo.common.math.assert_le.Args": { + "full_name": "starkware.cairo.common.math.assert_le.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt": { + "decorators": [ + "known_ap_change" + ], + "pc": 86, + "type": "function" + }, + "starkware.cairo.common.math.assert_le_felt.Args": { + "full_name": "starkware.cairo.common.math.assert_le_felt.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { + "type": "const", + "value": 5316911983139663648412552867652567041 + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { + "type": "const", + "value": 3544607988759775765608368578435044694 + }, + "starkware.cairo.common.math.assert_le_felt.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.a", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.b", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 8 + }, + "pc": 96, + "value": "cast([fp + (-5)] + 4, felt)" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { + "pc": 110, + "type": "label" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { + "pc": 122, + "type": "label" + }, + "starkware.cairo.common.math.assert_nn": { + "decorators": [], + "pc": 35, + "type": "function" + }, + "starkware.cairo.common.math.assert_nn.Args": { + "full_name": "starkware.cairo.common.math.assert_nn.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_nn.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_nn.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_nn.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_nn.a", + "references": [ + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_not_equal": { + "decorators": [], + "pc": 29, + "type": "function" + }, + "starkware.cairo.common.math.assert_not_equal.Args": { + "full_name": "starkware.cairo.common.math.assert_not_equal.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_equal.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_not_equal.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_equal.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_not_equal.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_equal.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_equal.a", + "references": [ + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 29, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_not_equal.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_equal.b", + "references": [ + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 29, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_not_zero": { + "decorators": [], + "pc": 24, + "type": "function" + }, + "starkware.cairo.common.math.assert_not_zero.Args": { + "full_name": "starkware.cairo.common.math.assert_not_zero.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_zero.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_zero.value", + "references": [ + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 24, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt": { + "decorators": [ + "known_ap_change" + ], + "pc": 57, + "type": "function" + }, + "starkware.cairo.common.math.split_felt.Args": { + "full_name": "starkware.cairo.common.math.split_felt.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.split_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.split_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.split_felt.MAX_HIGH": { + "type": "const", + "value": 10633823966279327296825105735305134080 + }, + "starkware.cairo.common.math.split_felt.MAX_LOW": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.split_felt.Return": { + "cairo_type": "(high: felt, low: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.math.split_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.split_felt.high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.high", + "references": [ + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast([fp + (-4)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt.low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.low", + "references": [ + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast([fp + (-4)], felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.split_felt.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.split_felt.value", + "references": [ + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.RC_BOUND": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math_cmp.assert_le_felt": { + "destination": "starkware.cairo.common.math.assert_le_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.assert_lt_felt": { + "destination": "starkware.cairo.common.math.assert_lt_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.is_le": { + "decorators": [ + "known_ap_change" + ], + "pc": 256, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_le.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_le.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math_cmp.is_nn": { + "decorators": [ + "known_ap_change" + ], + "pc": 223, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_nn.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_nn.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math_cmp.is_nn.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math_cmp.is_nn.a", + "references": [ + { + "ap_tracking_data": { + "group": 17, + "offset": 0 + }, + "pc": 223, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { + "pc": 247, + "type": "label" + }, + "starkware.cairo.common.math_cmp.is_nn.out_of_range": { + "pc": 233, + "type": "label" + }, + "starkware.cairo.common.memcpy.memcpy": { + "decorators": [], + "pc": 9, + "type": "function" + }, + "starkware.cairo.common.memcpy.memcpy.Args": { + "full_name": "starkware.cairo.common.memcpy.memcpy.Args", + "members": { + "dst": { + "cairo_type": "felt*", + "offset": 0 + }, + "len": { + "cairo_type": "felt", + "offset": 2 + }, + "src": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { + "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.memcpy.memcpy.LoopFrame": { + "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", + "members": { + "dst": { + "cairo_type": "felt*", + "offset": 0 + }, + "src": { + "cairo_type": "felt*", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.memcpy.memcpy.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.memcpy.memcpy.continue_copying": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 3 + }, + "pc": 16, + "value": "[cast(ap, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.memcpy.memcpy.len": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.memcpy.memcpy.len", + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.memcpy.memcpy.loop": { + "pc": 14, + "type": "label" + }, + "starkware.cairo.common.pow.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.pow.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.pow.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.registers.get_ap": { + "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.registers.get_fp_and_pc": { + "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.ALL_ONES": { + "type": "const", + "value": 340282366920938463463374607431768211455 + }, + "starkware.cairo.common.uint256.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.uint256.HALF_SHIFT": { + "type": "const", + "value": 18446744073709551616 + }, + "starkware.cairo.common.uint256.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.uint256.Uint256": { + "full_name": "starkware.cairo.common.uint256.Uint256", + "members": { + "high": { + "cairo_type": "felt", + "offset": 1 + }, + "low": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.assert_in_range": { + "destination": "starkware.cairo.common.math.assert_in_range", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_or": { + "destination": "starkware.cairo.common.bitwise.bitwise_or", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_xor": { + "destination": "starkware.cairo.common.bitwise.bitwise_xor", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.is_le": { + "destination": "starkware.cairo.common.math_cmp.is_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.pow": { + "destination": "starkware.cairo.common.pow.pow", + "type": "alias" + }, + "starkware.cairo.common.uint256.uint256_add": { + "decorators": [], + "pc": 266, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_add.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_add.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_add.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_add.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_add.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256, carry: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_add.SIZEOF_LOCALS": { + "type": "const", + "value": 4 + }, + "starkware.cairo.common.uint256.uint256_add.a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "full_name": "starkware.cairo.common.uint256.uint256_add.a", + "references": [ + { + "ap_tracking_data": { + "group": 20, + "offset": 0 + }, + "pc": 266, + "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "full_name": "starkware.cairo.common.uint256.uint256_add.b", + "references": [ + { + "ap_tracking_data": { + "group": 20, + "offset": 0 + }, + "pc": 266, + "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.carry_high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.uint256.uint256_add.carry_high", + "references": [ + { + "ap_tracking_data": { + "group": 20, + "offset": 4 + }, + "pc": 268, + "value": "[cast(fp + 3, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.carry_low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.uint256.uint256_add.carry_low", + "references": [ + { + "ap_tracking_data": { + "group": 20, + "offset": 4 + }, + "pc": 268, + "value": "[cast(fp + 2, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_check": { + "decorators": [], + "pc": 261, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_check.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_check.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_check.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_check.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_eq": { + "decorators": [], + "pc": 356, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_eq.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_eq.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_eq.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_eq.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_le": { + "decorators": [], + "pc": 305, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_le.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_le.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_le.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_lt": { + "decorators": [], + "pc": 288, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_lt.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_lt.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_lt.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_lt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_neg": { + "decorators": [], + "pc": 325, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_neg.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_neg.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_neg.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_neg.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_not": { + "decorators": [], + "pc": 317, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_not.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_not.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_not.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_not.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_not.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_not.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_sub": { + "decorators": [], + "pc": 340, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_sub.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_sub.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_sub.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_sub.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.storage.ADDR_BOUND": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719489 + }, + "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { + "type": "const", + "value": 256 + }, + "starkware.starknet.common.storage.assert_250_bit": { + "destination": "starkware.cairo.common.math.assert_250_bit", + "type": "alias" + }, + "starkware.starknet.common.storage.normalize_address": { + "decorators": [ + "known_ap_change" + ], + "pc": 131, + "type": "function" + }, + "starkware.starknet.common.storage.normalize_address.Args": { + "full_name": "starkware.starknet.common.storage.normalize_address.Args", + "members": { + "addr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { + "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.storage.normalize_address.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.storage.normalize_address.addr": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.addr", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 131, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.storage.normalize_address.is_250": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.is_250", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 2 + }, + "pc": 151, + "value": "[cast(ap + (-1), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.storage.normalize_address.is_small": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.is_small", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 1 + }, + "pc": 133, + "value": "[cast(ap + (-1), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { + "type": "const", + "value": 20853273475220472486191784820 + }, + "starkware.starknet.common.syscalls.CallContract": { + "full_name": "starkware.starknet.common.syscalls.CallContract", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.starknet.common.syscalls.CallContractRequest": { + "full_name": "starkware.starknet.common.syscalls.CallContractRequest", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 1 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.CallContractResponse": { + "full_name": "starkware.starknet.common.syscalls.CallContractResponse", + "members": { + "retdata": { + "cairo_type": "felt*", + "offset": 1 + }, + "retdata_size": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { + "type": "const", + "value": 21167594061783206823196716140 + }, + "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { + "type": "const", + "value": 23274015802972845247556842986379118667122 + }, + "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { + "type": "const", + "value": 75202468540281 + }, + "starkware.starknet.common.syscalls.Deploy": { + "full_name": "starkware.starknet.common.syscalls.Deploy", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", + "offset": 6 + } + }, + "size": 9, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DeployRequest": { + "full_name": "starkware.starknet.common.syscalls.DeployRequest", + "members": { + "class_hash": { + "cairo_type": "felt", + "offset": 1 + }, + "constructor_calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "constructor_calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "contract_address_salt": { + "cairo_type": "felt", + "offset": 2 + }, + "deploy_from_zero": { + "cairo_type": "felt", + "offset": 5 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DeployResponse": { + "full_name": "starkware.starknet.common.syscalls.DeployResponse", + "members": { + "constructor_retdata": { + "cairo_type": "felt*", + "offset": 2 + }, + "constructor_retdata_size": { + "cairo_type": "felt", + "offset": 1 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DictAccess": { + "destination": "starkware.cairo.common.dict_access.DictAccess", + "type": "alias" + }, + "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { + "type": "const", + "value": 1280709301550335749748 + }, + "starkware.starknet.common.syscalls.EmitEvent": { + "full_name": "starkware.starknet.common.syscalls.EmitEvent", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 4 + }, + "data_len": { + "cairo_type": "felt", + "offset": 3 + }, + "keys": { + "cairo_type": "felt*", + "offset": 2 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { + "type": "const", + "value": 1448089106835523001438702345020786 + }, + "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { + "type": "const", + "value": 24294903732626645868215235778792757751152 + }, + "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { + "type": "const", + "value": 94901967781393078444254803017658102643 + }, + "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { + "type": "const", + "value": 6219495360805491471215297013070624192820083 + }, + "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { + "type": "const", + "value": 1592190833581991703053805829594610833820054387 + }, + "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { + "type": "const", + "value": 1317029390204112103023 + }, + "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { + "type": "const", + "value": 1448089128652340074717162277007973 + }, + "starkware.starknet.common.syscalls.GetBlockNumber": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockNumberRequest": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockNumberResponse": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", + "members": { + "block_number": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestamp": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", + "members": { + "block_timestamp": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddress": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", + "members": { + "caller_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddress": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", + "members": { + "contract_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddress": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", + "members": { + "sequencer_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfo": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfo", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfoRequest": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfoResponse": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", + "members": { + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignature": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignature", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignatureRequest": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignatureResponse": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", + "members": { + "signature": { + "cairo_type": "felt*", + "offset": 1 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { + "type": "const", + "value": 436233452754198157705746250789557519228244616562 + }, + "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { + "type": "const", + "value": 92376026794327011772951660 + }, + "starkware.starknet.common.syscalls.LibraryCall": { + "full_name": "starkware.starknet.common.syscalls.LibraryCall", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.starknet.common.syscalls.LibraryCallRequest": { + "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 1 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { + "type": "const", + "value": 433017908768303439907196859243777073 + }, + "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { + "type": "const", + "value": 100890693370601760042082660 + }, + "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { + "type": "const", + "value": 25828017502874050592466629733 + }, + "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { + "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", + "members": { + "payload_ptr": { + "cairo_type": "felt*", + "offset": 3 + }, + "payload_size": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + }, + "to_address": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageRead": { + "full_name": "starkware.starknet.common.syscalls.StorageRead", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageReadRequest": { + "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", + "members": { + "address": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageReadResponse": { + "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageWrite": { + "full_name": "starkware.starknet.common.syscalls.StorageWrite", + "members": { + "address": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.TxInfo": { + "full_name": "starkware.starknet.common.syscalls.TxInfo", + "members": { + "account_contract_address": { + "cairo_type": "felt", + "offset": 1 + }, + "chain_id": { + "cairo_type": "felt", + "offset": 6 + }, + "max_fee": { + "cairo_type": "felt", + "offset": 2 + }, + "nonce": { + "cairo_type": "felt", + "offset": 7 + }, + "signature": { + "cairo_type": "felt*", + "offset": 4 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 3 + }, + "transaction_hash": { + "cairo_type": "felt", + "offset": 5 + }, + "version": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.starknet.common.syscalls.call_contract": { + "decorators": [], + "pc": 171, + "type": "function" + }, + "starkware.starknet.common.syscalls.call_contract.Args": { + "full_name": "starkware.starknet.common.syscalls.call_contract.Args", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 3 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 2 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 0 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.call_contract.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.call_contract.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.call_contract.Return": { + "cairo_type": "(retdata_size: felt, retdata: felt*)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.call_contract.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.call_contract.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.call_contract.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 171, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 1 + }, + "pc": 178, + "value": "cast([fp + (-7)] + 7, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.emit_event": { + "decorators": [], + "pc": 213, + "type": "function" + }, + "starkware.starknet.common.syscalls.emit_event.Args": { + "full_name": "starkware.starknet.common.syscalls.emit_event.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 3 + }, + "data_len": { + "cairo_type": "felt", + "offset": 2 + }, + "keys": { + "cairo_type": "felt*", + "offset": 1 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 16, + "offset": 0 + }, + "pc": 213, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 16, + "offset": 1 + }, + "pc": 220, + "value": "cast([fp + (-7)] + 5, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_caller_address": { + "decorators": [], + "pc": 183, + "type": "function" + }, + "starkware.starknet.common.syscalls.get_caller_address.Args": { + "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_caller_address.Return": { + "cairo_type": "(caller_address: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 183, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 1 + }, + "pc": 186, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_contract_address": { + "decorators": [], + "pc": 190, + "type": "function" + }, + "starkware.starknet.common.syscalls.get_contract_address.Args": { + "full_name": "starkware.starknet.common.syscalls.get_contract_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_contract_address.Return": { + "cairo_type": "(contract_address: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.get_contract_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 190, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 13, + "offset": 1 + }, + "pc": 193, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_read": { + "decorators": [], + "pc": 197, + "type": "function" + }, + "starkware.starknet.common.syscalls.storage_read.Args": { + "full_name": "starkware.starknet.common.syscalls.storage_read.Args", + "members": { + "address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_read.Return": { + "cairo_type": "(value: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 1 + }, + "pc": 201, + "value": "cast([fp + (-4)] + 3, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_write": { + "decorators": [], + "pc": 205, + "type": "function" + }, + "starkware.starknet.common.syscalls.storage_write.Args": { + "full_name": "starkware.starknet.common.syscalls.storage_write.Args", + "members": { + "address": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 205, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 1 + }, + "pc": 210, + "value": "cast([fp + (-5)] + 3, felt*)" + } + ], + "type": "reference" + } + }, + "main_scope": "__main__", + "prime": "0x800000000000011000000000000000000000000000000000000000000000001", + "reference_manager": { + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 2, + "offset": 3 + }, + "pc": 16, + "value": "[cast(ap, felt*)]" + }, + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 24, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 29, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 29, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 35, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 44, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 8, + "offset": 0 + }, + "pc": 57, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 86, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 131, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 1 + }, + "pc": 133, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 2 + }, + "pc": 151, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 171, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 183, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 13, + "offset": 0 + }, + "pc": 190, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 14, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 205, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 16, + "offset": 0 + }, + "pc": 213, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 17, + "offset": 0 + }, + "pc": 223, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 0 + }, + "pc": 266, + "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 0 + }, + "pc": 266, + "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 4 + }, + "pc": 268, + "value": "[cast(fp + 2, felt*)]" + }, + { + "ap_tracking_data": { + "group": 20, + "offset": 4 + }, + "pc": 268, + "value": "[cast(fp + 3, felt*)]" + } + ] + } + } +} diff --git a/contracts/tasks/ex5/ERC721.cairo b/contracts/tasks/ex5/ERC721.cairo new file mode 100644 index 0000000..16f45cd --- /dev/null +++ b/contracts/tasks/ex5/ERC721.cairo @@ -0,0 +1,345 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts for Cairo v0.4.0 (token/erc721/presets/ERC721MintableBurnable.cairo) +// source: https://github.com/OpenZeppelin/cairo-contracts/blob/release-v0.4.0/src/openzeppelin/token/erc721/presets/ERC721MintableBurnable.cairo + +%lang starknet + +from starkware.cairo.common.cairo_builtins import HashBuiltin +from starkware.cairo.common.math import assert_not_zero, split_felt, assert_nn +from starkware.cairo.common.uint256 import (Uint256, uint256_add, uint256_check) +from starkware.starknet.common.syscalls import get_caller_address, get_contract_address + +from openzeppelin.access.ownable.library import Ownable +from openzeppelin.introspection.erc165.library import ERC165 +from openzeppelin.token.erc721.library import ERC721 +from openzeppelin.token.erc721.enumerable.library import ERC721Enumerable +from openzeppelin.token.erc20.IERC20 import IERC20 + +// +// Structs +// + +struct Animal { + sex: felt, + legs: felt, + wings: felt, +} + +// +// Storage vars +// + +@storage_var +func last_token_id() -> (token_id: Uint256) { +} + +@storage_var +func animals(token_id : Uint256) -> (animal : Animal) { +} + +@storage_var +func _is_breeder(account: felt) -> (is_approved: felt) { +} + +@storage_var +func _dummy_token_address() -> (dummy_token_address: felt) { +} + +// +// Constructor +// + +@constructor +func constructor{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + name: felt, symbol: felt, owner: felt, dummy_token_address: felt +) { + ERC721.initializer(name, symbol); + Ownable.initializer(owner); + token_id_initializer(); + _dummy_token_address.write(dummy_token_address); + return (); +} + +// +// Getters +// + +@view +func supportsInterface{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + interfaceId: felt +) -> (success: felt) { + return ERC165.supports_interface(interfaceId); +} + +@view +func name{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) { + return ERC721.name(); +} + +@view +func symbol{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) { + return ERC721.symbol(); +} + +@view +func balanceOf{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt) -> ( + balance: Uint256 +) { + return ERC721.balance_of(owner); +} + +@view +func ownerOf{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(tokenId: Uint256) -> ( + owner: felt +) { + return ERC721.owner_of(tokenId); +} + +@view +func getApproved{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + tokenId: Uint256 +) -> (approved: felt) { + return ERC721.get_approved(tokenId); +} + +@view +func isApprovedForAll{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + owner: felt, operator: felt +) -> (isApproved: felt) { + let (isApproved: felt) = ERC721.is_approved_for_all(owner, operator); + return (isApproved=isApproved); +} + +@view +func tokenURI{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + tokenId: Uint256 +) -> (tokenURI: felt) { + let (tokenURI: felt) = ERC721.token_uri(tokenId); + return (tokenURI=tokenURI); +} + +@view +func owner{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) { + return Ownable.owner(); +} + +@view +func get_animal_characteristics{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + token_id: Uint256 +) -> (sex: felt, legs: felt, wings: felt) { + with_attr error_message("ERC721: Invalid Input Type. token_id must be Uint256.") { + uint256_check(token_id); + } + + let animal = animals.read(token_id); + let animal_ptr = cast(&animal, Animal*); + + return (sex=animal_ptr.sex, legs=animal_ptr.legs, wings=animal_ptr.wings); +} + +@view +func is_breeder { syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + account: felt +) -> (is_approved: felt) { + with_attr error_message("ERC721: Invalid Input Value. Zero address is not a breeder.") { + assert_not_zero(account); + } + + let (is_approved: felt) = _is_breeder.read(account); + return (is_approved=is_approved); +} + +@view +func token_of_owner_by_index {syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + account: felt, index: felt +) -> (token_id: Uint256) { + alloc_locals; + with_attr error_mesage("ERC721: Invalid Input Value. Account must be a valid address. Zero address is not supported as a token holder.") { + assert_not_zero(account); + } + with_attr error_mesage("ERC721: Invalid Input Value. index must be a positive integer.") { + assert_nn(index); + } + + let (index_uint256) = felt_to_uint256(index); + let (token_id) = ERC721Enumerable.token_of_owner_by_index(owner=account, index=index_uint256); + + return (token_id=token_id); +} + +@view +func registration_price{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( +) -> (price: Uint256) { + let one_as_uint256 = Uint256(1, 0); + return (price=one_as_uint256); +} + +// +// Externals +// + +@external +func approve{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + to: felt, tokenId: Uint256 +) { + ERC721.approve(to, tokenId); + return (); +} + +@external +func setApprovalForAll{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + operator: felt, approved: felt +) { + ERC721.set_approval_for_all(operator, approved); + return (); +} + +@external +func transferFrom{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + from_: felt, to: felt, tokenId: Uint256 +) { + ERC721Enumerable.transfer_from(from_, to, tokenId); + return (); +} + +@external +func safeTransferFrom{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + from_: felt, to: felt, tokenId: Uint256, data_len: felt, data: felt* +) { + ERC721Enumerable.safe_transfer_from(from_, to, tokenId, data_len, data); + return (); +} + +@external +func mint{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + to: felt, tokenId: Uint256 +) { + Ownable.assert_only_owner(); + ERC721Enumerable._mint(to, tokenId); + return (); +} + +@external +func burn{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}(tokenId: Uint256) { + ERC721.assert_only_token_owner(tokenId); + ERC721Enumerable._burn(tokenId); + return (); +} + +@external +func setTokenURI{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + tokenId: Uint256, tokenURI: felt +) { + Ownable.assert_only_owner(); + ERC721._set_token_uri(tokenId, tokenURI); + return (); +} + +@external +func transferOwnership{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( + newOwner: felt +) { + Ownable.transfer_ownership(newOwner); + return (); +} + +@external +func renounceOwnership{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() { + Ownable.renounce_ownership(); + return (); +} + +@external +func declare_animal{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + sex: felt, legs: felt, wings: felt +) -> (token_id: Uint256) { + alloc_locals; + assert_only_breeder(); + + // Increment token_id by 1 + let current_token_id: Uint256 = last_token_id.read(); + let one_as_uint256 = Uint256(1, 0); + let (local new_token_id, _) = uint256_add(current_token_id, one_as_uint256); + + let (sender_address) = get_caller_address(); + + // Mint NFT and update token_id + ERC721Enumerable._mint(sender_address, new_token_id); + animals.write(new_token_id, Animal(sex=sex, legs=legs, wings=wings)); + + // Update and return new token id + last_token_id.write(new_token_id); + + return (token_id=new_token_id); +} + +@external +func register_me_as_breeder{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr} ( +) -> (is_added: felt) { + let (sender_address) = get_caller_address(); + let (erc721_address) = get_contract_address(); + let (price) = registration_price(); + let (dummy_token_address) = _dummy_token_address.read(); + + let (success) = IERC20.transferFrom( + contract_address=dummy_token_address, + sender=sender_address, + recipient=erc721_address, + amount=price, + ); + + with_attr error_mesage("ERC721: Internal Error: Unable to charge dummy tokens.") { + assert success=1; + } + + _is_breeder.write(account=sender_address, value=1); + return (is_added=1); +} + +@external +func unregister_me_as_breeder{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}( +) -> (is_added: felt) { + let (sender_address) = get_caller_address(); + _is_breeder.write(account=sender_address, value=0); + + return (is_added=0); +} + +@external +func declare_dead_animal{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + token_id: Uint256 +) { + ERC721.assert_only_token_owner(token_id); + ERC721Enumerable._burn(token_id); + return (); +} + +// +// Internals +// + +func token_id_initializer{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}() { + let zero_as_uint256: Uint256 = Uint256(0, 0); + last_token_id.write(zero_as_uint256); + return (); +} + +func assert_only_breeder{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}() { + let (sender_address) = get_caller_address(); + let (is_true) = _is_breeder.read(sender_address); + + with_attr error_message("Breeder Required. Caller is not a registered breeder.") { + assert is_true = 1; + } + + return (); +} + +func felt_to_uint256{pedersen_ptr: HashBuiltin*, syscall_ptr: felt*, range_check_ptr}( + felt_value: felt +) -> (uint256_value: Uint256) { + let (high, low) = split_felt(felt_value); + let uint256_value: Uint256 = Uint256(low, high); + + return (uint256_value=uint256_value); +} \ No newline at end of file diff --git a/deploy/tasks/ex5/ERC721.md b/deploy/tasks/ex5/ERC721.md new file mode 100644 index 0000000..4bb4de2 --- /dev/null +++ b/deploy/tasks/ex5/ERC721.md @@ -0,0 +1,107 @@ +# Exercise 5 + +File: [ERC721.cairo](/contracts/tasks/ex5/ERC721.cairo) + + +## Compile contract + +Activate virtual Environment + +`source ~/cairo_venv/bin/activate` + +Compile contract + +`starknet-compile contracts/tasks/ex5/ERC721.cairo --output build/ex5/ERC721.json --abi abis/ex5/ERC721.json` + +--- + +## Parameters in Felt format + +Parameters required by contructor: (4) +- Name: "Animals Exercise 5"
+Felt: *5699869782801620262369963552602870325256245* + +- Symbol: "AE5"
+Felt: *4277557* + +- Owner: "0x05533254534F94C40df38194A07ee91966E86CA7F11864506b673AFd9b744166"
+Felt: *2408559910019455391047062095320533792618761445676345921329696921733161042278* + +- Dummy_token_address: "0x52ec5de9a76623f18e38c400f763013ff0b3ff8491431d7dc0391b3478bf1f3"
+Felt: *2344204853301408646930413631119760318685682522206636282740794249760712946163* + +--- + +## Deploy command used + +`starknet deploy --contract build/ex5/ERC721.json --network alpha-goerli --inputs 5699869782801620262369963552602870325256245 4277557 2408559910019455391047062095320533792618761445676345921329696921733161042278 2344204853301408646930413631119760318685682522206636282740794249760712946163 --no_wallet` + +Response:
+- Deploy transaction was sent. +- Contract address: [0x039f29ce5b84afe31484d53b50cbd8a4eeeff883444319a917b092b0848d4617](https://goerli.voyager.online/contract/0x039f29ce5b84afe31484d53b50cbd8a4eeeff883444319a917b092b0848d4617) +- Transaction hash: 0x233e507dd797b6251e1768231bdd6ce709efcc9a47e68854d4aa5fd138bcf89 + +--- + +## Steps in Voyager + +### Addresses + +- My wallet 0x05533254534F94C40df38194A07ee91966E86CA7F11864506b673AFd9b744166 +- My contract [0x039f29ce5b84afe31484d53b50cbd8a4eeeff883444319a917b092b0848d4617](https://goerli.voyager.online/contract/0x039f29ce5b84afe31484d53b50cbd8a4eeeff883444319a917b092b0848d4617) +- Dummy ERC20 Token [0x52ec5de9a76623f18e38c400f763013ff0b3ff8491431d7dc0391b3478bf1f3](https://goerli.voyager.online/contract/0x52ec5de9a76623f18e38c400f763013ff0b3ff8491431d7dc0391b3478bf1f3) +- Evaluator [0x2d15a378e131b0a9dc323d0eae882bfe8ecc59de0eb206266ca236f823e0a15](https://goerli.voyager.online/contract/0x2d15a378e131b0a9dc323d0eae882bfe8ecc59de0eb206266ca236f823e0a15) +- Points Counter [0xa0b943234522049dcdbd36cf9d5e12a46be405d6b8757df2329e6536b40707](https://goerli.voyager.online/contract/0xa0b943234522049dcdbd36cf9d5e12a46be405d6b8757df2329e6536b40707) + + +### Get some Dummy ERC20 Token + +Go to Dummy ERC20 token's page +- Write Contract +- 1.. faucet + - [Transact](https://goerli.voyager.online/tx/0x19e3c741443537171453a66ce5868aaed3cd6e7016b740eccc5988a77918faf) +- Read Contract +- 5.. balanceOf + - account: `My wallet` + - Query (should see 100000000000000000000. It's 100 tokens, because it's using 18 decimal places). + + +### Check with evaluator we have Dummy ERC20 Token + +Go to Evaluator's page +- Write Contract +- 7.. ex5a_i_have_dtk + - [Transact](https://goerli.voyager.online/tx/0x6d2901d5d02e22d46dad9194627dd4f9e41fe9c1d50b5dd3f27263400c54098) + - We receive 2 points + + +### Submit contract and check exercise + +Go to Evaluator's page +- Write Contract +- 11.. submit_exercise + - erc721_address: `My contract address` + - [Transact](https://goerli.voyager.online/tx/0x2d2c02b993bedc97bca809a35bed0c67379ea55d8f9f94c4af885952598ce1d) +- 8.. ex5b_register_breeder + - [Transact](https://goerli.voyager.online/tx/0x3de3177c2cbfd15bda22f4d2e6c5c2d55b5215c084bd1297afdb6fb6e2f6b3c) + - We receive 2 points + + +### Check points + +Finally go to Point Counter's page +- Read Contract +- 6.. balanceOf +- account: `My wallet` +- We should have 16 points (We won 4 points) + +> To see in our wallet the token ERC721-101, we need to Add Token, contract address 0x00a0b943234522049dcdbd36cf9d5e12a46be405d6b8757df2329e6536b40707 + +> To see in our wallet the Dummy ERC20 Token we need to Add Token, contract address +0x52ec5de9a76623f18e38c400f763013ff0b3ff8491431d7dc0391b3478bf1f3 + +--- + +## Tutorial followed + +[https://david-barreto.com/starknet-erc721-workshop-exercise-5/](https://david-barreto.com/starknet-erc721-workshop-exercise-5/) \ No newline at end of file