Created
          June 5, 2025 13:41 
        
      - 
      
 - 
        
Save Dustin4444/3de8ebea2eb94293fed27aa9290d44a7 to your computer and use it in GitHub Desktop.  
    Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=NaN&gist=
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @dev Standard ERC-20 Errors | |
| * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. | |
| */ | |
| interface IERC20Errors { | |
| /** | |
| * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| * @param balance Current balance for the interacting account. | |
| * @param needed Minimum amount required to perform a transfer. | |
| */ | |
| error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); | |
| /** | |
| * @dev Indicates a failure with the token `sender`. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| */ | |
| error ERC20InvalidSender(address sender); | |
| /** | |
| * @dev Indicates a failure with the token `receiver`. Used in transfers. | |
| * @param receiver Address to which tokens are being transferred. | |
| */ | |
| error ERC20InvalidReceiver(address receiver); | |
| /** | |
| * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. | |
| * @param spender Address that may be allowed to operate on tokens without being their owner. | |
| * @param allowance Amount of tokens a `spender` is allowed to operate with. | |
| * @param needed Minimum amount required to perform a transfer. | |
| */ | |
| error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); | |
| /** | |
| * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
| * @param approver Address initiating an approval operation. | |
| */ | |
| error ERC20InvalidApprover(address approver); | |
| /** | |
| * @dev Indicates a failure with the `spender` to be approved. Used in approvals. | |
| * @param spender Address that may be allowed to operate on tokens without being their owner. | |
| */ | |
| error ERC20InvalidSpender(address spender); | |
| } | |
| /** | |
| * @dev Standard ERC-721 Errors | |
| * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. | |
| */ | |
| interface IERC721Errors { | |
| /** | |
| * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. | |
| * Used in balance queries. | |
| * @param owner Address of the current owner of a token. | |
| */ | |
| error ERC721InvalidOwner(address owner); | |
| /** | |
| * @dev Indicates a `tokenId` whose `owner` is the zero address. | |
| * @param tokenId Identifier number of a token. | |
| */ | |
| error ERC721NonexistentToken(uint256 tokenId); | |
| /** | |
| * @dev Indicates an error related to the ownership over a particular token. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| * @param tokenId Identifier number of a token. | |
| * @param owner Address of the current owner of a token. | |
| */ | |
| error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); | |
| /** | |
| * @dev Indicates a failure with the token `sender`. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| */ | |
| error ERC721InvalidSender(address sender); | |
| /** | |
| * @dev Indicates a failure with the token `receiver`. Used in transfers. | |
| * @param receiver Address to which tokens are being transferred. | |
| */ | |
| error ERC721InvalidReceiver(address receiver); | |
| /** | |
| * @dev Indicates a failure with the `operator`’s approval. Used in transfers. | |
| * @param operator Address that may be allowed to operate on tokens without being their owner. | |
| * @param tokenId Identifier number of a token. | |
| */ | |
| error ERC721InsufficientApproval(address operator, uint256 tokenId); | |
| /** | |
| * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
| * @param approver Address initiating an approval operation. | |
| */ | |
| error ERC721InvalidApprover(address approver); | |
| /** | |
| * @dev Indicates a failure with the `operator` to be approved. Used in approvals. | |
| * @param operator Address that may be allowed to operate on tokens without being their owner. | |
| */ | |
| error ERC721InvalidOperator(address operator); | |
| } | |
| /** | |
| * @dev Standard ERC-1155 Errors | |
| * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. | |
| */ | |
| interface IERC1155Errors { | |
| /** | |
| * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| * @param balance Current balance for the interacting account. | |
| * @param needed Minimum amount required to perform a transfer. | |
| * @param tokenId Identifier number of a token. | |
| */ | |
| error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); | |
| /** | |
| * @dev Indicates a failure with the token `sender`. Used in transfers. | |
| * @param sender Address whose tokens are being transferred. | |
| */ | |
| error ERC1155InvalidSender(address sender); | |
| /** | |
| * @dev Indicates a failure with the token `receiver`. Used in transfers. | |
| * @param receiver Address to which tokens are being transferred. | |
| */ | |
| error ERC1155InvalidReceiver(address receiver); | |
| /** | |
| * @dev Indicates a failure with the `operator`’s approval. Used in transfers. | |
| * @param operator Address that may be allowed to operate on tokens without being their owner. | |
| * @param owner Address of the current owner of a token. | |
| */ | |
| error ERC1155MissingApprovalForAll(address operator, address owner); | |
| /** | |
| * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
| * @param approver Address initiating an approval operation. | |
| */ | |
| error ERC1155InvalidApprover(address approver); | |
| /** | |
| * @dev Indicates a failure with the `operator` to be approved. Used in approvals. | |
| * @param operator Address that may be allowed to operate on tokens without being their owner. | |
| */ | |
| error ERC1155InvalidOperator(address operator); | |
| /** | |
| * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. | |
| * Used in batch transfers. | |
| * @param idsLength Length of the array of token identifiers | |
| * @param valuesLength Length of the array of token amounts | |
| */ | |
| error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol) | |
| pragma solidity ^0.8.20; | |
| import {IERC721} from "./IERC721.sol"; | |
| import {IERC721Metadata} from "./extensions/IERC721Metadata.sol"; | |
| import {ERC721Utils} from "./utils/ERC721Utils.sol"; | |
| import {Context} from "../../utils/Context.sol"; | |
| import {Strings} from "../../utils/Strings.sol"; | |
| import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; | |
| import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol"; | |
| /** | |
| * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including | |
| * the Metadata extension, but not including the Enumerable extension, which is available separately as | |
| * {ERC721Enumerable}. | |
| */ | |
| abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { | |
| using Strings for uint256; | |
| // Token name | |
| string private _name; | |
| // Token symbol | |
| string private _symbol; | |
| mapping(uint256 tokenId => address) private _owners; | |
| mapping(address owner => uint256) private _balances; | |
| mapping(uint256 tokenId => address) private _tokenApprovals; | |
| mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; | |
| /** | |
| * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. | |
| */ | |
| constructor(string memory name_, string memory symbol_) { | |
| _name = name_; | |
| _symbol = symbol_; | |
| } | |
| /** | |
| * @dev See {IERC165-supportsInterface}. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { | |
| return | |
| interfaceId == type(IERC721).interfaceId || | |
| interfaceId == type(IERC721Metadata).interfaceId || | |
| super.supportsInterface(interfaceId); | |
| } | |
| /** | |
| * @dev See {IERC721-balanceOf}. | |
| */ | |
| function balanceOf(address owner) public view virtual returns (uint256) { | |
| if (owner == address(0)) { | |
| revert ERC721InvalidOwner(address(0)); | |
| } | |
| return _balances[owner]; | |
| } | |
| /** | |
| * @dev See {IERC721-ownerOf}. | |
| */ | |
| function ownerOf(uint256 tokenId) public view virtual returns (address) { | |
| return _requireOwned(tokenId); | |
| } | |
| /** | |
| * @dev See {IERC721Metadata-name}. | |
| */ | |
| function name() public view virtual returns (string memory) { | |
| return _name; | |
| } | |
| /** | |
| * @dev See {IERC721Metadata-symbol}. | |
| */ | |
| function symbol() public view virtual returns (string memory) { | |
| return _symbol; | |
| } | |
| /** | |
| * @dev See {IERC721Metadata-tokenURI}. | |
| */ | |
| function tokenURI(uint256 tokenId) public view virtual returns (string memory) { | |
| _requireOwned(tokenId); | |
| string memory baseURI = _baseURI(); | |
| return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; | |
| } | |
| /** | |
| * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each | |
| * token will be the concatenation of the `baseURI` and the `tokenId`. Empty | |
| * by default, can be overridden in child contracts. | |
| */ | |
| function _baseURI() internal view virtual returns (string memory) { | |
| return ""; | |
| } | |
| /** | |
| * @dev See {IERC721-approve}. | |
| */ | |
| function approve(address to, uint256 tokenId) public virtual { | |
| _approve(to, tokenId, _msgSender()); | |
| } | |
| /** | |
| * @dev See {IERC721-getApproved}. | |
| */ | |
| function getApproved(uint256 tokenId) public view virtual returns (address) { | |
| _requireOwned(tokenId); | |
| return _getApproved(tokenId); | |
| } | |
| /** | |
| * @dev See {IERC721-setApprovalForAll}. | |
| */ | |
| function setApprovalForAll(address operator, bool approved) public virtual { | |
| _setApprovalForAll(_msgSender(), operator, approved); | |
| } | |
| /** | |
| * @dev See {IERC721-isApprovedForAll}. | |
| */ | |
| function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { | |
| return _operatorApprovals[owner][operator]; | |
| } | |
| /** | |
| * @dev See {IERC721-transferFrom}. | |
| */ | |
| function transferFrom(address from, address to, uint256 tokenId) public virtual { | |
| if (to == address(0)) { | |
| revert ERC721InvalidReceiver(address(0)); | |
| } | |
| // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists | |
| // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. | |
| address previousOwner = _update(to, tokenId, _msgSender()); | |
| if (previousOwner != from) { | |
| revert ERC721IncorrectOwner(from, tokenId, previousOwner); | |
| } | |
| } | |
| /** | |
| * @dev See {IERC721-safeTransferFrom}. | |
| */ | |
| function safeTransferFrom(address from, address to, uint256 tokenId) public { | |
| safeTransferFrom(from, to, tokenId, ""); | |
| } | |
| /** | |
| * @dev See {IERC721-safeTransferFrom}. | |
| */ | |
| function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { | |
| transferFrom(from, to, tokenId); | |
| ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data); | |
| } | |
| /** | |
| * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist | |
| * | |
| * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the | |
| * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances | |
| * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by | |
| * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. | |
| */ | |
| function _ownerOf(uint256 tokenId) internal view virtual returns (address) { | |
| return _owners[tokenId]; | |
| } | |
| /** | |
| * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. | |
| */ | |
| function _getApproved(uint256 tokenId) internal view virtual returns (address) { | |
| return _tokenApprovals[tokenId]; | |
| } | |
| /** | |
| * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in | |
| * particular (ignoring whether it is owned by `owner`). | |
| * | |
| * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this | |
| * assumption. | |
| */ | |
| function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { | |
| return | |
| spender != address(0) && | |
| (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); | |
| } | |
| /** | |
| * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. | |
| * Reverts if: | |
| * - `spender` does not have approval from `owner` for `tokenId`. | |
| * - `spender` does not have approval to manage all of `owner`'s assets. | |
| * | |
| * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this | |
| * assumption. | |
| */ | |
| function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { | |
| if (!_isAuthorized(owner, spender, tokenId)) { | |
| if (owner == address(0)) { | |
| revert ERC721NonexistentToken(tokenId); | |
| } else { | |
| revert ERC721InsufficientApproval(spender, tokenId); | |
| } | |
| } | |
| } | |
| /** | |
| * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. | |
| * | |
| * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that | |
| * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. | |
| * | |
| * WARNING: Increasing an account's balance using this function tends to be paired with an override of the | |
| * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership | |
| * remain consistent with one another. | |
| */ | |
| function _increaseBalance(address account, uint128 value) internal virtual { | |
| unchecked { | |
| _balances[account] += value; | |
| } | |
| } | |
| /** | |
| * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner | |
| * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. | |
| * | |
| * The `auth` argument is optional. If the value passed is non 0, then this function will check that | |
| * `auth` is either the owner of the token, or approved to operate on the token (by the owner). | |
| * | |
| * Emits a {Transfer} event. | |
| * | |
| * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. | |
| */ | |
| function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { | |
| address from = _ownerOf(tokenId); | |
| // Perform (optional) operator check | |
| if (auth != address(0)) { | |
| _checkAuthorized(from, auth, tokenId); | |
| } | |
| // Execute the update | |
| if (from != address(0)) { | |
| // Clear approval. No need to re-authorize or emit the Approval event | |
| _approve(address(0), tokenId, address(0), false); | |
| unchecked { | |
| _balances[from] -= 1; | |
| } | |
| } | |
| if (to != address(0)) { | |
| unchecked { | |
| _balances[to] += 1; | |
| } | |
| } | |
| _owners[tokenId] = to; | |
| emit Transfer(from, to, tokenId); | |
| return from; | |
| } | |
| /** | |
| * @dev Mints `tokenId` and transfers it to `to`. | |
| * | |
| * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` must not exist. | |
| * - `to` cannot be the zero address. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function _mint(address to, uint256 tokenId) internal { | |
| if (to == address(0)) { | |
| revert ERC721InvalidReceiver(address(0)); | |
| } | |
| address previousOwner = _update(to, tokenId, address(0)); | |
| if (previousOwner != address(0)) { | |
| revert ERC721InvalidSender(address(0)); | |
| } | |
| } | |
| /** | |
| * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` must not exist. | |
| * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function _safeMint(address to, uint256 tokenId) internal { | |
| _safeMint(to, tokenId, ""); | |
| } | |
| /** | |
| * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is | |
| * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. | |
| */ | |
| function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { | |
| _mint(to, tokenId); | |
| ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data); | |
| } | |
| /** | |
| * @dev Destroys `tokenId`. | |
| * The approval is cleared when the token is burned. | |
| * This is an internal function that does not check if the sender is authorized to operate on the token. | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` must exist. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function _burn(uint256 tokenId) internal { | |
| address previousOwner = _update(address(0), tokenId, address(0)); | |
| if (previousOwner == address(0)) { | |
| revert ERC721NonexistentToken(tokenId); | |
| } | |
| } | |
| /** | |
| * @dev Transfers `tokenId` from `from` to `to`. | |
| * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. | |
| * | |
| * Requirements: | |
| * | |
| * - `to` cannot be the zero address. | |
| * - `tokenId` token must be owned by `from`. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function _transfer(address from, address to, uint256 tokenId) internal { | |
| if (to == address(0)) { | |
| revert ERC721InvalidReceiver(address(0)); | |
| } | |
| address previousOwner = _update(to, tokenId, address(0)); | |
| if (previousOwner == address(0)) { | |
| revert ERC721NonexistentToken(tokenId); | |
| } else if (previousOwner != from) { | |
| revert ERC721IncorrectOwner(from, tokenId, previousOwner); | |
| } | |
| } | |
| /** | |
| * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients | |
| * are aware of the ERC-721 standard to prevent tokens from being forever locked. | |
| * | |
| * `data` is additional data, it has no specified format and it is sent in call to `to`. | |
| * | |
| * This internal function is like {safeTransferFrom} in the sense that it invokes | |
| * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. | |
| * implement alternative mechanisms to perform token transfer, such as signature-based. | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` token must exist and be owned by `from`. | |
| * - `to` cannot be the zero address. | |
| * - `from` cannot be the zero address. | |
| * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function _safeTransfer(address from, address to, uint256 tokenId) internal { | |
| _safeTransfer(from, to, tokenId, ""); | |
| } | |
| /** | |
| * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is | |
| * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. | |
| */ | |
| function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { | |
| _transfer(from, to, tokenId); | |
| ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data); | |
| } | |
| /** | |
| * @dev Approve `to` to operate on `tokenId` | |
| * | |
| * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is | |
| * either the owner of the token, or approved to operate on all tokens held by this owner. | |
| * | |
| * Emits an {Approval} event. | |
| * | |
| * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. | |
| */ | |
| function _approve(address to, uint256 tokenId, address auth) internal { | |
| _approve(to, tokenId, auth, true); | |
| } | |
| /** | |
| * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not | |
| * emitted in the context of transfers. | |
| */ | |
| function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { | |
| // Avoid reading the owner unless necessary | |
| if (emitEvent || auth != address(0)) { | |
| address owner = _requireOwned(tokenId); | |
| // We do not use _isAuthorized because single-token approvals should not be able to call approve | |
| if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { | |
| revert ERC721InvalidApprover(auth); | |
| } | |
| if (emitEvent) { | |
| emit Approval(owner, to, tokenId); | |
| } | |
| } | |
| _tokenApprovals[tokenId] = to; | |
| } | |
| /** | |
| * @dev Approve `operator` to operate on all of `owner` tokens | |
| * | |
| * Requirements: | |
| * - operator can't be the address zero. | |
| * | |
| * Emits an {ApprovalForAll} event. | |
| */ | |
| function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { | |
| if (operator == address(0)) { | |
| revert ERC721InvalidOperator(operator); | |
| } | |
| _operatorApprovals[owner][operator] = approved; | |
| emit ApprovalForAll(owner, operator, approved); | |
| } | |
| /** | |
| * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). | |
| * Returns the owner. | |
| * | |
| * Overrides to ownership logic should be done to {_ownerOf}. | |
| */ | |
| function _requireOwned(uint256 tokenId) internal view returns (address) { | |
| address owner = _ownerOf(tokenId); | |
| if (owner == address(0)) { | |
| revert ERC721NonexistentToken(tokenId); | |
| } | |
| return owner; | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) | |
| pragma solidity ^0.8.20; | |
| import {IERC721} from "../IERC721.sol"; | |
| /** | |
| * @title ERC-721 Non-Fungible Token Standard, optional metadata extension | |
| * @dev See https://eips.ethereum.org/EIPS/eip-721 | |
| */ | |
| interface IERC721Metadata is IERC721 { | |
| /** | |
| * @dev Returns the token collection name. | |
| */ | |
| function name() external view returns (string memory); | |
| /** | |
| * @dev Returns the token collection symbol. | |
| */ | |
| function symbol() external view returns (string memory); | |
| /** | |
| * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. | |
| */ | |
| function tokenURI(uint256 tokenId) external view returns (string memory); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) | |
| pragma solidity ^0.8.20; | |
| import {IERC165} from "../../utils/introspection/IERC165.sol"; | |
| /** | |
| * @dev Required interface of an ERC-721 compliant contract. | |
| */ | |
| interface IERC721 is IERC165 { | |
| /** | |
| * @dev Emitted when `tokenId` token is transferred from `from` to `to`. | |
| */ | |
| event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); | |
| /** | |
| * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. | |
| */ | |
| event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); | |
| /** | |
| * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. | |
| */ | |
| event ApprovalForAll(address indexed owner, address indexed operator, bool approved); | |
| /** | |
| * @dev Returns the number of tokens in ``owner``'s account. | |
| */ | |
| function balanceOf(address owner) external view returns (uint256 balance); | |
| /** | |
| * @dev Returns the owner of the `tokenId` token. | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` must exist. | |
| */ | |
| function ownerOf(uint256 tokenId) external view returns (address owner); | |
| /** | |
| * @dev Safely transfers `tokenId` token from `from` to `to`. | |
| * | |
| * Requirements: | |
| * | |
| * - `from` cannot be the zero address. | |
| * - `to` cannot be the zero address. | |
| * - `tokenId` token must exist and be owned by `from`. | |
| * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. | |
| * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon | |
| * a safe transfer. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; | |
| /** | |
| * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients | |
| * are aware of the ERC-721 protocol to prevent tokens from being forever locked. | |
| * | |
| * Requirements: | |
| * | |
| * - `from` cannot be the zero address. | |
| * - `to` cannot be the zero address. | |
| * - `tokenId` token must exist and be owned by `from`. | |
| * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or | |
| * {setApprovalForAll}. | |
| * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon | |
| * a safe transfer. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function safeTransferFrom(address from, address to, uint256 tokenId) external; | |
| /** | |
| * @dev Transfers `tokenId` token from `from` to `to`. | |
| * | |
| * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 | |
| * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must | |
| * understand this adds an external call which potentially creates a reentrancy vulnerability. | |
| * | |
| * Requirements: | |
| * | |
| * - `from` cannot be the zero address. | |
| * - `to` cannot be the zero address. | |
| * - `tokenId` token must be owned by `from`. | |
| * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function transferFrom(address from, address to, uint256 tokenId) external; | |
| /** | |
| * @dev Gives permission to `to` to transfer `tokenId` token to another account. | |
| * The approval is cleared when the token is transferred. | |
| * | |
| * Only a single account can be approved at a time, so approving the zero address clears previous approvals. | |
| * | |
| * Requirements: | |
| * | |
| * - The caller must own the token or be an approved operator. | |
| * - `tokenId` must exist. | |
| * | |
| * Emits an {Approval} event. | |
| */ | |
| function approve(address to, uint256 tokenId) external; | |
| /** | |
| * @dev Approve or remove `operator` as an operator for the caller. | |
| * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. | |
| * | |
| * Requirements: | |
| * | |
| * - The `operator` cannot be the address zero. | |
| * | |
| * Emits an {ApprovalForAll} event. | |
| */ | |
| function setApprovalForAll(address operator, bool approved) external; | |
| /** | |
| * @dev Returns the account approved for `tokenId` token. | |
| * | |
| * Requirements: | |
| * | |
| * - `tokenId` must exist. | |
| */ | |
| function getApproved(uint256 tokenId) external view returns (address operator); | |
| /** | |
| * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. | |
| * | |
| * See {setApprovalForAll} | |
| */ | |
| function isApprovedForAll(address owner, address operator) external view returns (bool); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol) | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @title ERC-721 token receiver interface | |
| * @dev Interface for any contract that wants to support safeTransfers | |
| * from ERC-721 asset contracts. | |
| */ | |
| interface IERC721Receiver { | |
| /** | |
| * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} | |
| * by `operator` from `from`, this function is called. | |
| * | |
| * It must return its Solidity selector to confirm the token transfer. | |
| * If any other value is returned or the interface is not implemented by the recipient, the transfer will be | |
| * reverted. | |
| * | |
| * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. | |
| */ | |
| function onERC721Received( | |
| address operator, | |
| address from, | |
| uint256 tokenId, | |
| bytes calldata data | |
| ) external returns (bytes4); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.3.0) (token/ERC721/utils/ERC721Utils.sol) | |
| pragma solidity ^0.8.20; | |
| import {IERC721Receiver} from "../IERC721Receiver.sol"; | |
| import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol"; | |
| /** | |
| * @dev Library that provide common ERC-721 utility functions. | |
| * | |
| * See https://eips.ethereum.org/EIPS/eip-721[ERC-721]. | |
| * | |
| * _Available since v5.1._ | |
| */ | |
| library ERC721Utils { | |
| /** | |
| * @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received} | |
| * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`). | |
| * | |
| * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA). | |
| * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept | |
| * the transfer. | |
| */ | |
| function checkOnERC721Received( | |
| address operator, | |
| address from, | |
| address to, | |
| uint256 tokenId, | |
| bytes memory data | |
| ) internal { | |
| if (to.code.length > 0) { | |
| try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) { | |
| if (retval != IERC721Receiver.onERC721Received.selector) { | |
| // Token rejected | |
| revert IERC721Errors.ERC721InvalidReceiver(to); | |
| } | |
| } catch (bytes memory reason) { | |
| if (reason.length == 0) { | |
| // non-IERC721Receiver implementer | |
| revert IERC721Errors.ERC721InvalidReceiver(to); | |
| } else { | |
| assembly ("memory-safe") { | |
| revert(add(32, reason), mload(reason)) | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @dev Provides information about the current execution context, including the | |
| * sender of the transaction and its data. While these are generally available | |
| * via msg.sender and msg.data, they should not be accessed in such a direct | |
| * manner, since when dealing with meta-transactions the account sending and | |
| * paying for execution may not be the actual sender (as far as an application | |
| * is concerned). | |
| * | |
| * This contract is only required for intermediate, library-like contracts. | |
| */ | |
| abstract contract Context { | |
| function _msgSender() internal view virtual returns (address) { | |
| return msg.sender; | |
| } | |
| function _msgData() internal view virtual returns (bytes calldata) { | |
| return msg.data; | |
| } | |
| function _contextSuffixLength() internal view virtual returns (uint256) { | |
| return 0; | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) | |
| pragma solidity ^0.8.20; | |
| import {IERC165} from "./IERC165.sol"; | |
| /** | |
| * @dev Implementation of the {IERC165} interface. | |
| * | |
| * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check | |
| * for the additional interface id that will be supported. For example: | |
| * | |
| * ```solidity | |
| * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
| * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); | |
| * } | |
| * ``` | |
| */ | |
| abstract contract ERC165 is IERC165 { | |
| /** | |
| * @dev See {IERC165-supportsInterface}. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { | |
| return interfaceId == type(IERC165).interfaceId; | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @dev Interface of the ERC-165 standard, as defined in the | |
| * https://eips.ethereum.org/EIPS/eip-165[ERC]. | |
| * | |
| * Implementers can declare support of contract interfaces, which can then be | |
| * queried by others ({ERC165Checker}). | |
| * | |
| * For an implementation, see {ERC165}. | |
| */ | |
| interface IERC165 { | |
| /** | |
| * @dev Returns true if this contract implements the interface defined by | |
| * `interfaceId`. See the corresponding | |
| * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] | |
| * to learn more about how these ids are created. | |
| * | |
| * This function call must use less than 30 000 gas. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) external view returns (bool); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol) | |
| pragma solidity ^0.8.20; | |
| import {Panic} from "../Panic.sol"; | |
| import {SafeCast} from "./SafeCast.sol"; | |
| /** | |
| * @dev Standard math utilities missing in the Solidity language. | |
| */ | |
| library Math { | |
| enum Rounding { | |
| Floor, // Toward negative infinity | |
| Ceil, // Toward positive infinity | |
| Trunc, // Toward zero | |
| Expand // Away from zero | |
| } | |
| /** | |
| * @dev Return the 512-bit addition of two uint256. | |
| * | |
| * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low. | |
| */ | |
| function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { | |
| assembly ("memory-safe") { | |
| low := add(a, b) | |
| high := lt(low, a) | |
| } | |
| } | |
| /** | |
| * @dev Return the 512-bit multiplication of two uint256. | |
| * | |
| * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low. | |
| */ | |
| function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { | |
| // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use | |
| // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 | |
| // variables such that product = high * 2²⁵⁶ + low. | |
| assembly ("memory-safe") { | |
| let mm := mulmod(a, b, not(0)) | |
| low := mul(a, b) | |
| high := sub(sub(mm, low), lt(mm, low)) | |
| } | |
| } | |
| /** | |
| * @dev Returns the addition of two unsigned integers, with a success flag (no overflow). | |
| */ | |
| function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { | |
| unchecked { | |
| uint256 c = a + b; | |
| success = c >= a; | |
| result = c * SafeCast.toUint(success); | |
| } | |
| } | |
| /** | |
| * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow). | |
| */ | |
| function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { | |
| unchecked { | |
| uint256 c = a - b; | |
| success = c <= a; | |
| result = c * SafeCast.toUint(success); | |
| } | |
| } | |
| /** | |
| * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow). | |
| */ | |
| function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { | |
| unchecked { | |
| uint256 c = a * b; | |
| assembly ("memory-safe") { | |
| // Only true when the multiplication doesn't overflow | |
| // (c / a == b) || (a == 0) | |
| success := or(eq(div(c, a), b), iszero(a)) | |
| } | |
| // equivalent to: success ? c : 0 | |
| result = c * SafeCast.toUint(success); | |
| } | |
| } | |
| /** | |
| * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). | |
| */ | |
| function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { | |
| unchecked { | |
| success = b > 0; | |
| assembly ("memory-safe") { | |
| // The `DIV` opcode returns zero when the denominator is 0. | |
| result := div(a, b) | |
| } | |
| } | |
| } | |
| /** | |
| * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). | |
| */ | |
| function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { | |
| unchecked { | |
| success = b > 0; | |
| assembly ("memory-safe") { | |
| // The `MOD` opcode returns zero when the denominator is 0. | |
| result := mod(a, b) | |
| } | |
| } | |
| } | |
| /** | |
| * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing. | |
| */ | |
| function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) { | |
| (bool success, uint256 result) = tryAdd(a, b); | |
| return ternary(success, result, type(uint256).max); | |
| } | |
| /** | |
| * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing. | |
| */ | |
| function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) { | |
| (, uint256 result) = trySub(a, b); | |
| return result; | |
| } | |
| /** | |
| * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing. | |
| */ | |
| function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) { | |
| (bool success, uint256 result) = tryMul(a, b); | |
| return ternary(success, result, type(uint256).max); | |
| } | |
| /** | |
| * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. | |
| * | |
| * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. | |
| * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute | |
| * one branch when needed, making this function more expensive. | |
| */ | |
| function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { | |
| unchecked { | |
| // branchless ternary works because: | |
| // b ^ (a ^ b) == a | |
| // b ^ 0 == b | |
| return b ^ ((a ^ b) * SafeCast.toUint(condition)); | |
| } | |
| } | |
| /** | |
| * @dev Returns the largest of two numbers. | |
| */ | |
| function max(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return ternary(a > b, a, b); | |
| } | |
| /** | |
| * @dev Returns the smallest of two numbers. | |
| */ | |
| function min(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return ternary(a < b, a, b); | |
| } | |
| /** | |
| * @dev Returns the average of two numbers. The result is rounded towards | |
| * zero. | |
| */ | |
| function average(uint256 a, uint256 b) internal pure returns (uint256) { | |
| // (a + b) / 2 can overflow. | |
| return (a & b) + (a ^ b) / 2; | |
| } | |
| /** | |
| * @dev Returns the ceiling of the division of two numbers. | |
| * | |
| * This differs from standard division with `/` in that it rounds towards infinity instead | |
| * of rounding towards zero. | |
| */ | |
| function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { | |
| if (b == 0) { | |
| // Guarantee the same behavior as in a regular Solidity division. | |
| Panic.panic(Panic.DIVISION_BY_ZERO); | |
| } | |
| // The following calculation ensures accurate ceiling division without overflow. | |
| // Since a is non-zero, (a - 1) / b will not overflow. | |
| // The largest possible result occurs when (a - 1) / b is type(uint256).max, | |
| // but the largest value we can obtain is type(uint256).max - 1, which happens | |
| // when a = type(uint256).max and b = 1. | |
| unchecked { | |
| return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); | |
| } | |
| } | |
| /** | |
| * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or | |
| * denominator == 0. | |
| * | |
| * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by | |
| * Uniswap Labs also under MIT license. | |
| */ | |
| function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { | |
| unchecked { | |
| (uint256 high, uint256 low) = mul512(x, y); | |
| // Handle non-overflow cases, 256 by 256 division. | |
| if (high == 0) { | |
| // Solidity will revert if denominator == 0, unlike the div opcode on its own. | |
| // The surrounding unchecked block does not change this fact. | |
| // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. | |
| return low / denominator; | |
| } | |
| // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. | |
| if (denominator <= high) { | |
| Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); | |
| } | |
| /////////////////////////////////////////////// | |
| // 512 by 256 division. | |
| /////////////////////////////////////////////// | |
| // Make division exact by subtracting the remainder from [high low]. | |
| uint256 remainder; | |
| assembly ("memory-safe") { | |
| // Compute remainder using mulmod. | |
| remainder := mulmod(x, y, denominator) | |
| // Subtract 256 bit number from 512 bit number. | |
| high := sub(high, gt(remainder, low)) | |
| low := sub(low, remainder) | |
| } | |
| // Factor powers of two out of denominator and compute largest power of two divisor of denominator. | |
| // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. | |
| uint256 twos = denominator & (0 - denominator); | |
| assembly ("memory-safe") { | |
| // Divide denominator by twos. | |
| denominator := div(denominator, twos) | |
| // Divide [high low] by twos. | |
| low := div(low, twos) | |
| // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one. | |
| twos := add(div(sub(0, twos), twos), 1) | |
| } | |
| // Shift in bits from high into low. | |
| low |= high * twos; | |
| // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such | |
| // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for | |
| // four bits. That is, denominator * inv ≡ 1 mod 2⁴. | |
| uint256 inverse = (3 * denominator) ^ 2; | |
| // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also | |
| // works in modular arithmetic, doubling the correct bits in each step. | |
| inverse *= 2 - denominator * inverse; // inverse mod 2⁸ | |
| inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ | |
| inverse *= 2 - denominator * inverse; // inverse mod 2³² | |
| inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ | |
| inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ | |
| inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ | |
| // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. | |
| // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is | |
| // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high | |
| // is no longer required. | |
| result = low * inverse; | |
| return result; | |
| } | |
| } | |
| /** | |
| * @dev Calculates x * y / denominator with full precision, following the selected rounding direction. | |
| */ | |
| function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { | |
| return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); | |
| } | |
| /** | |
| * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256. | |
| */ | |
| function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) { | |
| unchecked { | |
| (uint256 high, uint256 low) = mul512(x, y); | |
| if (high >= 1 << n) { | |
| Panic.panic(Panic.UNDER_OVERFLOW); | |
| } | |
| return (high << (256 - n)) | (low >> n); | |
| } | |
| } | |
| /** | |
| * @dev Calculates x * y >> n with full precision, following the selected rounding direction. | |
| */ | |
| function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) { | |
| return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0); | |
| } | |
| /** | |
| * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. | |
| * | |
| * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. | |
| * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. | |
| * | |
| * If the input value is not inversible, 0 is returned. | |
| * | |
| * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the | |
| * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. | |
| */ | |
| function invMod(uint256 a, uint256 n) internal pure returns (uint256) { | |
| unchecked { | |
| if (n == 0) return 0; | |
| // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) | |
| // Used to compute integers x and y such that: ax + ny = gcd(a, n). | |
| // When the gcd is 1, then the inverse of a modulo n exists and it's x. | |
| // ax + ny = 1 | |
| // ax = 1 + (-y)n | |
| // ax ≡ 1 (mod n) # x is the inverse of a modulo n | |
| // If the remainder is 0 the gcd is n right away. | |
| uint256 remainder = a % n; | |
| uint256 gcd = n; | |
| // Therefore the initial coefficients are: | |
| // ax + ny = gcd(a, n) = n | |
| // 0a + 1n = n | |
| int256 x = 0; | |
| int256 y = 1; | |
| while (remainder != 0) { | |
| uint256 quotient = gcd / remainder; | |
| (gcd, remainder) = ( | |
| // The old remainder is the next gcd to try. | |
| remainder, | |
| // Compute the next remainder. | |
| // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd | |
| // where gcd is at most n (capped to type(uint256).max) | |
| gcd - remainder * quotient | |
| ); | |
| (x, y) = ( | |
| // Increment the coefficient of a. | |
| y, | |
| // Decrement the coefficient of n. | |
| // Can overflow, but the result is casted to uint256 so that the | |
| // next value of y is "wrapped around" to a value between 0 and n - 1. | |
| x - y * int256(quotient) | |
| ); | |
| } | |
| if (gcd != 1) return 0; // No inverse exists. | |
| return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. | |
| } | |
| } | |
| /** | |
| * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. | |
| * | |
| * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is | |
| * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that | |
| * `a**(p-2)` is the modular multiplicative inverse of a in Fp. | |
| * | |
| * NOTE: this function does NOT check that `p` is a prime greater than `2`. | |
| */ | |
| function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { | |
| unchecked { | |
| return Math.modExp(a, p - 2, p); | |
| } | |
| } | |
| /** | |
| * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) | |
| * | |
| * Requirements: | |
| * - modulus can't be zero | |
| * - underlying staticcall to precompile must succeed | |
| * | |
| * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make | |
| * sure the chain you're using it on supports the precompiled contract for modular exponentiation | |
| * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, | |
| * the underlying function will succeed given the lack of a revert, but the result may be incorrectly | |
| * interpreted as 0. | |
| */ | |
| function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { | |
| (bool success, uint256 result) = tryModExp(b, e, m); | |
| if (!success) { | |
| Panic.panic(Panic.DIVISION_BY_ZERO); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). | |
| * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying | |
| * to operate modulo 0 or if the underlying precompile reverted. | |
| * | |
| * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain | |
| * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in | |
| * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack | |
| * of a revert, but the result may be incorrectly interpreted as 0. | |
| */ | |
| function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { | |
| if (m == 0) return (false, 0); | |
| assembly ("memory-safe") { | |
| let ptr := mload(0x40) | |
| // | Offset | Content | Content (Hex) | | |
| // |-----------|------------|--------------------------------------------------------------------| | |
| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | | |
| // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | | |
| // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | | |
| // | 0x60:0x7f | value of b | 0x<.............................................................b> | | |
| // | 0x80:0x9f | value of e | 0x<.............................................................e> | | |
| // | 0xa0:0xbf | value of m | 0x<.............................................................m> | | |
| mstore(ptr, 0x20) | |
| mstore(add(ptr, 0x20), 0x20) | |
| mstore(add(ptr, 0x40), 0x20) | |
| mstore(add(ptr, 0x60), b) | |
| mstore(add(ptr, 0x80), e) | |
| mstore(add(ptr, 0xa0), m) | |
| // Given the result < m, it's guaranteed to fit in 32 bytes, | |
| // so we can use the memory scratch space located at offset 0. | |
| success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) | |
| result := mload(0x00) | |
| } | |
| } | |
| /** | |
| * @dev Variant of {modExp} that supports inputs of arbitrary length. | |
| */ | |
| function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { | |
| (bool success, bytes memory result) = tryModExp(b, e, m); | |
| if (!success) { | |
| Panic.panic(Panic.DIVISION_BY_ZERO); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Variant of {tryModExp} that supports inputs of arbitrary length. | |
| */ | |
| function tryModExp( | |
| bytes memory b, | |
| bytes memory e, | |
| bytes memory m | |
| ) internal view returns (bool success, bytes memory result) { | |
| if (_zeroBytes(m)) return (false, new bytes(0)); | |
| uint256 mLen = m.length; | |
| // Encode call args in result and move the free memory pointer | |
| result = abi.encodePacked(b.length, e.length, mLen, b, e, m); | |
| assembly ("memory-safe") { | |
| let dataPtr := add(result, 0x20) | |
| // Write result on top of args to avoid allocating extra memory. | |
| success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) | |
| // Overwrite the length. | |
| // result.length > returndatasize() is guaranteed because returndatasize() == m.length | |
| mstore(result, mLen) | |
| // Set the memory pointer after the returned data. | |
| mstore(0x40, add(dataPtr, mLen)) | |
| } | |
| } | |
| /** | |
| * @dev Returns whether the provided byte array is zero. | |
| */ | |
| function _zeroBytes(bytes memory byteArray) private pure returns (bool) { | |
| for (uint256 i = 0; i < byteArray.length; ++i) { | |
| if (byteArray[i] != 0) { | |
| return false; | |
| } | |
| } | |
| return true; | |
| } | |
| /** | |
| * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded | |
| * towards zero. | |
| * | |
| * This method is based on Newton's method for computing square roots; the algorithm is restricted to only | |
| * using integer operations. | |
| */ | |
| function sqrt(uint256 a) internal pure returns (uint256) { | |
| unchecked { | |
| // Take care of easy edge cases when a == 0 or a == 1 | |
| if (a <= 1) { | |
| return a; | |
| } | |
| // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a | |
| // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between | |
| // the current value as `ε_n = | x_n - sqrt(a) |`. | |
| // | |
| // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root | |
| // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is | |
| // bigger than any uint256. | |
| // | |
| // By noticing that | |
| // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` | |
| // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar | |
| // to the msb function. | |
| uint256 aa = a; | |
| uint256 xn = 1; | |
| if (aa >= (1 << 128)) { | |
| aa >>= 128; | |
| xn <<= 64; | |
| } | |
| if (aa >= (1 << 64)) { | |
| aa >>= 64; | |
| xn <<= 32; | |
| } | |
| if (aa >= (1 << 32)) { | |
| aa >>= 32; | |
| xn <<= 16; | |
| } | |
| if (aa >= (1 << 16)) { | |
| aa >>= 16; | |
| xn <<= 8; | |
| } | |
| if (aa >= (1 << 8)) { | |
| aa >>= 8; | |
| xn <<= 4; | |
| } | |
| if (aa >= (1 << 4)) { | |
| aa >>= 4; | |
| xn <<= 2; | |
| } | |
| if (aa >= (1 << 2)) { | |
| xn <<= 1; | |
| } | |
| // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). | |
| // | |
| // We can refine our estimation by noticing that the middle of that interval minimizes the error. | |
| // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). | |
| // This is going to be our x_0 (and ε_0) | |
| xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) | |
| // From here, Newton's method give us: | |
| // x_{n+1} = (x_n + a / x_n) / 2 | |
| // | |
| // One should note that: | |
| // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a | |
| // = ((x_n² + a) / (2 * x_n))² - a | |
| // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a | |
| // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) | |
| // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) | |
| // = (x_n² - a)² / (2 * x_n)² | |
| // = ((x_n² - a) / (2 * x_n))² | |
| // ≥ 0 | |
| // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n | |
| // | |
| // This gives us the proof of quadratic convergence of the sequence: | |
| // ε_{n+1} = | x_{n+1} - sqrt(a) | | |
| // = | (x_n + a / x_n) / 2 - sqrt(a) | | |
| // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | | |
| // = | (x_n - sqrt(a))² / (2 * x_n) | | |
| // = | ε_n² / (2 * x_n) | | |
| // = ε_n² / | (2 * x_n) | | |
| // | |
| // For the first iteration, we have a special case where x_0 is known: | |
| // ε_1 = ε_0² / | (2 * x_0) | | |
| // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) | |
| // ≤ 2**(2*e-4) / (3 * 2**(e-1)) | |
| // ≤ 2**(e-3) / 3 | |
| // ≤ 2**(e-3-log2(3)) | |
| // ≤ 2**(e-4.5) | |
| // | |
| // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: | |
| // ε_{n+1} = ε_n² / | (2 * x_n) | | |
| // ≤ (2**(e-k))² / (2 * 2**(e-1)) | |
| // ≤ 2**(2*e-2*k) / 2**e | |
| // ≤ 2**(e-2*k) | |
| xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above | |
| xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 | |
| xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 | |
| xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 | |
| xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 | |
| xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 | |
| // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision | |
| // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either | |
| // sqrt(a) or sqrt(a) + 1. | |
| return xn - SafeCast.toUint(xn > a / xn); | |
| } | |
| } | |
| /** | |
| * @dev Calculates sqrt(a), following the selected rounding direction. | |
| */ | |
| function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = sqrt(a); | |
| return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 2 of a positive value rounded towards zero. | |
| * Returns 0 if given 0. | |
| */ | |
| function log2(uint256 x) internal pure returns (uint256 r) { | |
| // If value has upper 128 bits set, log2 result is at least 128 | |
| r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; | |
| // If upper 64 bits of 128-bit half set, add 64 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; | |
| // If upper 32 bits of 64-bit half set, add 32 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; | |
| // If upper 16 bits of 32-bit half set, add 16 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffff) << 4; | |
| // If upper 8 bits of 16-bit half set, add 8 to result | |
| r |= SafeCast.toUint((x >> r) > 0xff) << 3; | |
| // If upper 4 bits of 8-bit half set, add 4 to result | |
| r |= SafeCast.toUint((x >> r) > 0xf) << 2; | |
| // Shifts value right by the current result and use it as an index into this lookup table: | |
| // | |
| // | x (4 bits) | index | table[index] = MSB position | | |
| // |------------|---------|-----------------------------| | |
| // | 0000 | 0 | table[0] = 0 | | |
| // | 0001 | 1 | table[1] = 0 | | |
| // | 0010 | 2 | table[2] = 1 | | |
| // | 0011 | 3 | table[3] = 1 | | |
| // | 0100 | 4 | table[4] = 2 | | |
| // | 0101 | 5 | table[5] = 2 | | |
| // | 0110 | 6 | table[6] = 2 | | |
| // | 0111 | 7 | table[7] = 2 | | |
| // | 1000 | 8 | table[8] = 3 | | |
| // | 1001 | 9 | table[9] = 3 | | |
| // | 1010 | 10 | table[10] = 3 | | |
| // | 1011 | 11 | table[11] = 3 | | |
| // | 1100 | 12 | table[12] = 3 | | |
| // | 1101 | 13 | table[13] = 3 | | |
| // | 1110 | 14 | table[14] = 3 | | |
| // | 1111 | 15 | table[15] = 3 | | |
| // | |
| // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes. | |
| assembly ("memory-safe") { | |
| r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000)) | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 2, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log2(value); | |
| return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 10 of a positive value rounded towards zero. | |
| * Returns 0 if given 0. | |
| */ | |
| function log10(uint256 value) internal pure returns (uint256) { | |
| uint256 result = 0; | |
| unchecked { | |
| if (value >= 10 ** 64) { | |
| value /= 10 ** 64; | |
| result += 64; | |
| } | |
| if (value >= 10 ** 32) { | |
| value /= 10 ** 32; | |
| result += 32; | |
| } | |
| if (value >= 10 ** 16) { | |
| value /= 10 ** 16; | |
| result += 16; | |
| } | |
| if (value >= 10 ** 8) { | |
| value /= 10 ** 8; | |
| result += 8; | |
| } | |
| if (value >= 10 ** 4) { | |
| value /= 10 ** 4; | |
| result += 4; | |
| } | |
| if (value >= 10 ** 2) { | |
| value /= 10 ** 2; | |
| result += 2; | |
| } | |
| if (value >= 10 ** 1) { | |
| result += 1; | |
| } | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Return the log in base 10, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log10(value); | |
| return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 256 of a positive value rounded towards zero. | |
| * Returns 0 if given 0. | |
| * | |
| * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. | |
| */ | |
| function log256(uint256 x) internal pure returns (uint256 r) { | |
| // If value has upper 128 bits set, log2 result is at least 128 | |
| r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; | |
| // If upper 64 bits of 128-bit half set, add 64 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; | |
| // If upper 32 bits of 64-bit half set, add 32 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; | |
| // If upper 16 bits of 32-bit half set, add 16 to result | |
| r |= SafeCast.toUint((x >> r) > 0xffff) << 4; | |
| // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8 | |
| return (r >> 3) | SafeCast.toUint((x >> r) > 0xff); | |
| } | |
| /** | |
| * @dev Return the log in base 256, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log256(value); | |
| return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); | |
| } | |
| } | |
| /** | |
| * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. | |
| */ | |
| function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { | |
| return uint8(rounding) % 2 == 1; | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) | |
| // This file was procedurally generated from scripts/generate/templates/SafeCast.js. | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow | |
| * checks. | |
| * | |
| * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can | |
| * easily result in undesired exploitation or bugs, since developers usually | |
| * assume that overflows raise errors. `SafeCast` restores this intuition by | |
| * reverting the transaction when such an operation overflows. | |
| * | |
| * Using this library instead of the unchecked operations eliminates an entire | |
| * class of bugs, so it's recommended to use it always. | |
| */ | |
| library SafeCast { | |
| /** | |
| * @dev Value doesn't fit in an uint of `bits` size. | |
| */ | |
| error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); | |
| /** | |
| * @dev An int value doesn't fit in an uint of `bits` size. | |
| */ | |
| error SafeCastOverflowedIntToUint(int256 value); | |
| /** | |
| * @dev Value doesn't fit in an int of `bits` size. | |
| */ | |
| error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); | |
| /** | |
| * @dev An uint value doesn't fit in an int of `bits` size. | |
| */ | |
| error SafeCastOverflowedUintToInt(uint256 value); | |
| /** | |
| * @dev Returns the downcasted uint248 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint248). | |
| * | |
| * Counterpart to Solidity's `uint248` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 248 bits | |
| */ | |
| function toUint248(uint256 value) internal pure returns (uint248) { | |
| if (value > type(uint248).max) { | |
| revert SafeCastOverflowedUintDowncast(248, value); | |
| } | |
| return uint248(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint240 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint240). | |
| * | |
| * Counterpart to Solidity's `uint240` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 240 bits | |
| */ | |
| function toUint240(uint256 value) internal pure returns (uint240) { | |
| if (value > type(uint240).max) { | |
| revert SafeCastOverflowedUintDowncast(240, value); | |
| } | |
| return uint240(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint232 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint232). | |
| * | |
| * Counterpart to Solidity's `uint232` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 232 bits | |
| */ | |
| function toUint232(uint256 value) internal pure returns (uint232) { | |
| if (value > type(uint232).max) { | |
| revert SafeCastOverflowedUintDowncast(232, value); | |
| } | |
| return uint232(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint224 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint224). | |
| * | |
| * Counterpart to Solidity's `uint224` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 224 bits | |
| */ | |
| function toUint224(uint256 value) internal pure returns (uint224) { | |
| if (value > type(uint224).max) { | |
| revert SafeCastOverflowedUintDowncast(224, value); | |
| } | |
| return uint224(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint216 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint216). | |
| * | |
| * Counterpart to Solidity's `uint216` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 216 bits | |
| */ | |
| function toUint216(uint256 value) internal pure returns (uint216) { | |
| if (value > type(uint216).max) { | |
| revert SafeCastOverflowedUintDowncast(216, value); | |
| } | |
| return uint216(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint208 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint208). | |
| * | |
| * Counterpart to Solidity's `uint208` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 208 bits | |
| */ | |
| function toUint208(uint256 value) internal pure returns (uint208) { | |
| if (value > type(uint208).max) { | |
| revert SafeCastOverflowedUintDowncast(208, value); | |
| } | |
| return uint208(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint200 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint200). | |
| * | |
| * Counterpart to Solidity's `uint200` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 200 bits | |
| */ | |
| function toUint200(uint256 value) internal pure returns (uint200) { | |
| if (value > type(uint200).max) { | |
| revert SafeCastOverflowedUintDowncast(200, value); | |
| } | |
| return uint200(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint192 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint192). | |
| * | |
| * Counterpart to Solidity's `uint192` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 192 bits | |
| */ | |
| function toUint192(uint256 value) internal pure returns (uint192) { | |
| if (value > type(uint192).max) { | |
| revert SafeCastOverflowedUintDowncast(192, value); | |
| } | |
| return uint192(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint184 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint184). | |
| * | |
| * Counterpart to Solidity's `uint184` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 184 bits | |
| */ | |
| function toUint184(uint256 value) internal pure returns (uint184) { | |
| if (value > type(uint184).max) { | |
| revert SafeCastOverflowedUintDowncast(184, value); | |
| } | |
| return uint184(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint176 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint176). | |
| * | |
| * Counterpart to Solidity's `uint176` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 176 bits | |
| */ | |
| function toUint176(uint256 value) internal pure returns (uint176) { | |
| if (value > type(uint176).max) { | |
| revert SafeCastOverflowedUintDowncast(176, value); | |
| } | |
| return uint176(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint168 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint168). | |
| * | |
| * Counterpart to Solidity's `uint168` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 168 bits | |
| */ | |
| function toUint168(uint256 value) internal pure returns (uint168) { | |
| if (value > type(uint168).max) { | |
| revert SafeCastOverflowedUintDowncast(168, value); | |
| } | |
| return uint168(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint160 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint160). | |
| * | |
| * Counterpart to Solidity's `uint160` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 160 bits | |
| */ | |
| function toUint160(uint256 value) internal pure returns (uint160) { | |
| if (value > type(uint160).max) { | |
| revert SafeCastOverflowedUintDowncast(160, value); | |
| } | |
| return uint160(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint152 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint152). | |
| * | |
| * Counterpart to Solidity's `uint152` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 152 bits | |
| */ | |
| function toUint152(uint256 value) internal pure returns (uint152) { | |
| if (value > type(uint152).max) { | |
| revert SafeCastOverflowedUintDowncast(152, value); | |
| } | |
| return uint152(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint144 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint144). | |
| * | |
| * Counterpart to Solidity's `uint144` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 144 bits | |
| */ | |
| function toUint144(uint256 value) internal pure returns (uint144) { | |
| if (value > type(uint144).max) { | |
| revert SafeCastOverflowedUintDowncast(144, value); | |
| } | |
| return uint144(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint136 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint136). | |
| * | |
| * Counterpart to Solidity's `uint136` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 136 bits | |
| */ | |
| function toUint136(uint256 value) internal pure returns (uint136) { | |
| if (value > type(uint136).max) { | |
| revert SafeCastOverflowedUintDowncast(136, value); | |
| } | |
| return uint136(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint128 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint128). | |
| * | |
| * Counterpart to Solidity's `uint128` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 128 bits | |
| */ | |
| function toUint128(uint256 value) internal pure returns (uint128) { | |
| if (value > type(uint128).max) { | |
| revert SafeCastOverflowedUintDowncast(128, value); | |
| } | |
| return uint128(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint120 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint120). | |
| * | |
| * Counterpart to Solidity's `uint120` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 120 bits | |
| */ | |
| function toUint120(uint256 value) internal pure returns (uint120) { | |
| if (value > type(uint120).max) { | |
| revert SafeCastOverflowedUintDowncast(120, value); | |
| } | |
| return uint120(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint112 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint112). | |
| * | |
| * Counterpart to Solidity's `uint112` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 112 bits | |
| */ | |
| function toUint112(uint256 value) internal pure returns (uint112) { | |
| if (value > type(uint112).max) { | |
| revert SafeCastOverflowedUintDowncast(112, value); | |
| } | |
| return uint112(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint104 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint104). | |
| * | |
| * Counterpart to Solidity's `uint104` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 104 bits | |
| */ | |
| function toUint104(uint256 value) internal pure returns (uint104) { | |
| if (value > type(uint104).max) { | |
| revert SafeCastOverflowedUintDowncast(104, value); | |
| } | |
| return uint104(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint96 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint96). | |
| * | |
| * Counterpart to Solidity's `uint96` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 96 bits | |
| */ | |
| function toUint96(uint256 value) internal pure returns (uint96) { | |
| if (value > type(uint96).max) { | |
| revert SafeCastOverflowedUintDowncast(96, value); | |
| } | |
| return uint96(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint88 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint88). | |
| * | |
| * Counterpart to Solidity's `uint88` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 88 bits | |
| */ | |
| function toUint88(uint256 value) internal pure returns (uint88) { | |
| if (value > type(uint88).max) { | |
| revert SafeCastOverflowedUintDowncast(88, value); | |
| } | |
| return uint88(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint80 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint80). | |
| * | |
| * Counterpart to Solidity's `uint80` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 80 bits | |
| */ | |
| function toUint80(uint256 value) internal pure returns (uint80) { | |
| if (value > type(uint80).max) { | |
| revert SafeCastOverflowedUintDowncast(80, value); | |
| } | |
| return uint80(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint72 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint72). | |
| * | |
| * Counterpart to Solidity's `uint72` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 72 bits | |
| */ | |
| function toUint72(uint256 value) internal pure returns (uint72) { | |
| if (value > type(uint72).max) { | |
| revert SafeCastOverflowedUintDowncast(72, value); | |
| } | |
| return uint72(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint64 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint64). | |
| * | |
| * Counterpart to Solidity's `uint64` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 64 bits | |
| */ | |
| function toUint64(uint256 value) internal pure returns (uint64) { | |
| if (value > type(uint64).max) { | |
| revert SafeCastOverflowedUintDowncast(64, value); | |
| } | |
| return uint64(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint56 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint56). | |
| * | |
| * Counterpart to Solidity's `uint56` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 56 bits | |
| */ | |
| function toUint56(uint256 value) internal pure returns (uint56) { | |
| if (value > type(uint56).max) { | |
| revert SafeCastOverflowedUintDowncast(56, value); | |
| } | |
| return uint56(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint48 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint48). | |
| * | |
| * Counterpart to Solidity's `uint48` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 48 bits | |
| */ | |
| function toUint48(uint256 value) internal pure returns (uint48) { | |
| if (value > type(uint48).max) { | |
| revert SafeCastOverflowedUintDowncast(48, value); | |
| } | |
| return uint48(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint40 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint40). | |
| * | |
| * Counterpart to Solidity's `uint40` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 40 bits | |
| */ | |
| function toUint40(uint256 value) internal pure returns (uint40) { | |
| if (value > type(uint40).max) { | |
| revert SafeCastOverflowedUintDowncast(40, value); | |
| } | |
| return uint40(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint32 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint32). | |
| * | |
| * Counterpart to Solidity's `uint32` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 32 bits | |
| */ | |
| function toUint32(uint256 value) internal pure returns (uint32) { | |
| if (value > type(uint32).max) { | |
| revert SafeCastOverflowedUintDowncast(32, value); | |
| } | |
| return uint32(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint24 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint24). | |
| * | |
| * Counterpart to Solidity's `uint24` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 24 bits | |
| */ | |
| function toUint24(uint256 value) internal pure returns (uint24) { | |
| if (value > type(uint24).max) { | |
| revert SafeCastOverflowedUintDowncast(24, value); | |
| } | |
| return uint24(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint16 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint16). | |
| * | |
| * Counterpart to Solidity's `uint16` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 16 bits | |
| */ | |
| function toUint16(uint256 value) internal pure returns (uint16) { | |
| if (value > type(uint16).max) { | |
| revert SafeCastOverflowedUintDowncast(16, value); | |
| } | |
| return uint16(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted uint8 from uint256, reverting on | |
| * overflow (when the input is greater than largest uint8). | |
| * | |
| * Counterpart to Solidity's `uint8` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 8 bits | |
| */ | |
| function toUint8(uint256 value) internal pure returns (uint8) { | |
| if (value > type(uint8).max) { | |
| revert SafeCastOverflowedUintDowncast(8, value); | |
| } | |
| return uint8(value); | |
| } | |
| /** | |
| * @dev Converts a signed int256 into an unsigned uint256. | |
| * | |
| * Requirements: | |
| * | |
| * - input must be greater than or equal to 0. | |
| */ | |
| function toUint256(int256 value) internal pure returns (uint256) { | |
| if (value < 0) { | |
| revert SafeCastOverflowedIntToUint(value); | |
| } | |
| return uint256(value); | |
| } | |
| /** | |
| * @dev Returns the downcasted int248 from int256, reverting on | |
| * overflow (when the input is less than smallest int248 or | |
| * greater than largest int248). | |
| * | |
| * Counterpart to Solidity's `int248` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 248 bits | |
| */ | |
| function toInt248(int256 value) internal pure returns (int248 downcasted) { | |
| downcasted = int248(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(248, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int240 from int256, reverting on | |
| * overflow (when the input is less than smallest int240 or | |
| * greater than largest int240). | |
| * | |
| * Counterpart to Solidity's `int240` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 240 bits | |
| */ | |
| function toInt240(int256 value) internal pure returns (int240 downcasted) { | |
| downcasted = int240(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(240, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int232 from int256, reverting on | |
| * overflow (when the input is less than smallest int232 or | |
| * greater than largest int232). | |
| * | |
| * Counterpart to Solidity's `int232` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 232 bits | |
| */ | |
| function toInt232(int256 value) internal pure returns (int232 downcasted) { | |
| downcasted = int232(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(232, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int224 from int256, reverting on | |
| * overflow (when the input is less than smallest int224 or | |
| * greater than largest int224). | |
| * | |
| * Counterpart to Solidity's `int224` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 224 bits | |
| */ | |
| function toInt224(int256 value) internal pure returns (int224 downcasted) { | |
| downcasted = int224(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(224, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int216 from int256, reverting on | |
| * overflow (when the input is less than smallest int216 or | |
| * greater than largest int216). | |
| * | |
| * Counterpart to Solidity's `int216` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 216 bits | |
| */ | |
| function toInt216(int256 value) internal pure returns (int216 downcasted) { | |
| downcasted = int216(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(216, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int208 from int256, reverting on | |
| * overflow (when the input is less than smallest int208 or | |
| * greater than largest int208). | |
| * | |
| * Counterpart to Solidity's `int208` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 208 bits | |
| */ | |
| function toInt208(int256 value) internal pure returns (int208 downcasted) { | |
| downcasted = int208(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(208, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int200 from int256, reverting on | |
| * overflow (when the input is less than smallest int200 or | |
| * greater than largest int200). | |
| * | |
| * Counterpart to Solidity's `int200` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 200 bits | |
| */ | |
| function toInt200(int256 value) internal pure returns (int200 downcasted) { | |
| downcasted = int200(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(200, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int192 from int256, reverting on | |
| * overflow (when the input is less than smallest int192 or | |
| * greater than largest int192). | |
| * | |
| * Counterpart to Solidity's `int192` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 192 bits | |
| */ | |
| function toInt192(int256 value) internal pure returns (int192 downcasted) { | |
| downcasted = int192(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(192, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int184 from int256, reverting on | |
| * overflow (when the input is less than smallest int184 or | |
| * greater than largest int184). | |
| * | |
| * Counterpart to Solidity's `int184` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 184 bits | |
| */ | |
| function toInt184(int256 value) internal pure returns (int184 downcasted) { | |
| downcasted = int184(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(184, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int176 from int256, reverting on | |
| * overflow (when the input is less than smallest int176 or | |
| * greater than largest int176). | |
| * | |
| * Counterpart to Solidity's `int176` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 176 bits | |
| */ | |
| function toInt176(int256 value) internal pure returns (int176 downcasted) { | |
| downcasted = int176(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(176, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int168 from int256, reverting on | |
| * overflow (when the input is less than smallest int168 or | |
| * greater than largest int168). | |
| * | |
| * Counterpart to Solidity's `int168` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 168 bits | |
| */ | |
| function toInt168(int256 value) internal pure returns (int168 downcasted) { | |
| downcasted = int168(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(168, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int160 from int256, reverting on | |
| * overflow (when the input is less than smallest int160 or | |
| * greater than largest int160). | |
| * | |
| * Counterpart to Solidity's `int160` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 160 bits | |
| */ | |
| function toInt160(int256 value) internal pure returns (int160 downcasted) { | |
| downcasted = int160(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(160, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int152 from int256, reverting on | |
| * overflow (when the input is less than smallest int152 or | |
| * greater than largest int152). | |
| * | |
| * Counterpart to Solidity's `int152` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 152 bits | |
| */ | |
| function toInt152(int256 value) internal pure returns (int152 downcasted) { | |
| downcasted = int152(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(152, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int144 from int256, reverting on | |
| * overflow (when the input is less than smallest int144 or | |
| * greater than largest int144). | |
| * | |
| * Counterpart to Solidity's `int144` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 144 bits | |
| */ | |
| function toInt144(int256 value) internal pure returns (int144 downcasted) { | |
| downcasted = int144(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(144, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int136 from int256, reverting on | |
| * overflow (when the input is less than smallest int136 or | |
| * greater than largest int136). | |
| * | |
| * Counterpart to Solidity's `int136` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 136 bits | |
| */ | |
| function toInt136(int256 value) internal pure returns (int136 downcasted) { | |
| downcasted = int136(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(136, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int128 from int256, reverting on | |
| * overflow (when the input is less than smallest int128 or | |
| * greater than largest int128). | |
| * | |
| * Counterpart to Solidity's `int128` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 128 bits | |
| */ | |
| function toInt128(int256 value) internal pure returns (int128 downcasted) { | |
| downcasted = int128(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(128, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int120 from int256, reverting on | |
| * overflow (when the input is less than smallest int120 or | |
| * greater than largest int120). | |
| * | |
| * Counterpart to Solidity's `int120` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 120 bits | |
| */ | |
| function toInt120(int256 value) internal pure returns (int120 downcasted) { | |
| downcasted = int120(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(120, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int112 from int256, reverting on | |
| * overflow (when the input is less than smallest int112 or | |
| * greater than largest int112). | |
| * | |
| * Counterpart to Solidity's `int112` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 112 bits | |
| */ | |
| function toInt112(int256 value) internal pure returns (int112 downcasted) { | |
| downcasted = int112(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(112, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int104 from int256, reverting on | |
| * overflow (when the input is less than smallest int104 or | |
| * greater than largest int104). | |
| * | |
| * Counterpart to Solidity's `int104` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 104 bits | |
| */ | |
| function toInt104(int256 value) internal pure returns (int104 downcasted) { | |
| downcasted = int104(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(104, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int96 from int256, reverting on | |
| * overflow (when the input is less than smallest int96 or | |
| * greater than largest int96). | |
| * | |
| * Counterpart to Solidity's `int96` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 96 bits | |
| */ | |
| function toInt96(int256 value) internal pure returns (int96 downcasted) { | |
| downcasted = int96(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(96, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int88 from int256, reverting on | |
| * overflow (when the input is less than smallest int88 or | |
| * greater than largest int88). | |
| * | |
| * Counterpart to Solidity's `int88` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 88 bits | |
| */ | |
| function toInt88(int256 value) internal pure returns (int88 downcasted) { | |
| downcasted = int88(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(88, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int80 from int256, reverting on | |
| * overflow (when the input is less than smallest int80 or | |
| * greater than largest int80). | |
| * | |
| * Counterpart to Solidity's `int80` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 80 bits | |
| */ | |
| function toInt80(int256 value) internal pure returns (int80 downcasted) { | |
| downcasted = int80(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(80, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int72 from int256, reverting on | |
| * overflow (when the input is less than smallest int72 or | |
| * greater than largest int72). | |
| * | |
| * Counterpart to Solidity's `int72` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 72 bits | |
| */ | |
| function toInt72(int256 value) internal pure returns (int72 downcasted) { | |
| downcasted = int72(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(72, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int64 from int256, reverting on | |
| * overflow (when the input is less than smallest int64 or | |
| * greater than largest int64). | |
| * | |
| * Counterpart to Solidity's `int64` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 64 bits | |
| */ | |
| function toInt64(int256 value) internal pure returns (int64 downcasted) { | |
| downcasted = int64(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(64, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int56 from int256, reverting on | |
| * overflow (when the input is less than smallest int56 or | |
| * greater than largest int56). | |
| * | |
| * Counterpart to Solidity's `int56` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 56 bits | |
| */ | |
| function toInt56(int256 value) internal pure returns (int56 downcasted) { | |
| downcasted = int56(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(56, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int48 from int256, reverting on | |
| * overflow (when the input is less than smallest int48 or | |
| * greater than largest int48). | |
| * | |
| * Counterpart to Solidity's `int48` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 48 bits | |
| */ | |
| function toInt48(int256 value) internal pure returns (int48 downcasted) { | |
| downcasted = int48(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(48, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int40 from int256, reverting on | |
| * overflow (when the input is less than smallest int40 or | |
| * greater than largest int40). | |
| * | |
| * Counterpart to Solidity's `int40` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 40 bits | |
| */ | |
| function toInt40(int256 value) internal pure returns (int40 downcasted) { | |
| downcasted = int40(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(40, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int32 from int256, reverting on | |
| * overflow (when the input is less than smallest int32 or | |
| * greater than largest int32). | |
| * | |
| * Counterpart to Solidity's `int32` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 32 bits | |
| */ | |
| function toInt32(int256 value) internal pure returns (int32 downcasted) { | |
| downcasted = int32(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(32, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int24 from int256, reverting on | |
| * overflow (when the input is less than smallest int24 or | |
| * greater than largest int24). | |
| * | |
| * Counterpart to Solidity's `int24` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 24 bits | |
| */ | |
| function toInt24(int256 value) internal pure returns (int24 downcasted) { | |
| downcasted = int24(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(24, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int16 from int256, reverting on | |
| * overflow (when the input is less than smallest int16 or | |
| * greater than largest int16). | |
| * | |
| * Counterpart to Solidity's `int16` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 16 bits | |
| */ | |
| function toInt16(int256 value) internal pure returns (int16 downcasted) { | |
| downcasted = int16(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(16, value); | |
| } | |
| } | |
| /** | |
| * @dev Returns the downcasted int8 from int256, reverting on | |
| * overflow (when the input is less than smallest int8 or | |
| * greater than largest int8). | |
| * | |
| * Counterpart to Solidity's `int8` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - input must fit into 8 bits | |
| */ | |
| function toInt8(int256 value) internal pure returns (int8 downcasted) { | |
| downcasted = int8(value); | |
| if (downcasted != value) { | |
| revert SafeCastOverflowedIntDowncast(8, value); | |
| } | |
| } | |
| /** | |
| * @dev Converts an unsigned uint256 into a signed int256. | |
| * | |
| * Requirements: | |
| * | |
| * - input must be less than or equal to maxInt256. | |
| */ | |
| function toInt256(uint256 value) internal pure returns (int256) { | |
| // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive | |
| if (value > uint256(type(int256).max)) { | |
| revert SafeCastOverflowedUintToInt(value); | |
| } | |
| return int256(value); | |
| } | |
| /** | |
| * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. | |
| */ | |
| function toUint(bool b) internal pure returns (uint256 u) { | |
| assembly ("memory-safe") { | |
| u := iszero(iszero(b)) | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol) | |
| pragma solidity ^0.8.20; | |
| import {SafeCast} from "./SafeCast.sol"; | |
| /** | |
| * @dev Standard signed math utilities missing in the Solidity language. | |
| */ | |
| library SignedMath { | |
| /** | |
| * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. | |
| * | |
| * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. | |
| * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute | |
| * one branch when needed, making this function more expensive. | |
| */ | |
| function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) { | |
| unchecked { | |
| // branchless ternary works because: | |
| // b ^ (a ^ b) == a | |
| // b ^ 0 == b | |
| return b ^ ((a ^ b) * int256(SafeCast.toUint(condition))); | |
| } | |
| } | |
| /** | |
| * @dev Returns the largest of two signed numbers. | |
| */ | |
| function max(int256 a, int256 b) internal pure returns (int256) { | |
| return ternary(a > b, a, b); | |
| } | |
| /** | |
| * @dev Returns the smallest of two signed numbers. | |
| */ | |
| function min(int256 a, int256 b) internal pure returns (int256) { | |
| return ternary(a < b, a, b); | |
| } | |
| /** | |
| * @dev Returns the average of two signed numbers without overflow. | |
| * The result is rounded towards zero. | |
| */ | |
| function average(int256 a, int256 b) internal pure returns (int256) { | |
| // Formula from the book "Hacker's Delight" | |
| int256 x = (a & b) + ((a ^ b) >> 1); | |
| return x + (int256(uint256(x) >> 255) & (a ^ b)); | |
| } | |
| /** | |
| * @dev Returns the absolute unsigned value of a signed value. | |
| */ | |
| function abs(int256 n) internal pure returns (uint256) { | |
| unchecked { | |
| // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson. | |
| // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift, | |
| // taking advantage of the most significant (or "sign" bit) in two's complement representation. | |
| // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result, | |
| // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative). | |
| int256 mask = n >> 255; | |
| // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it. | |
| return uint256((n + mask) ^ mask); | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) | |
| pragma solidity ^0.8.20; | |
| /** | |
| * @dev Helper library for emitting standardized panic codes. | |
| * | |
| * ```solidity | |
| * contract Example { | |
| * using Panic for uint256; | |
| * | |
| * // Use any of the declared internal constants | |
| * function foo() { Panic.GENERIC.panic(); } | |
| * | |
| * // Alternatively | |
| * function foo() { Panic.panic(Panic.GENERIC); } | |
| * } | |
| * ``` | |
| * | |
| * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. | |
| * | |
| * _Available since v5.1._ | |
| */ | |
| // slither-disable-next-line unused-state | |
| library Panic { | |
| /// @dev generic / unspecified error | |
| uint256 internal constant GENERIC = 0x00; | |
| /// @dev used by the assert() builtin | |
| uint256 internal constant ASSERT = 0x01; | |
| /// @dev arithmetic underflow or overflow | |
| uint256 internal constant UNDER_OVERFLOW = 0x11; | |
| /// @dev division or modulo by zero | |
| uint256 internal constant DIVISION_BY_ZERO = 0x12; | |
| /// @dev enum conversion error | |
| uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; | |
| /// @dev invalid encoding in storage | |
| uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; | |
| /// @dev empty array pop | |
| uint256 internal constant EMPTY_ARRAY_POP = 0x31; | |
| /// @dev array out of bounds access | |
| uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; | |
| /// @dev resource error (too large allocation or too large array) | |
| uint256 internal constant RESOURCE_ERROR = 0x41; | |
| /// @dev calling invalid internal function | |
| uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; | |
| /// @dev Reverts with a panic code. Recommended to use with | |
| /// the internal constants with predefined codes. | |
| function panic(uint256 code) internal pure { | |
| assembly ("memory-safe") { | |
| mstore(0x00, 0x4e487b71) | |
| mstore(0x20, code) | |
| revert(0x1c, 0x24) | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v5.3.0) (utils/Strings.sol) | |
| pragma solidity ^0.8.20; | |
| import {Math} from "./math/Math.sol"; | |
| import {SafeCast} from "./math/SafeCast.sol"; | |
| import {SignedMath} from "./math/SignedMath.sol"; | |
| /** | |
| * @dev String operations. | |
| */ | |
| library Strings { | |
| using SafeCast for *; | |
| bytes16 private constant HEX_DIGITS = "0123456789abcdef"; | |
| uint8 private constant ADDRESS_LENGTH = 20; | |
| uint256 private constant SPECIAL_CHARS_LOOKUP = | |
| (1 << 0x08) | // backspace | |
| (1 << 0x09) | // tab | |
| (1 << 0x0a) | // newline | |
| (1 << 0x0c) | // form feed | |
| (1 << 0x0d) | // carriage return | |
| (1 << 0x22) | // double quote | |
| (1 << 0x5c); // backslash | |
| /** | |
| * @dev The `value` string doesn't fit in the specified `length`. | |
| */ | |
| error StringsInsufficientHexLength(uint256 value, uint256 length); | |
| /** | |
| * @dev The string being parsed contains characters that are not in scope of the given base. | |
| */ | |
| error StringsInvalidChar(); | |
| /** | |
| * @dev The string being parsed is not a properly formatted address. | |
| */ | |
| error StringsInvalidAddressFormat(); | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` decimal representation. | |
| */ | |
| function toString(uint256 value) internal pure returns (string memory) { | |
| unchecked { | |
| uint256 length = Math.log10(value) + 1; | |
| string memory buffer = new string(length); | |
| uint256 ptr; | |
| assembly ("memory-safe") { | |
| ptr := add(buffer, add(32, length)) | |
| } | |
| while (true) { | |
| ptr--; | |
| assembly ("memory-safe") { | |
| mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) | |
| } | |
| value /= 10; | |
| if (value == 0) break; | |
| } | |
| return buffer; | |
| } | |
| } | |
| /** | |
| * @dev Converts a `int256` to its ASCII `string` decimal representation. | |
| */ | |
| function toStringSigned(int256 value) internal pure returns (string memory) { | |
| return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); | |
| } | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. | |
| */ | |
| function toHexString(uint256 value) internal pure returns (string memory) { | |
| unchecked { | |
| return toHexString(value, Math.log256(value) + 1); | |
| } | |
| } | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. | |
| */ | |
| function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { | |
| uint256 localValue = value; | |
| bytes memory buffer = new bytes(2 * length + 2); | |
| buffer[0] = "0"; | |
| buffer[1] = "x"; | |
| for (uint256 i = 2 * length + 1; i > 1; --i) { | |
| buffer[i] = HEX_DIGITS[localValue & 0xf]; | |
| localValue >>= 4; | |
| } | |
| if (localValue != 0) { | |
| revert StringsInsufficientHexLength(value, length); | |
| } | |
| return string(buffer); | |
| } | |
| /** | |
| * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal | |
| * representation. | |
| */ | |
| function toHexString(address addr) internal pure returns (string memory) { | |
| return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); | |
| } | |
| /** | |
| * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal | |
| * representation, according to EIP-55. | |
| */ | |
| function toChecksumHexString(address addr) internal pure returns (string memory) { | |
| bytes memory buffer = bytes(toHexString(addr)); | |
| // hash the hex part of buffer (skip length + 2 bytes, length 40) | |
| uint256 hashValue; | |
| assembly ("memory-safe") { | |
| hashValue := shr(96, keccak256(add(buffer, 0x22), 40)) | |
| } | |
| for (uint256 i = 41; i > 1; --i) { | |
| // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f) | |
| if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) { | |
| // case shift by xoring with 0x20 | |
| buffer[i] ^= 0x20; | |
| } | |
| hashValue >>= 4; | |
| } | |
| return string(buffer); | |
| } | |
| /** | |
| * @dev Returns true if the two strings are equal. | |
| */ | |
| function equal(string memory a, string memory b) internal pure returns (bool) { | |
| return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); | |
| } | |
| /** | |
| * @dev Parse a decimal string and returns the value as a `uint256`. | |
| * | |
| * Requirements: | |
| * - The string must be formatted as `[0-9]*` | |
| * - The result must fit into an `uint256` type | |
| */ | |
| function parseUint(string memory input) internal pure returns (uint256) { | |
| return parseUint(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and | |
| * `end` (excluded). | |
| * | |
| * Requirements: | |
| * - The substring must be formatted as `[0-9]*` | |
| * - The result must fit into an `uint256` type | |
| */ | |
| function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { | |
| (bool success, uint256 value) = tryParseUint(input, begin, end); | |
| if (!success) revert StringsInvalidChar(); | |
| return value; | |
| } | |
| /** | |
| * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character. | |
| * | |
| * NOTE: This function will revert if the result does not fit in a `uint256`. | |
| */ | |
| function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) { | |
| return _tryParseUintUncheckedBounds(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid | |
| * character. | |
| * | |
| * NOTE: This function will revert if the result does not fit in a `uint256`. | |
| */ | |
| function tryParseUint( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) internal pure returns (bool success, uint256 value) { | |
| if (end > bytes(input).length || begin > end) return (false, 0); | |
| return _tryParseUintUncheckedBounds(input, begin, end); | |
| } | |
| /** | |
| * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that | |
| * `begin <= end <= input.length`. Other inputs would result in undefined behavior. | |
| */ | |
| function _tryParseUintUncheckedBounds( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) private pure returns (bool success, uint256 value) { | |
| bytes memory buffer = bytes(input); | |
| uint256 result = 0; | |
| for (uint256 i = begin; i < end; ++i) { | |
| uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); | |
| if (chr > 9) return (false, 0); | |
| result *= 10; | |
| result += chr; | |
| } | |
| return (true, result); | |
| } | |
| /** | |
| * @dev Parse a decimal string and returns the value as a `int256`. | |
| * | |
| * Requirements: | |
| * - The string must be formatted as `[-+]?[0-9]*` | |
| * - The result must fit in an `int256` type. | |
| */ | |
| function parseInt(string memory input) internal pure returns (int256) { | |
| return parseInt(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and | |
| * `end` (excluded). | |
| * | |
| * Requirements: | |
| * - The substring must be formatted as `[-+]?[0-9]*` | |
| * - The result must fit in an `int256` type. | |
| */ | |
| function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) { | |
| (bool success, int256 value) = tryParseInt(input, begin, end); | |
| if (!success) revert StringsInvalidChar(); | |
| return value; | |
| } | |
| /** | |
| * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if | |
| * the result does not fit in a `int256`. | |
| * | |
| * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. | |
| */ | |
| function tryParseInt(string memory input) internal pure returns (bool success, int256 value) { | |
| return _tryParseIntUncheckedBounds(input, 0, bytes(input).length); | |
| } | |
| uint256 private constant ABS_MIN_INT256 = 2 ** 255; | |
| /** | |
| * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid | |
| * character or if the result does not fit in a `int256`. | |
| * | |
| * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. | |
| */ | |
| function tryParseInt( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) internal pure returns (bool success, int256 value) { | |
| if (end > bytes(input).length || begin > end) return (false, 0); | |
| return _tryParseIntUncheckedBounds(input, begin, end); | |
| } | |
| /** | |
| * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that | |
| * `begin <= end <= input.length`. Other inputs would result in undefined behavior. | |
| */ | |
| function _tryParseIntUncheckedBounds( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) private pure returns (bool success, int256 value) { | |
| bytes memory buffer = bytes(input); | |
| // Check presence of a negative sign. | |
| bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty | |
| bool positiveSign = sign == bytes1("+"); | |
| bool negativeSign = sign == bytes1("-"); | |
| uint256 offset = (positiveSign || negativeSign).toUint(); | |
| (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end); | |
| if (absSuccess && absValue < ABS_MIN_INT256) { | |
| return (true, negativeSign ? -int256(absValue) : int256(absValue)); | |
| } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) { | |
| return (true, type(int256).min); | |
| } else return (false, 0); | |
| } | |
| /** | |
| * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`. | |
| * | |
| * Requirements: | |
| * - The string must be formatted as `(0x)?[0-9a-fA-F]*` | |
| * - The result must fit in an `uint256` type. | |
| */ | |
| function parseHexUint(string memory input) internal pure returns (uint256) { | |
| return parseHexUint(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and | |
| * `end` (excluded). | |
| * | |
| * Requirements: | |
| * - The substring must be formatted as `(0x)?[0-9a-fA-F]*` | |
| * - The result must fit in an `uint256` type. | |
| */ | |
| function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { | |
| (bool success, uint256 value) = tryParseHexUint(input, begin, end); | |
| if (!success) revert StringsInvalidChar(); | |
| return value; | |
| } | |
| /** | |
| * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character. | |
| * | |
| * NOTE: This function will revert if the result does not fit in a `uint256`. | |
| */ | |
| function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) { | |
| return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an | |
| * invalid character. | |
| * | |
| * NOTE: This function will revert if the result does not fit in a `uint256`. | |
| */ | |
| function tryParseHexUint( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) internal pure returns (bool success, uint256 value) { | |
| if (end > bytes(input).length || begin > end) return (false, 0); | |
| return _tryParseHexUintUncheckedBounds(input, begin, end); | |
| } | |
| /** | |
| * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that | |
| * `begin <= end <= input.length`. Other inputs would result in undefined behavior. | |
| */ | |
| function _tryParseHexUintUncheckedBounds( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) private pure returns (bool success, uint256 value) { | |
| bytes memory buffer = bytes(input); | |
| // skip 0x prefix if present | |
| bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty | |
| uint256 offset = hasPrefix.toUint() * 2; | |
| uint256 result = 0; | |
| for (uint256 i = begin + offset; i < end; ++i) { | |
| uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); | |
| if (chr > 15) return (false, 0); | |
| result *= 16; | |
| unchecked { | |
| // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check). | |
| // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked. | |
| result += chr; | |
| } | |
| } | |
| return (true, result); | |
| } | |
| /** | |
| * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`. | |
| * | |
| * Requirements: | |
| * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}` | |
| */ | |
| function parseAddress(string memory input) internal pure returns (address) { | |
| return parseAddress(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and | |
| * `end` (excluded). | |
| * | |
| * Requirements: | |
| * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}` | |
| */ | |
| function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) { | |
| (bool success, address value) = tryParseAddress(input, begin, end); | |
| if (!success) revert StringsInvalidAddressFormat(); | |
| return value; | |
| } | |
| /** | |
| * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly | |
| * formatted address. See {parseAddress-string} requirements. | |
| */ | |
| function tryParseAddress(string memory input) internal pure returns (bool success, address value) { | |
| return tryParseAddress(input, 0, bytes(input).length); | |
| } | |
| /** | |
| * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly | |
| * formatted address. See {parseAddress-string-uint256-uint256} requirements. | |
| */ | |
| function tryParseAddress( | |
| string memory input, | |
| uint256 begin, | |
| uint256 end | |
| ) internal pure returns (bool success, address value) { | |
| if (end > bytes(input).length || begin > end) return (false, address(0)); | |
| bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty | |
| uint256 expectedLength = 40 + hasPrefix.toUint() * 2; | |
| // check that input is the correct length | |
| if (end - begin == expectedLength) { | |
| // length guarantees that this does not overflow, and value is at most type(uint160).max | |
| (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end); | |
| return (s, address(uint160(v))); | |
| } else { | |
| return (false, address(0)); | |
| } | |
| } | |
| function _tryParseChr(bytes1 chr) private pure returns (uint8) { | |
| uint8 value = uint8(chr); | |
| // Try to parse `chr`: | |
| // - Case 1: [0-9] | |
| // - Case 2: [a-f] | |
| // - Case 3: [A-F] | |
| // - otherwise not supported | |
| unchecked { | |
| if (value > 47 && value < 58) value -= 48; | |
| else if (value > 96 && value < 103) value -= 87; | |
| else if (value > 64 && value < 71) value -= 55; | |
| else return type(uint8).max; | |
| } | |
| return value; | |
| } | |
| /** | |
| * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata. | |
| * | |
| * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped. | |
| * | |
| * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of | |
| * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode | |
| * characters that are not in this range, but other tooling may provide different results. | |
| */ | |
| function escapeJSON(string memory input) internal pure returns (string memory) { | |
| bytes memory buffer = bytes(input); | |
| bytes memory output = new bytes(2 * buffer.length); // worst case scenario | |
| uint256 outputLength = 0; | |
| for (uint256 i; i < buffer.length; ++i) { | |
| bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i)); | |
| if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) { | |
| output[outputLength++] = "\\"; | |
| if (char == 0x08) output[outputLength++] = "b"; | |
| else if (char == 0x09) output[outputLength++] = "t"; | |
| else if (char == 0x0a) output[outputLength++] = "n"; | |
| else if (char == 0x0c) output[outputLength++] = "f"; | |
| else if (char == 0x0d) output[outputLength++] = "r"; | |
| else if (char == 0x5c) output[outputLength++] = "\\"; | |
| else if (char == 0x22) { | |
| // solhint-disable-next-line quotes | |
| output[outputLength++] = '"'; | |
| } | |
| } else { | |
| output[outputLength++] = char; | |
| } | |
| } | |
| // write the actual length and deallocate unused memory | |
| assembly ("memory-safe") { | |
| mstore(output, outputLength) | |
| mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63))))) | |
| } | |
| return string(output); | |
| } | |
| /** | |
| * @dev Reads a bytes32 from a bytes array without bounds checking. | |
| * | |
| * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the | |
| * assembly block as such would prevent some optimizations. | |
| */ | |
| function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) { | |
| // This is not memory safe in the general case, but all calls to this private function are within bounds. | |
| assembly ("memory-safe") { | |
| value := mload(add(buffer, add(0x20, offset))) | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library TestsAccounts { | |
| function getAccount(uint index) pure public returns (address) { | |
| address[15] memory accounts; | |
| accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
| accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; | |
| accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db; | |
| accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB; | |
| accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2; | |
| accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372; | |
| accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678; | |
| accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7; | |
| accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C; | |
| accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC; | |
| accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c; | |
| accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C; | |
| accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB; | |
| accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225; | |
| accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148; | |
| return accounts[index]; | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library Assert { | |
| event AssertionEvent( | |
| bool passed, | |
| string message, | |
| string methodName | |
| ); | |
| event AssertionEventUint( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| uint256 returned, | |
| uint256 expected | |
| ); | |
| event AssertionEventInt( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| int256 returned, | |
| int256 expected | |
| ); | |
| event AssertionEventBool( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| bool returned, | |
| bool expected | |
| ); | |
| event AssertionEventAddress( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| address returned, | |
| address expected | |
| ); | |
| event AssertionEventBytes32( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| bytes32 returned, | |
| bytes32 expected | |
| ); | |
| event AssertionEventString( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| string returned, | |
| string expected | |
| ); | |
| event AssertionEventUintInt( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| uint256 returned, | |
| int256 expected | |
| ); | |
| event AssertionEventIntUint( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| int256 returned, | |
| uint256 expected | |
| ); | |
| function ok(bool a, string memory message) public returns (bool result) { | |
| result = a; | |
| emit AssertionEvent(result, message, "ok"); | |
| } | |
| function equal(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventUint(result, message, "equal", a, b); | |
| } | |
| function equal(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventInt(result, message, "equal", a, b); | |
| } | |
| function equal(bool a, bool b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventBool(result, message, "equal", a, b); | |
| } | |
| // TODO: only for certain versions of solc | |
| //function equal(fixed a, fixed b, string message) public returns (bool result) { | |
| // result = (a == b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| // TODO: only for certain versions of solc | |
| //function equal(ufixed a, ufixed b, string message) public returns (bool result) { | |
| // result = (a == b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| function equal(address a, address b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventAddress(result, message, "equal", a, b); | |
| } | |
| function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventBytes32(result, message, "equal", a, b); | |
| } | |
| function equal(string memory a, string memory b, string memory message) public returns (bool result) { | |
| result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b))); | |
| emit AssertionEventString(result, message, "equal", a, b); | |
| } | |
| function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventUint(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventInt(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(bool a, bool b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventBool(result, message, "notEqual", a, b); | |
| } | |
| // TODO: only for certain versions of solc | |
| //function notEqual(fixed a, fixed b, string message) public returns (bool result) { | |
| // result = (a != b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| // TODO: only for certain versions of solc | |
| //function notEqual(ufixed a, ufixed b, string message) public returns (bool result) { | |
| // result = (a != b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| function notEqual(address a, address b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventAddress(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventBytes32(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(string memory a, string memory b, string memory message) public returns (bool result) { | |
| result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b))); | |
| emit AssertionEventString(result, message, "notEqual", a, b); | |
| } | |
| /*----------------- Greater than --------------------*/ | |
| function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a > b); | |
| emit AssertionEventUint(result, message, "greaterThan", a, b); | |
| } | |
| function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a > b); | |
| emit AssertionEventInt(result, message, "greaterThan", a, b); | |
| } | |
| // TODO: safely compare between uint and int | |
| function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
| if(b < int(0)) { | |
| // int is negative uint "a" always greater | |
| result = true; | |
| } else { | |
| result = (a > uint(b)); | |
| } | |
| emit AssertionEventUintInt(result, message, "greaterThan", a, b); | |
| } | |
| function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
| if(a < int(0)) { | |
| // int is negative uint "b" always greater | |
| result = false; | |
| } else { | |
| result = (uint(a) > b); | |
| } | |
| emit AssertionEventIntUint(result, message, "greaterThan", a, b); | |
| } | |
| /*----------------- Lesser than --------------------*/ | |
| function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a < b); | |
| emit AssertionEventUint(result, message, "lesserThan", a, b); | |
| } | |
| function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a < b); | |
| emit AssertionEventInt(result, message, "lesserThan", a, b); | |
| } | |
| // TODO: safely compare between uint and int | |
| function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
| if(b < int(0)) { | |
| // int is negative int "b" always lesser | |
| result = false; | |
| } else { | |
| result = (a < uint(b)); | |
| } | |
| emit AssertionEventUintInt(result, message, "lesserThan", a, b); | |
| } | |
| function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
| if(a < int(0)) { | |
| // int is negative int "a" always lesser | |
| result = true; | |
| } else { | |
| result = (uint(a) < b); | |
| } | |
| emit AssertionEventIntUint(result, message, "lesserThan", a, b); | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "overrides": [ | |
| { | |
| "files": "*.sol", | |
| "options": { | |
| "printWidth": 80, | |
| "tabWidth": 4, | |
| "useTabs": false, | |
| "singleQuote": false, | |
| "bracketSpacing": false | |
| } | |
| }, | |
| { | |
| "files": "*.yml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.yaml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.toml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.json", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.js", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.ts", | |
| "options": {} | |
| } | |
| ] | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "db": { | |
| "0490f0d98c06a6234cc374564f984580f33770d4605e5781451d4971d3235a2d": "0xf873a1205931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "937514b0e72ad8da6bb5e656f25334fb09e7018992ae794d5c237fbf27a5db15": "0xf367bb42b7a68034c8a0fd695dbabb1e13f2f7670585b228632b7cd5baba88f0", | |
| "ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f": "0xf872a0399bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "dac9f9238909bae6bedf62a95a3ac503b5e6927b8243b9b44e0e335869bef325": "0xf8518080808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080", | |
| "6e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2": "0xf872a034a10bfd00977f54cc3450c9b25c9b3a502a089eba0097ba35fc33c4ea5fcb54b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "1db6a1394b96218e282fb52d559676dbecfba9a78146880e35ef38cc061dbf44": "0xf871a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080", | |
| "acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c": "0xf872a03fbe3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "de2548e2521504daf92524b329dbb037a000ed381a8f810b8607e2f8832ada7d": "0xf891a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c808080", | |
| "5f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c": "0xf872a036d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "09cc43c2655ecf235e9ef7dbf5c6f27157eb9f6e2b53433a3f0f13301ca34450": "0xf8b1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "69a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bd": "0xf872a0323d89d4ba0f8b56a459710de4b44820d73e93736cfc0667f35cdd5142b70f0db84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "7b184ca9e86ac8499d2cde865d80d191cbbeca4393fd2b74df5972f5426e0895": "0xf8d1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "0968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315": "0xf872a03c22adb6b75b7a618594eacef369bc4f0ec06380e8630fd7580f9bf0ea413ca8b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "b955e456c73a5460828b40c246ac4e09b60c899b969e7a9520783863649f104a": "0xf8f1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "70f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358": "0xf872a03b9f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "e628eda7692102d1123972b085e483fb81586793e6e4bb395f356f319785b924": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10": "0xf872a0209bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "35196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea2": "0xf872a0207839edeb5b3ee9a2dee69954b24aeb3f91b8ff4c608efd90618351fe77152fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363": "0xf85180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe1080808080808080", | |
| "4b7be564e069212c8c0dd694ce21c7051e5cb7bbb527e3af73faf7e61de082c0": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b36380a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515a": "0xf872a03aea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "1b83601c6f891d16b1422e65ed3cd47bcbe1342010db6168a0508de8597ac327": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "82f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d68": "0xf872a0209f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3": "0xf872a020591967aed668a4b27645ff40c444892d91bf5951b382995d4d4f6ee3a2ce03b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "9d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797": "0xf85180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080808080", | |
| "0733321bda3c83f42aeeb32f8dcad18bb4f4c2b80fa60dee4b6eb25f0952524c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "0932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3": "0xf872a020a258265696d227eef589fd6cd14671a82aa2963ec2214eb048fca5441c4a7eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8": "0xf87180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10808080a00932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3808080", | |
| "a137d310a084b364dfbf0de1114f64e94253e42baa0297980c4a88db4e7d9aa8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "9aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec": "0xf872a020be3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a0014882": "0xf872a0209ae219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d": "0xf851808080808080808080808080a0090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a00148828080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80", | |
| "53ac286d5d31f0a7f768060b7f9f198956d75c903a698ae4fbb3dcc9f9d5e0b8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "1a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110": "0xf8719f20e219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef8": "0xf8719f201e8c4eba798a431ca40726ca69bda8c7067f1690340e5b0a08d83d00d9cbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c": "0xf85180808080a0ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef88080808080a01a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110808080808080", | |
| "d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f": "0xe219a0f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c", | |
| "853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a": "0xf851808080808080808080808080a0d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f8080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80", | |
| "29a7ea17591b34ca73ee13832a64db6d8565d9ab4dbafea03842fabe139016fa": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "48e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d": "0xf872a020ea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd": "0xf872a020e7c546eb582218cf94b848c36f3b058e2518876240ae6100c4ef23d38f3e07b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546bab": "0xf85180808080808080808080a048e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d80808080a0dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd80", | |
| "c87ee106e21de6f375b1424af09b5235d42f0524163ba739aa52ff49cf6e0fb9": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "1840a38ae89bbddfb2bb1c53265e2132eed7f7df77b5e75acd91a548b755fc43": "0xf844a120290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563a1a04d79546f6b656e0000000000000000000000000000000000000000000000000e", | |
| "2b4924e72d335ed9020f204cd3c6fc55b34455f4d94721bde8f543c204f4169c": "0xf843a0390decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563a1a04d79546f6b656e0000000000000000000000000000000000000000000000000e", | |
| "3f2bae0176d6fc05d3b648af5411d3e18b2874b77e5ab85ca196c36658536cbf": "0xf843a0310e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6a1a04d544b0000000000000000000000000000000000000000000000000000000006", | |
| "147e63dd9e2150d37e06614121c0845122b55b7adb439c2662c53b505b0b672f": "0xf8518080a02b4924e72d335ed9020f204cd3c6fc55b34455f4d94721bde8f543c204f4169c8080808080808080a03f2bae0176d6fc05d3b648af5411d3e18b2874b77e5ab85ca196c36658536cbf8080808080", | |
| "bf40a9d1703e12b6e9adbdd4b52bf85a3bbfaab8a48efdeb37183698aee5c470": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d57243e00a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "1958a370471369a2e1d116023894797927853141dd11d84f7439422ac1886f11": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0bf40a9d1703e12b6e9adbdd4b52bf85a3bbfaab8a48efdeb37183698aee5c470808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "5492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0189056bc75e2d57243e00a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "3385f209bb45a8787ae9ab5792cff76e64c0e643c5b2af01da3825e1418e5c22": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "57ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a4": "0xf872a020d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "9b5e595475007074a246b52a8b850b6a55a1ca47751ed6d715c290926ece7d10": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8448080a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "8ebfa1bb8d7f17c4c7b061298856df0d764d78874df9bbee0e2607b97a282e6f": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a09b5e595475007074a246b52a8b850b6a55a1ca47751ed6d715c290926ece7d108080808080808080", | |
| "d4f7345b04cb4e371827c71c4dab83da5e48ebee74d977ff4d485b2fb8acccfe": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a08ebfa1bb8d7f17c4c7b061298856df0d764d78874df9bbee0e2607b97a282e6f80", | |
| "bb6ee835518e56b6623af794f7aa4fc29ad48c4def725b8a2ff64b38bd22c789": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "78411d2196a2e4c560372788d3e499d0b71f36204f1961a41ef216a7fd574e95": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a0bb6ee835518e56b6623af794f7aa4fc29ad48c4def725b8a2ff64b38bd22c7898080808080808080", | |
| "66aedbb3dc39b3a989497ee17099845b4807ba47e50b82de95f0da0f6274d60c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a078411d2196a2e4c560372788d3e499d0b71f36204f1961a41ef216a7fd574e9580", | |
| "cda30e1dba26f66e75a71b269a2e107cfd73dc6646c9c647e9510b0dbd8f9db8": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a01840a38ae89bbddfb2bb1c53265e2132eed7f7df77b5e75acd91a548b755fc43a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "5cf63002b98e0fc44e96bf20f7afa68613a0db538808f3844602fbca71a42399": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a0cda30e1dba26f66e75a71b269a2e107cfd73dc6646c9c647e9510b0dbd8f9db88080808080808080", | |
| "8dd6da025be4fe188de53f0b2c536a4b95d27957c3b6c47b3154b5a3f889c9e7": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05cf63002b98e0fc44e96bf20f7afa68613a0db538808f3844602fbca71a4239980", | |
| "4e322752aff1f2b1610484a3d42a48dafa22aa57635839ce178b122e6c73e5e2": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a0147e63dd9e2150d37e06614121c0845122b55b7adb439c2662c53b505b0b672fa0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "70f0953a7d6414149e1619b06da2bb564903bbd1874c5e26b341c78e9ccd6b13": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a04e322752aff1f2b1610484a3d42a48dafa22aa57635839ce178b122e6c73e5e28080808080808080", | |
| "5971b9a5c22958e16121f7187f882bcaccaa2f29d1a098a6379ca808e4081a92": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a070f0953a7d6414149e1619b06da2bb564903bbd1874c5e26b341c78e9ccd6b1380", | |
| "631cdb4fcaefb40f7e29ff4c97ff595917aac94e5d5f75ff84ba32d851444d51e4": "0x608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c80636352211e1161008a578063a22cb46511610064578063a22cb46514610221578063b88d4fde1461023d578063c87b56dd14610259578063e985e9c514610289576100cd565b80636352211e146101a357806370a08231146101d357806395d89b4114610203576100cd565b806301ffc9a7146100d157806306fdde0314610101578063081812fc1461011f578063095ea7b31461014f57806323b872dd1461016b57806342842e0e14610187575b5f5ffd5b6100eb60048036038101906100e69190611471565b6102b9565b6040516100f891906114b6565b60405180910390f35b61010961039a565b604051610116919061153f565b60405180910390f35b61013960048036038101906101349190611592565b610429565b60405161014691906115fc565b60405180910390f35b6101696004803603810190610164919061163f565b610444565b005b6101856004803603810190610180919061167d565b61045a565b005b6101a1600480360381019061019c919061167d565b610559565b005b6101bd60048036038101906101b89190611592565b610578565b6040516101ca91906115fc565b60405180910390f35b6101ed60048036038101906101e891906116cd565b610589565b6040516101fa9190611707565b60405180910390f35b61020b61063f565b604051610218919061153f565b60405180910390f35b61023b6004803603810190610236919061174a565b6106cf565b005b610257600480360381019061025291906118b4565b6106e5565b005b610273600480360381019061026e9190611592565b61070a565b604051610280919061153f565b60405180910390f35b6102a3600480360381019061029e9190611934565b610770565b6040516102b091906114b6565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103935750610392826107fe565b5b9050919050565b60605f80546103a89061199f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d49061199f565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f61043382610867565b5061043d826108ed565b9050919050565b6104568282610451610926565b61092d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104ca575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016104c191906115fc565b60405180910390fd5b5f6104dd83836104d8610926565b61093f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610553578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161054a939291906119cf565b60405180910390fd5b50505050565b61057383838360405180602001604052805f8152506106e5565b505050565b5f61058282610867565b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105fa575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016105f191906115fc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606001805461064e9061199f565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061199f565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b6106e16106da610926565b8383610b4a565b5050565b6106f084848461045a565b6107046106fb610926565b85858585610cb3565b50505050565b606061071582610867565b505f61071f610e5f565b90505f81511161073d5760405180602001604052805f815250610768565b8061074784610e75565b604051602001610758929190611a3e565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f5f61087283610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e457826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016108db9190611707565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61093a8383836001610f78565b505050565b5f5f61094a84610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461098b5761098a818486611137565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576109ca5f855f5f610f78565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610a9557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bba57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610bb191906115fc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ca691906114b6565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115610e58578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02868685856040518563ffffffff1660e01b8152600401610d119493929190611ab3565b6020604051808303815f875af1925050508015610d4c57506040513d601f19601f82011682018060405250810190610d499190611b11565b60015b610dcd573d805f8114610d7a576040519150601f19603f3d011682016040523d82523d5f602084013e610d7f565b606091505b505f815103610dc557836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610dbc91906115fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610e5657836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610e4d91906115fc565b60405180910390fd5b505b5050505050565b606060405180602001604052805f815250905090565b60605f6001610e83846111fa565b0190505f8167ffffffffffffffff811115610ea157610ea0611790565b5b6040519080825280601f01601f191660200182016040528015610ed35781602001600182028036833780820191505090505b5090505f82602001820190505b600115610f34578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581610f2957610f28611b3c565b5b0494505f8503610ee0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8080610fb057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110e2575f610fbf84610867565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561102957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561103c575061103a8184610770565b155b1561107e57826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161107591906115fc565b60405180910390fd5b81156110e057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b61114283838361134b565b6111f5575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b657806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016111ad9190611707565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016111ec929190611b69565b60405180910390fd5b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161124c5761124b611b3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611293576d04ee2d6d415b85acef8100000000838161128957611288611b3c565b5b0492506020810190505b662386f26fc1000083106112c257662386f26fc1000083816112b8576112b7611b3c565b5b0492506010810190505b6305f5e10083106112eb576305f5e10083816112e1576112e0611b3c565b5b0492506008810190505b612710831061131057612710838161130657611305611b3c565b5b0492506004810190505b60648310611333576064838161132957611328611b3c565b5b0492506002810190505b600a8310611342576001810190505b80915050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140257508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c357506113c28484610770565b5b8061140157508273ffffffffffffffffffffffffffffffffffffffff166113e9836108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114508161141c565b811461145a575f5ffd5b50565b5f8135905061146b81611447565b92915050565b5f6020828403121561148657611485611414565b5b5f6114938482850161145d565b91505092915050565b5f8115159050919050565b6114b08161149c565b82525050565b5f6020820190506114c95f8301846114a7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611511826114cf565b61151b81856114d9565b935061152b8185602086016114e9565b611534816114f7565b840191505092915050565b5f6020820190508181035f8301526115578184611507565b905092915050565b5f819050919050565b6115718161155f565b811461157b575f5ffd5b50565b5f8135905061158c81611568565b92915050565b5f602082840312156115a7576115a6611414565b5b5f6115b48482850161157e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115e6826115bd565b9050919050565b6115f6816115dc565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b61161e816115dc565b8114611628575f5ffd5b50565b5f8135905061163981611615565b92915050565b5f5f6040838503121561165557611654611414565b5b5f6116628582860161162b565b92505060206116738582860161157e565b9150509250929050565b5f5f5f6060848603121561169457611693611414565b5b5f6116a18682870161162b565b93505060206116b28682870161162b565b92505060406116c38682870161157e565b9150509250925092565b5f602082840312156116e2576116e1611414565b5b5f6116ef8482850161162b565b91505092915050565b6117018161155f565b82525050565b5f60208201905061171a5f8301846116f8565b92915050565b6117298161149c565b8114611733575f5ffd5b50565b5f8135905061174481611720565b92915050565b5f5f604083850312156117605761175f611414565b5b5f61176d8582860161162b565b925050602061177e85828601611736565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117c6826114f7565b810181811067ffffffffffffffff821117156117e5576117e4611790565b5b80604052505050565b5f6117f761140b565b905061180382826117bd565b919050565b5f67ffffffffffffffff82111561182257611821611790565b5b61182b826114f7565b9050602081019050919050565b828183375f83830152505050565b5f61185861185384611808565b6117ee565b9050828152602081018484840111156118745761187361178c565b5b61187f848285611838565b509392505050565b5f82601f83011261189b5761189a611788565b5b81356118ab848260208601611846565b91505092915050565b5f5f5f5f608085870312156118cc576118cb611414565b5b5f6118d98782880161162b565b94505060206118ea8782880161162b565b93505060406118fb8782880161157e565b925050606085013567ffffffffffffffff81111561191c5761191b611418565b5b61192887828801611887565b91505092959194509250565b5f5f6040838503121561194a57611949611414565b5b5f6119578582860161162b565b92505060206119688582860161162b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119b657607f821691505b6020821081036119c9576119c8611972565b5b50919050565b5f6060820190506119e25f8301866115ed565b6119ef60208301856116f8565b6119fc60408301846115ed565b949350505050565b5f81905092915050565b5f611a18826114cf565b611a228185611a04565b9350611a328185602086016114e9565b80840191505092915050565b5f611a498285611a0e565b9150611a558284611a0e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f611a8582611a61565b611a8f8185611a6b565b9350611a9f8185602086016114e9565b611aa8816114f7565b840191505092915050565b5f608082019050611ac65f8301876115ed565b611ad360208301866115ed565b611ae060408301856116f8565b8181036060830152611af28184611a7b565b905095945050505050565b5f81519050611b0b81611447565b92915050565b5f60208284031215611b2657611b25611414565b5b5f611b3384828501611afd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050611b7c5f8301856115ed565b611b8960208301846116f8565b939250505056fea2646970667358221220027113139486392ef42efe356885bb848cdfc20ba039e421064d7b4f14b179bb64736f6c634300081e0033", | |
| "d5166e65d74450077efe2928a827403c1e5c91093d1e6d1fe1c49eba8d785085": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a0147e63dd9e2150d37e06614121c0845122b55b7adb439c2662c53b505b0b672fa01cdb4fcaefb40f7e29ff4c97ff595917aac94e5d5f75ff84ba32d851444d51e4", | |
| "fab18d3e19882ef6c2948fd64ad77193fec7701d884c9c6f3e0904062faa5730": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a0d5166e65d74450077efe2928a827403c1e5c91093d1e6d1fe1c49eba8d7850858080808080808080", | |
| "25592325c4d973ab1e24bbcca3b4636ad5967712a3e527aae920644452b07416": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a05492888cc7c534f4fd1f9f803a9c0c9b14a3aa268d7aa1a226c0b5a2df295078808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0fab18d3e19882ef6c2948fd64ad77193fec7701d884c9c6f3e0904062faa573080", | |
| "fa946f5ad0940aa36b768448d69f549ea9146fe4c95ec3427b44989851bdbad8": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0189056bc75e2d62ddd776a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "d34a3ab9c30cd00c3fce3890688ad06be10e282e64367046b5b90316879899ae": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0fa946f5ad0940aa36b768448d69f549ea9146fe4c95ec3427b44989851bdbad8808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0fab18d3e19882ef6c2948fd64ad77193fec7701d884c9c6f3e0904062faa573080", | |
| "9d51d7aab1395ed0e5340180075a15bfd2a426d8c63dec0fec83f4d5700a1e78": "0xf86ca020a40a9004224e397238839b469142c546607ee7a8b114ded86182fceae00e35b849f8478083191445a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "6b55a37e73fc781819e22d4daeeecee636e3d7317587ddb90eaa611eb476e163": "0xf87180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080a09d51d7aab1395ed0e5340180075a15bfd2a426d8c63dec0fec83f4d5700a1e788080", | |
| "f367bb42b7a68034c8a0fd695dbabb1e13f2f7670585b228632b7cd5baba88f0": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0fa946f5ad0940aa36b768448d69f549ea9146fe4c95ec3427b44989851bdbad8808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba06b55a37e73fc781819e22d4daeeecee636e3d7317587ddb90eaa611eb476e163a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0fab18d3e19882ef6c2948fd64ad77193fec7701d884c9c6f3e0904062faa573080", | |
| "3d47ae8a23702c99a83a08575aa21164eee8f66d52497298784655542b66f1c5": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d62d65160a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "d4a4ef967101e5e111118f2cb99d80c43f5ae29737f0d57364d66d2e5fcad35c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a03d47ae8a23702c99a83a08575aa21164eee8f66d52497298784655542b66f1c5808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "90b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0189056bc75e2d62d65160a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
| "00f1ba65ad962875ea26d2995511b5b78e6430cb8c0830a24731422ef5f7b022": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80", | |
| "d68fcc00eb1c6e0e312d3ae7aad63c820d492e3774a563d3894e12723cf87d1c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a08ebfa1bb8d7f17c4c7b061298856df0d764d78874df9bbee0e2607b97a282e6f80", | |
| "b0e0ac1a4349aca3517035c72da725953d5a851ba1f6035e96934457d2b123b6": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a078411d2196a2e4c560372788d3e499d0b71f36204f1961a41ef216a7fd574e9580", | |
| "6852808510d8e9994af77691dae050e8d8757dffbc1d3c5ae3c9a16f3f82441e": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05cf63002b98e0fc44e96bf20f7afa68613a0db538808f3844602fbca71a4239980", | |
| "7fc41d214ee5f79b995bfdd98df6f9ce37a42d6e99890088c50a0d120219f54f": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a070f0953a7d6414149e1619b06da2bb564903bbd1874c5e26b341c78e9ccd6b1380", | |
| "9602db92808ce12992151855ec097312f4e479122e3ed653974d8f441d94be5f": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a090b62d373125970519a3d4054bf2693d68376378dd7e1cdefeae19db0352a6ae808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a0fab18d3e19882ef6c2948fd64ad77193fec7701d884c9c6f3e0904062faa573080" | |
| }, | |
| "blocks": [ | |
| "0xf90260f9025aa00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940e9281e9c6a0808672eaba6bd1220e144c9bb07aa00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008080837a1200808468419e3380a0000000000000000000000000000000000000000000000000000000000000000088000000000000000007a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000a0e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855c0c0c0", | |
| "0xf9223bf9025aa07bc28e8c1725e48c515c91c43f2ce3de2f43c93c365e5f38c3aeb9bf5cd1265ea01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948945a1288dc78a6d8952a92c77aee6730b414778a00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008001831cd750808468419e6580a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000a0e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855f91fd9b91fd602f91fd201800107831cd7508080b91f81608060405234801561000f575f5ffd5b506040518060400160405280600781526020017f4d79546f6b656e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d544b0000000000000000000000000000000000000000000000000000000000815250815f908161008a91906102df565b50806001908161009a91906102df565b5050506103ae565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011d57607f821691505b6020821081036101305761012f6100d9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610157565b61019c8683610157565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101e06101db6101d6846101b4565b6101bd565b6101b4565b9050919050565b5f819050919050565b6101f9836101c6565b61020d610205826101e7565b848454610163565b825550505050565b5f5f905090565b610224610215565b61022f8184846101f0565b505050565b5b81811015610252576102475f8261021c565b600181019050610235565b5050565b601f8211156102975761026881610136565b61027184610148565b81016020851015610280578190505b61029461028c85610148565b830182610234565b50505b505050565b5f82821c905092915050565b5f6102b75f198460080261029c565b1980831691505092915050565b5f6102cf83836102a8565b9150826002028217905092915050565b6102e8826100a2565b67ffffffffffffffff811115610301576103006100ac565b5b61030b8254610106565b610316828285610256565b5f60209050601f831160018114610347575f8415610335578287015190505b61033f85826102c4565b8655506103a6565b601f19841661035586610136565b5f5b8281101561037c57848901518255600182019150602085019450602081019050610357565b868310156103995784890151610395601f8916826102a8565b8355505b6001600288020188555050505b505050505050565b611bc6806103bb5f395ff3fe608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c80636352211e1161008a578063a22cb46511610064578063a22cb46514610221578063b88d4fde1461023d578063c87b56dd14610259578063e985e9c514610289576100cd565b80636352211e146101a357806370a08231146101d357806395d89b4114610203576100cd565b806301ffc9a7146100d157806306fdde0314610101578063081812fc1461011f578063095ea7b31461014f57806323b872dd1461016b57806342842e0e14610187575b5f5ffd5b6100eb60048036038101906100e69190611471565b6102b9565b6040516100f891906114b6565b60405180910390f35b61010961039a565b604051610116919061153f565b60405180910390f35b61013960048036038101906101349190611592565b610429565b60405161014691906115fc565b60405180910390f35b6101696004803603810190610164919061163f565b610444565b005b6101856004803603810190610180919061167d565b61045a565b005b6101a1600480360381019061019c919061167d565b610559565b005b6101bd60048036038101906101b89190611592565b610578565b6040516101ca91906115fc565b60405180910390f35b6101ed60048036038101906101e891906116cd565b610589565b6040516101fa9190611707565b60405180910390f35b61020b61063f565b604051610218919061153f565b60405180910390f35b61023b6004803603810190610236919061174a565b6106cf565b005b610257600480360381019061025291906118b4565b6106e5565b005b610273600480360381019061026e9190611592565b61070a565b604051610280919061153f565b60405180910390f35b6102a3600480360381019061029e9190611934565b610770565b6040516102b091906114b6565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103935750610392826107fe565b5b9050919050565b60605f80546103a89061199f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d49061199f565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f61043382610867565b5061043d826108ed565b9050919050565b6104568282610451610926565b61092d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104ca575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016104c191906115fc565b60405180910390fd5b5f6104dd83836104d8610926565b61093f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610553578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161054a939291906119cf565b60405180910390fd5b50505050565b61057383838360405180602001604052805f8152506106e5565b505050565b5f61058282610867565b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105fa575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016105f191906115fc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606001805461064e9061199f565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061199f565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b6106e16106da610926565b8383610b4a565b5050565b6106f084848461045a565b6107046106fb610926565b85858585610cb3565b50505050565b606061071582610867565b505f61071f610e5f565b90505f81511161073d5760405180602001604052805f815250610768565b8061074784610e75565b604051602001610758929190611a3e565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f5f61087283610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e457826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016108db9190611707565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61093a8383836001610f78565b505050565b5f5f61094a84610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461098b5761098a818486611137565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576109ca5f855f5f610f78565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610a9557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bba57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610bb191906115fc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ca691906114b6565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115610e58578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02868685856040518563ffffffff1660e01b8152600401610d119493929190611ab3565b6020604051808303815f875af1925050508015610d4c57506040513d601f19601f82011682018060405250810190610d499190611b11565b60015b610dcd573d805f8114610d7a576040519150601f19603f3d011682016040523d82523d5f602084013e610d7f565b606091505b505f815103610dc557836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610dbc91906115fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610e5657836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610e4d91906115fc565b60405180910390fd5b505b5050505050565b606060405180602001604052805f815250905090565b60605f6001610e83846111fa565b0190505f8167ffffffffffffffff811115610ea157610ea0611790565b5b6040519080825280601f01601f191660200182016040528015610ed35781602001600182028036833780820191505090505b5090505f82602001820190505b600115610f34578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581610f2957610f28611b3c565b5b0494505f8503610ee0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8080610fb057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110e2575f610fbf84610867565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561102957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561103c575061103a8184610770565b155b1561107e57826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161107591906115fc565b60405180910390fd5b81156110e057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b61114283838361134b565b6111f5575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b657806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016111ad9190611707565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016111ec929190611b69565b60405180910390fd5b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161124c5761124b611b3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611293576d04ee2d6d415b85acef8100000000838161128957611288611b3c565b5b0492506020810190505b662386f26fc1000083106112c257662386f26fc1000083816112b8576112b7611b3c565b5b0492506010810190505b6305f5e10083106112eb576305f5e10083816112e1576112e0611b3c565b5b0492506008810190505b612710831061131057612710838161130657611305611b3c565b5b0492506004810190505b60648310611333576064838161132957611328611b3c565b5b0492506002810190505b600a8310611342576001810190505b80915050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140257508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c357506113c28484610770565b5b8061140157508273ffffffffffffffffffffffffffffffffffffffff166113e9836108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114508161141c565b811461145a575f5ffd5b50565b5f8135905061146b81611447565b92915050565b5f6020828403121561148657611485611414565b5b5f6114938482850161145d565b91505092915050565b5f8115159050919050565b6114b08161149c565b82525050565b5f6020820190506114c95f8301846114a7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611511826114cf565b61151b81856114d9565b935061152b8185602086016114e9565b611534816114f7565b840191505092915050565b5f6020820190508181035f8301526115578184611507565b905092915050565b5f819050919050565b6115718161155f565b811461157b575f5ffd5b50565b5f8135905061158c81611568565b92915050565b5f602082840312156115a7576115a6611414565b5b5f6115b48482850161157e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115e6826115bd565b9050919050565b6115f6816115dc565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b61161e816115dc565b8114611628575f5ffd5b50565b5f8135905061163981611615565b92915050565b5f5f6040838503121561165557611654611414565b5b5f6116628582860161162b565b92505060206116738582860161157e565b9150509250929050565b5f5f5f6060848603121561169457611693611414565b5b5f6116a18682870161162b565b93505060206116b28682870161162b565b92505060406116c38682870161157e565b9150509250925092565b5f602082840312156116e2576116e1611414565b5b5f6116ef8482850161162b565b91505092915050565b6117018161155f565b82525050565b5f60208201905061171a5f8301846116f8565b92915050565b6117298161149c565b8114611733575f5ffd5b50565b5f8135905061174481611720565b92915050565b5f5f604083850312156117605761175f611414565b5b5f61176d8582860161162b565b925050602061177e85828601611736565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117c6826114f7565b810181811067ffffffffffffffff821117156117e5576117e4611790565b5b80604052505050565b5f6117f761140b565b905061180382826117bd565b919050565b5f67ffffffffffffffff82111561182257611821611790565b5b61182b826114f7565b9050602081019050919050565b828183375f83830152505050565b5f61185861185384611808565b6117ee565b9050828152602081018484840111156118745761187361178c565b5b61187f848285611838565b509392505050565b5f82601f83011261189b5761189a611788565b5b81356118ab848260208601611846565b91505092915050565b5f5f5f5f608085870312156118cc576118cb611414565b5b5f6118d98782880161162b565b94505060206118ea8782880161162b565b93505060406118fb8782880161157e565b925050606085013567ffffffffffffffff81111561191c5761191b611418565b5b61192887828801611887565b91505092959194509250565b5f5f6040838503121561194a57611949611414565b5b5f6119578582860161162b565b92505060206119688582860161162b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119b657607f821691505b6020821081036119c9576119c8611972565b5b50919050565b5f6060820190506119e25f8301866115ed565b6119ef60208301856116f8565b6119fc60408301846115ed565b949350505050565b5f81905092915050565b5f611a18826114cf565b611a228185611a04565b9350611a328185602086016114e9565b80840191505092915050565b5f611a498285611a0e565b9150611a558284611a0e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f611a8582611a61565b611a8f8185611a6b565b9350611a9f8185602086016114e9565b611aa8816114f7565b840191505092915050565b5f608082019050611ac65f8301876115ed565b611ad360208301866115ed565b611ae060408301856116f8565b8181036060830152611af28184611a7b565b905095945050505050565b5f81519050611b0b81611447565b92915050565b5f60208284031215611b2657611b25611414565b5b5f611b3384828501611afd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050611b7c5f8301856115ed565b611b8960208301846116f8565b939250505056fea2646970667358221220027113139486392ef42efe356885bb848cdfc20ba039e421064d7b4f14b179bb64736f6c634300081e0033c001a042bae10bd51087a37bc5bca75584937932fb4f0ed3a7ea77d5c2ff8eb0647f64a0773a2b261c9b3e9e781be0fc805057eca51a5aa5e93e850a000ee9cbbafb05c3c0c0" | |
| ], | |
| "latestBlockNumber": "0x1", | |
| "baseBlockNumber": "0x0" | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": { | |
| "@_206": { | |
| "entryPoint": null, | |
| "id": 206, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "@_6396": { | |
| "entryPoint": null, | |
| "id": 6396, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "array_dataslot_t_string_storage": { | |
| "entryPoint": 310, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 162, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "clean_up_bytearray_end_slots_t_string_storage": { | |
| "entryPoint": 598, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 436, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "clear_storage_range_t_bytes1": { | |
| "entryPoint": 564, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "convert_t_uint256_to_t_uint256": { | |
| "entryPoint": 454, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { | |
| "entryPoint": 735, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "divide_by_32_ceil": { | |
| "entryPoint": 328, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "extract_byte_array_length": { | |
| "entryPoint": 262, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "extract_used_part_and_set_length_of_short_byte_array": { | |
| "entryPoint": 708, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "identity": { | |
| "entryPoint": 445, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "mask_bytes_dynamic": { | |
| "entryPoint": 680, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "panic_error_0x22": { | |
| "entryPoint": 217, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x41": { | |
| "entryPoint": 172, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "prepare_store_t_uint256": { | |
| "entryPoint": 487, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "shift_left_dynamic": { | |
| "entryPoint": 343, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "shift_right_unsigned_dynamic": { | |
| "entryPoint": 668, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "storage_set_to_zero_t_uint256": { | |
| "entryPoint": 540, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "update_byte_slice_dynamic32": { | |
| "entryPoint": 355, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "update_storage_value_t_uint256_to_t_uint256": { | |
| "entryPoint": 496, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "zero_value_for_split_t_uint256": { | |
| "entryPoint": 533, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nativeSrc": "0:5231:15", | |
| "nodeType": "YulBlock", | |
| "src": "0:5231:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "66:40:15", | |
| "nodeType": "YulBlock", | |
| "src": "66:40:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "77:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "77:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "93:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "93:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "87:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "87:5:15" | |
| }, | |
| "nativeSrc": "87:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "87:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "77:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "77:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nativeSrc": "7:99:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "49:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "49:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "59:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "59:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:99:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "140:152:15", | |
| "nodeType": "YulBlock", | |
| "src": "140:152:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "157:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "157:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "160:77:15", | |
| "nodeType": "YulLiteral", | |
| "src": "160:77:15", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "150:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "150:6:15" | |
| }, | |
| "nativeSrc": "150:88:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "150:88:15" | |
| }, | |
| "nativeSrc": "150:88:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "150:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "254:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "254:1:15", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "257:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "257:4:15", | |
| "type": "", | |
| "value": "0x41" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "247:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "247:6:15" | |
| }, | |
| "nativeSrc": "247:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "247:15:15" | |
| }, | |
| "nativeSrc": "247:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "247:15:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "278:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "278:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "281:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "281:4:15", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "271:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "271:6:15" | |
| }, | |
| "nativeSrc": "271:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "271:15:15" | |
| }, | |
| "nativeSrc": "271:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "271:15:15" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x41", | |
| "nativeSrc": "112:180:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "112:180:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "326:152:15", | |
| "nodeType": "YulBlock", | |
| "src": "326:152:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "343:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "343:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "346:77:15", | |
| "nodeType": "YulLiteral", | |
| "src": "346:77:15", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "336:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "336:6:15" | |
| }, | |
| "nativeSrc": "336:88:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "336:88:15" | |
| }, | |
| "nativeSrc": "336:88:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "336:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "440:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "440:1:15", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "443:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "443:4:15", | |
| "type": "", | |
| "value": "0x22" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "433:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "433:6:15" | |
| }, | |
| "nativeSrc": "433:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "433:15:15" | |
| }, | |
| "nativeSrc": "433:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "433:15:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "464:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "464:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "467:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "467:4:15", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "457:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "457:6:15" | |
| }, | |
| "nativeSrc": "457:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "457:15:15" | |
| }, | |
| "nativeSrc": "457:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "457:15:15" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x22", | |
| "nativeSrc": "298:180:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "298:180:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "535:269:15", | |
| "nodeType": "YulBlock", | |
| "src": "535:269:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "545:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "545:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "559:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "559:4:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "565:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "565:1:15", | |
| "type": "", | |
| "value": "2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "div", | |
| "nativeSrc": "555:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "555:3:15" | |
| }, | |
| "nativeSrc": "555:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "555:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "545:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "545:6:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "576:38:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "576:38:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "606:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "606:4:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "612:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "612:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "602:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "602:3:15" | |
| }, | |
| "nativeSrc": "602:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "602:12:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "580:18:15", | |
| "nodeType": "YulTypedName", | |
| "src": "580:18:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "653:51:15", | |
| "nodeType": "YulBlock", | |
| "src": "653:51:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "667:27:15", | |
| "nodeType": "YulAssignment", | |
| "src": "667:27:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "681:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "681:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "689:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "689:4:15", | |
| "type": "", | |
| "value": "0x7f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "677:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "677:3:15" | |
| }, | |
| "nativeSrc": "677:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "677:17:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "667:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "667:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "633:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "633:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "626:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "626:6:15" | |
| }, | |
| "nativeSrc": "626:26:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "626:26:15" | |
| }, | |
| "nativeSrc": "623:81:15", | |
| "nodeType": "YulIf", | |
| "src": "623:81:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "756:42:15", | |
| "nodeType": "YulBlock", | |
| "src": "756:42:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x22", | |
| "nativeSrc": "770:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "770:16:15" | |
| }, | |
| "nativeSrc": "770:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "770:18:15" | |
| }, | |
| "nativeSrc": "770:18:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "770:18:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "720:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "720:18:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "743:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "743:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "751:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "751:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "740:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "740:2:15" | |
| }, | |
| "nativeSrc": "740:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "740:14:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "717:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "717:2:15" | |
| }, | |
| "nativeSrc": "717:38:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "717:38:15" | |
| }, | |
| "nativeSrc": "714:84:15", | |
| "nodeType": "YulIf", | |
| "src": "714:84:15" | |
| } | |
| ] | |
| }, | |
| "name": "extract_byte_array_length", | |
| "nativeSrc": "484:320:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "519:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "519:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "528:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "528:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "484:320:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "864:87:15", | |
| "nodeType": "YulBlock", | |
| "src": "864:87:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "874:11:15", | |
| "nodeType": "YulAssignment", | |
| "src": "874:11:15", | |
| "value": { | |
| "name": "ptr", | |
| "nativeSrc": "882:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "882:3:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "874:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "874:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "902:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "902:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "name": "ptr", | |
| "nativeSrc": "905:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "905:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "895:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "895:6:15" | |
| }, | |
| "nativeSrc": "895:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "895:14:15" | |
| }, | |
| "nativeSrc": "895:14:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "895:14:15" | |
| }, | |
| { | |
| "nativeSrc": "918:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "918:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "936:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "936:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "939:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "939:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "keccak256", | |
| "nativeSrc": "926:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "926:9:15" | |
| }, | |
| "nativeSrc": "926:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "926:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "918:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "918:4:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_dataslot_t_string_storage", | |
| "nativeSrc": "810:141:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "ptr", | |
| "nativeSrc": "851:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "851:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "859:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "859:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "810:141:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1001:49:15", | |
| "nodeType": "YulBlock", | |
| "src": "1001:49:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1011:33:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1011:33:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1029:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1029:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1036:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1036:2:15", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1025:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1025:3:15" | |
| }, | |
| "nativeSrc": "1025:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1025:14:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1041:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1041:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "div", | |
| "nativeSrc": "1021:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1021:3:15" | |
| }, | |
| "nativeSrc": "1021:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1021:23:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "1011:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1011:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "divide_by_32_ceil", | |
| "nativeSrc": "957:93:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "984:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "984:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "994:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "994:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "957:93:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1109:54:15", | |
| "nodeType": "YulBlock", | |
| "src": "1109:54:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1119:37:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1119:37:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "bits", | |
| "nativeSrc": "1144:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1144:4:15" | |
| }, | |
| { | |
| "name": "value", | |
| "nativeSrc": "1150:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1150:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "shl", | |
| "nativeSrc": "1140:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1140:3:15" | |
| }, | |
| "nativeSrc": "1140:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1140:16:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "newValue", | |
| "nativeSrc": "1119:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1119:8:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "shift_left_dynamic", | |
| "nativeSrc": "1056:107:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "bits", | |
| "nativeSrc": "1084:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1084:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value", | |
| "nativeSrc": "1090:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1090:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "newValue", | |
| "nativeSrc": "1100:8:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1100:8:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1056:107:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1245:317:15", | |
| "nodeType": "YulBlock", | |
| "src": "1245:317:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1255:35:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1255:35:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "shiftBytes", | |
| "nativeSrc": "1276:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1276:10:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1288:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1288:1:15", | |
| "type": "", | |
| "value": "8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nativeSrc": "1272:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1272:3:15" | |
| }, | |
| "nativeSrc": "1272:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1272:18:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "shiftBits", | |
| "nativeSrc": "1259:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1259:9:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "1299:109:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1299:109:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "shiftBits", | |
| "nativeSrc": "1330:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1330:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1341:66:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1341:66:15", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "shift_left_dynamic", | |
| "nativeSrc": "1311:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1311:18:15" | |
| }, | |
| "nativeSrc": "1311:97:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1311:97:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "mask", | |
| "nativeSrc": "1303:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1303:4:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "1417:51:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1417:51:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "shiftBits", | |
| "nativeSrc": "1448:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1448:9:15" | |
| }, | |
| { | |
| "name": "toInsert", | |
| "nativeSrc": "1459:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1459:8:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "shift_left_dynamic", | |
| "nativeSrc": "1429:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1429:18:15" | |
| }, | |
| "nativeSrc": "1429:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1429:39:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "toInsert", | |
| "nativeSrc": "1417:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1417:8:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "1477:30:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1477:30:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1490:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1490:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "mask", | |
| "nativeSrc": "1501:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1501:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nativeSrc": "1497:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1497:3:15" | |
| }, | |
| "nativeSrc": "1497:9:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1497:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "1486:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1486:3:15" | |
| }, | |
| "nativeSrc": "1486:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1486:21:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1477:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1477:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "1516:40:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1516:40:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1529:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1529:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "toInsert", | |
| "nativeSrc": "1540:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1540:8:15" | |
| }, | |
| { | |
| "name": "mask", | |
| "nativeSrc": "1550:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1550:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "1536:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1536:3:15" | |
| }, | |
| "nativeSrc": "1536:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1536:19:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "or", | |
| "nativeSrc": "1526:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1526:2:15" | |
| }, | |
| "nativeSrc": "1526:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1526:30:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "1516:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1516:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "update_byte_slice_dynamic32", | |
| "nativeSrc": "1169:393:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1206:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1206:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "shiftBytes", | |
| "nativeSrc": "1213:10:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1213:10:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "toInsert", | |
| "nativeSrc": "1225:8:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1225:8:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "1238:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1238:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1169:393:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1613:32:15", | |
| "nodeType": "YulBlock", | |
| "src": "1613:32:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1623:16:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1623:16:15", | |
| "value": { | |
| "name": "value", | |
| "nativeSrc": "1634:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1634:5:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "1623:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1623:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "1568:77:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1595:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1595:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "1605:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1605:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1568:77:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1683:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "1683:28:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1693:12:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1693:12:15", | |
| "value": { | |
| "name": "value", | |
| "nativeSrc": "1700:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1700:5:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "1693:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1693:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "identity", | |
| "nativeSrc": "1651:60:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1669:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1669:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "1679:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1679:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1651:60:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1777:82:15", | |
| "nodeType": "YulBlock", | |
| "src": "1777:82:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1787:66:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1787:66:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1845:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1845:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "1827:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1827:17:15" | |
| }, | |
| "nativeSrc": "1827:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1827:24:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "identity", | |
| "nativeSrc": "1818:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1818:8:15" | |
| }, | |
| "nativeSrc": "1818:34:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1818:34:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "1800:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1800:17:15" | |
| }, | |
| "nativeSrc": "1800:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1800:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nativeSrc": "1787:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1787:9:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_uint256_to_t_uint256", | |
| "nativeSrc": "1717:142:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1757:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1757:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nativeSrc": "1767:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1767:9:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1717:142:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1912:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "1912:28:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1922:12:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1922:12:15", | |
| "value": { | |
| "name": "value", | |
| "nativeSrc": "1929:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1929:5:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "1922:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1922:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "prepare_store_t_uint256", | |
| "nativeSrc": "1865:75:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1898:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1898:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "1908:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1908:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1865:75:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2022:193:15", | |
| "nodeType": "YulBlock", | |
| "src": "2022:193:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2032:63:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2032:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value_0", | |
| "nativeSrc": "2087:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2087:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_uint256_to_t_uint256", | |
| "nativeSrc": "2056:30:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2056:30:15" | |
| }, | |
| "nativeSrc": "2056:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2056:39:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "convertedValue_0", | |
| "nativeSrc": "2036:16:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2036:16:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "2111:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2111:4:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "2151:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2151:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sload", | |
| "nativeSrc": "2145:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2145:5:15" | |
| }, | |
| "nativeSrc": "2145:11:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2145:11:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "2158:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2158:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "convertedValue_0", | |
| "nativeSrc": "2190:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2190:16:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "prepare_store_t_uint256", | |
| "nativeSrc": "2166:23:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2166:23:15" | |
| }, | |
| "nativeSrc": "2166:41:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2166:41:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "update_byte_slice_dynamic32", | |
| "nativeSrc": "2117:27:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2117:27:15" | |
| }, | |
| "nativeSrc": "2117:91:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2117:91:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sstore", | |
| "nativeSrc": "2104:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2104:6:15" | |
| }, | |
| "nativeSrc": "2104:105:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2104:105:15" | |
| }, | |
| "nativeSrc": "2104:105:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2104:105:15" | |
| } | |
| ] | |
| }, | |
| "name": "update_storage_value_t_uint256_to_t_uint256", | |
| "nativeSrc": "1946:269:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "1999:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1999:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "2005:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2005:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value_0", | |
| "nativeSrc": "2013:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2013:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1946:269:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2270:24:15", | |
| "nodeType": "YulBlock", | |
| "src": "2270:24:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2280:8:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2280:8:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "2287:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2287:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "2280:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2280:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "zero_value_for_split_t_uint256", | |
| "nativeSrc": "2221:73:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "ret", | |
| "nativeSrc": "2266:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2266:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2221:73:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2353:136:15", | |
| "nodeType": "YulBlock", | |
| "src": "2353:136:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2363:46:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2363:46:15", | |
| "value": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "zero_value_for_split_t_uint256", | |
| "nativeSrc": "2377:30:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2377:30:15" | |
| }, | |
| "nativeSrc": "2377:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2377:32:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "zero_0", | |
| "nativeSrc": "2367:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2367:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "2462:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2462:4:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "2468:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2468:6:15" | |
| }, | |
| { | |
| "name": "zero_0", | |
| "nativeSrc": "2476:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2476:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "update_storage_value_t_uint256_to_t_uint256", | |
| "nativeSrc": "2418:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2418:43:15" | |
| }, | |
| "nativeSrc": "2418:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2418:65:15" | |
| }, | |
| "nativeSrc": "2418:65:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2418:65:15" | |
| } | |
| ] | |
| }, | |
| "name": "storage_set_to_zero_t_uint256", | |
| "nativeSrc": "2300:189:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "2339:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2339:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "2345:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2345:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2300:189:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2545:136:15", | |
| "nodeType": "YulBlock", | |
| "src": "2545:136:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "2612:63:15", | |
| "nodeType": "YulBlock", | |
| "src": "2612:63:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "start", | |
| "nativeSrc": "2656:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2656:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2663:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2663:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "storage_set_to_zero_t_uint256", | |
| "nativeSrc": "2626:29:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2626:29:15" | |
| }, | |
| "nativeSrc": "2626:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2626:39:15" | |
| }, | |
| "nativeSrc": "2626:39:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2626:39:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "start", | |
| "nativeSrc": "2565:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2565:5:15" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "2572:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2572:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "2562:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2562:2:15" | |
| }, | |
| "nativeSrc": "2562:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2562:14:15" | |
| }, | |
| "nativeSrc": "2555:120:15", | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nativeSrc": "2577:26:15", | |
| "nodeType": "YulBlock", | |
| "src": "2577:26:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2579:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2579:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "start", | |
| "nativeSrc": "2592:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2592:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2599:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2599:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2588:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2588:3:15" | |
| }, | |
| "nativeSrc": "2588:13:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2588:13:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "start", | |
| "nativeSrc": "2579:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2579:5:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nativeSrc": "2559:2:15", | |
| "nodeType": "YulBlock", | |
| "src": "2559:2:15", | |
| "statements": [] | |
| }, | |
| "src": "2555:120:15" | |
| } | |
| ] | |
| }, | |
| "name": "clear_storage_range_t_bytes1", | |
| "nativeSrc": "2495:186:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "start", | |
| "nativeSrc": "2533:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2533:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "2540:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2540:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2495:186:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2766:464:15", | |
| "nodeType": "YulBlock", | |
| "src": "2766:464:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "2792:431:15", | |
| "nodeType": "YulBlock", | |
| "src": "2792:431:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2806:54:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2806:54:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "2854:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2854:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_dataslot_t_string_storage", | |
| "nativeSrc": "2822:31:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2822:31:15" | |
| }, | |
| "nativeSrc": "2822:38:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2822:38:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "dataArea", | |
| "nativeSrc": "2810:8:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2810:8:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "2873:63:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2873:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "dataArea", | |
| "nativeSrc": "2896:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2896:8:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "startIndex", | |
| "nativeSrc": "2924:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2924:10:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "divide_by_32_ceil", | |
| "nativeSrc": "2906:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2906:17:15" | |
| }, | |
| "nativeSrc": "2906:29:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2906:29:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2892:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2892:3:15" | |
| }, | |
| "nativeSrc": "2892:44:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2892:44:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "deleteStart", | |
| "nativeSrc": "2877:11:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2877:11:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3093:27:15", | |
| "nodeType": "YulBlock", | |
| "src": "3093:27:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3095:23:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3095:23:15", | |
| "value": { | |
| "name": "dataArea", | |
| "nativeSrc": "3110:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3110:8:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "deleteStart", | |
| "nativeSrc": "3095:11:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3095:11:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "startIndex", | |
| "nativeSrc": "3077:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3077:10:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3089:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3089:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "3074:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3074:2:15" | |
| }, | |
| "nativeSrc": "3074:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3074:18:15" | |
| }, | |
| "nativeSrc": "3071:49:15", | |
| "nodeType": "YulIf", | |
| "src": "3071:49:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "deleteStart", | |
| "nativeSrc": "3162:11:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3162:11:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataArea", | |
| "nativeSrc": "3179:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3179:8:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "len", | |
| "nativeSrc": "3207:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3207:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "divide_by_32_ceil", | |
| "nativeSrc": "3189:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3189:17:15" | |
| }, | |
| "nativeSrc": "3189:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3189:22:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "3175:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3175:3:15" | |
| }, | |
| "nativeSrc": "3175:37:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3175:37:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "clear_storage_range_t_bytes1", | |
| "nativeSrc": "3133:28:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3133:28:15" | |
| }, | |
| "nativeSrc": "3133:80:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3133:80:15" | |
| }, | |
| "nativeSrc": "3133:80:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3133:80:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "len", | |
| "nativeSrc": "2783:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2783:3:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2788:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2788:2:15", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "2780:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2780:2:15" | |
| }, | |
| "nativeSrc": "2780:11:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2780:11:15" | |
| }, | |
| "nativeSrc": "2777:446:15", | |
| "nodeType": "YulIf", | |
| "src": "2777:446:15" | |
| } | |
| ] | |
| }, | |
| "name": "clean_up_bytearray_end_slots_t_string_storage", | |
| "nativeSrc": "2687:543:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "2742:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2742:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "len", | |
| "nativeSrc": "2749:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2749:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "startIndex", | |
| "nativeSrc": "2754:10:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2754:10:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2687:543:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3299:54:15", | |
| "nodeType": "YulBlock", | |
| "src": "3299:54:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3309:37:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3309:37:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "bits", | |
| "nativeSrc": "3334:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3334:4:15" | |
| }, | |
| { | |
| "name": "value", | |
| "nativeSrc": "3340:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3340:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "shr", | |
| "nativeSrc": "3330:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3330:3:15" | |
| }, | |
| "nativeSrc": "3330:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3330:16:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "newValue", | |
| "nativeSrc": "3309:8:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3309:8:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "shift_right_unsigned_dynamic", | |
| "nativeSrc": "3236:117:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "bits", | |
| "nativeSrc": "3274:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3274:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value", | |
| "nativeSrc": "3280:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3280:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "newValue", | |
| "nativeSrc": "3290:8:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3290:8:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3236:117:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3410:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "3410:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3420:68:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3420:68:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3469:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3469:1:15", | |
| "type": "", | |
| "value": "8" | |
| }, | |
| { | |
| "name": "bytes", | |
| "nativeSrc": "3472:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3472:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nativeSrc": "3465:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3465:3:15" | |
| }, | |
| "nativeSrc": "3465:13:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3465:13:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3484:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3484:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nativeSrc": "3480:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3480:3:15" | |
| }, | |
| "nativeSrc": "3480:6:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3480:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "shift_right_unsigned_dynamic", | |
| "nativeSrc": "3436:28:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3436:28:15" | |
| }, | |
| "nativeSrc": "3436:51:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3436:51:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nativeSrc": "3432:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3432:3:15" | |
| }, | |
| "nativeSrc": "3432:56:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3432:56:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "mask", | |
| "nativeSrc": "3424:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3424:4:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "3497:25:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3497:25:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3511:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3511:4:15" | |
| }, | |
| { | |
| "name": "mask", | |
| "nativeSrc": "3517:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3517:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "3507:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3507:3:15" | |
| }, | |
| "nativeSrc": "3507:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3507:15:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "3497:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3497:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "mask_bytes_dynamic", | |
| "nativeSrc": "3359:169:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3387:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3387:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "bytes", | |
| "nativeSrc": "3393:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3393:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "3403:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3403:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3359:169:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3614:214:15", | |
| "nodeType": "YulBlock", | |
| "src": "3614:214:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3747:37:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3747:37:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3774:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3774:4:15" | |
| }, | |
| { | |
| "name": "len", | |
| "nativeSrc": "3780:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3780:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mask_bytes_dynamic", | |
| "nativeSrc": "3755:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3755:18:15" | |
| }, | |
| "nativeSrc": "3755:29:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3755:29:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3747:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3747:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "3793:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3793:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3804:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3804:4:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3814:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3814:1:15", | |
| "type": "", | |
| "value": "2" | |
| }, | |
| { | |
| "name": "len", | |
| "nativeSrc": "3817:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3817:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nativeSrc": "3810:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3810:3:15" | |
| }, | |
| "nativeSrc": "3810:11:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3810:11:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "or", | |
| "nativeSrc": "3801:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3801:2:15" | |
| }, | |
| "nativeSrc": "3801:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3801:21:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "used", | |
| "nativeSrc": "3793:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3793:4:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "extract_used_part_and_set_length_of_short_byte_array", | |
| "nativeSrc": "3533:295:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "3595:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3595:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "len", | |
| "nativeSrc": "3601:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3601:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "used", | |
| "nativeSrc": "3609:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3609:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3533:295:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3925:1303:15", | |
| "nodeType": "YulBlock", | |
| "src": "3925:1303:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3936:51:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3936:51:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "3983:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3983:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nativeSrc": "3950:32:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3950:32:15" | |
| }, | |
| "nativeSrc": "3950:37:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3950:37:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "3940:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3940:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4072:22:15", | |
| "nodeType": "YulBlock", | |
| "src": "4072:22:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nativeSrc": "4074:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4074:16:15" | |
| }, | |
| "nativeSrc": "4074:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4074:18:15" | |
| }, | |
| "nativeSrc": "4074:18:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4074:18:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4044:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4044:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4052:18:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4052:18:15", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "4041:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4041:2:15" | |
| }, | |
| "nativeSrc": "4041:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4041:30:15" | |
| }, | |
| "nativeSrc": "4038:56:15", | |
| "nodeType": "YulIf", | |
| "src": "4038:56:15" | |
| }, | |
| { | |
| "nativeSrc": "4104:52:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4104:52:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "4150:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4150:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sload", | |
| "nativeSrc": "4144:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4144:5:15" | |
| }, | |
| "nativeSrc": "4144:11:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4144:11:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "extract_byte_array_length", | |
| "nativeSrc": "4118:25:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4118:25:15" | |
| }, | |
| "nativeSrc": "4118:38:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4118:38:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "oldLen", | |
| "nativeSrc": "4108:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4108:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "4249:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4249:4:15" | |
| }, | |
| { | |
| "name": "oldLen", | |
| "nativeSrc": "4255:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4255:6:15" | |
| }, | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4263:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4263:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "clean_up_bytearray_end_slots_t_string_storage", | |
| "nativeSrc": "4203:45:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4203:45:15" | |
| }, | |
| "nativeSrc": "4203:67:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4203:67:15" | |
| }, | |
| "nativeSrc": "4203:67:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4203:67:15" | |
| }, | |
| { | |
| "nativeSrc": "4280:18:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4280:18:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4297:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4297:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4284:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4284:9:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4308:17:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4308:17:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4321:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4321:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4308:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4308:9:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "cases": [ | |
| { | |
| "body": { | |
| "nativeSrc": "4372:611:15", | |
| "nodeType": "YulBlock", | |
| "src": "4372:611:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4386:37:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4386:37:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4405:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4405:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4417:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4417:4:15", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nativeSrc": "4413:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4413:3:15" | |
| }, | |
| "nativeSrc": "4413:9:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4413:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "4401:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4401:3:15" | |
| }, | |
| "nativeSrc": "4401:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4401:22:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "loopEnd", | |
| "nativeSrc": "4390:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4390:7:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4437:51:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4437:51:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "4483:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4483:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_dataslot_t_string_storage", | |
| "nativeSrc": "4451:31:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4451:31:15" | |
| }, | |
| "nativeSrc": "4451:37:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4451:37:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "dstPtr", | |
| "nativeSrc": "4441:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4441:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4501:10:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4501:10:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4510:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4510:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nativeSrc": "4505:1:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4505:1:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4569:163:15", | |
| "nodeType": "YulBlock", | |
| "src": "4569:163:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dstPtr", | |
| "nativeSrc": "4594:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4594:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "4612:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4612:3:15" | |
| }, | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4617:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4617:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4608:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4608:3:15" | |
| }, | |
| "nativeSrc": "4608:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4608:19:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "4602:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4602:5:15" | |
| }, | |
| "nativeSrc": "4602:26:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4602:26:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sstore", | |
| "nativeSrc": "4587:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4587:6:15" | |
| }, | |
| "nativeSrc": "4587:42:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4587:42:15" | |
| }, | |
| "nativeSrc": "4587:42:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4587:42:15" | |
| }, | |
| { | |
| "nativeSrc": "4646:24:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4646:24:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "dstPtr", | |
| "nativeSrc": "4660:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4660:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4668:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4668:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4656:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4656:3:15" | |
| }, | |
| "nativeSrc": "4656:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4656:14:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "dstPtr", | |
| "nativeSrc": "4646:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4646:6:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4687:31:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4687:31:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4704:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4704:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4715:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4715:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4700:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4700:3:15" | |
| }, | |
| "nativeSrc": "4700:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4700:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4687:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4687:9:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nativeSrc": "4535:1:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4535:1:15" | |
| }, | |
| { | |
| "name": "loopEnd", | |
| "nativeSrc": "4538:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4538:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "4532:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4532:2:15" | |
| }, | |
| "nativeSrc": "4532:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4532:14:15" | |
| }, | |
| "nativeSrc": "4524:208:15", | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nativeSrc": "4547:21:15", | |
| "nodeType": "YulBlock", | |
| "src": "4547:21:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4549:17:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4549:17:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nativeSrc": "4558:1:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4558:1:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4561:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4561:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4554:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4554:3:15" | |
| }, | |
| "nativeSrc": "4554:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4554:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nativeSrc": "4549:1:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4549:1:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nativeSrc": "4528:3:15", | |
| "nodeType": "YulBlock", | |
| "src": "4528:3:15", | |
| "statements": [] | |
| }, | |
| "src": "4524:208:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4768:156:15", | |
| "nodeType": "YulBlock", | |
| "src": "4768:156:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4786:43:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4786:43:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "4813:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4813:3:15" | |
| }, | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "4818:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4818:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4809:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4809:3:15" | |
| }, | |
| "nativeSrc": "4809:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4809:19:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "4803:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4803:5:15" | |
| }, | |
| "nativeSrc": "4803:26:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4803:26:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "lastValue", | |
| "nativeSrc": "4790:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4790:9:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dstPtr", | |
| "nativeSrc": "4853:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4853:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "lastValue", | |
| "nativeSrc": "4880:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4880:9:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4895:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4895:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4903:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4903:4:15", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "4891:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4891:3:15" | |
| }, | |
| "nativeSrc": "4891:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4891:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mask_bytes_dynamic", | |
| "nativeSrc": "4861:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4861:18:15" | |
| }, | |
| "nativeSrc": "4861:48:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4861:48:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sstore", | |
| "nativeSrc": "4846:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4846:6:15" | |
| }, | |
| "nativeSrc": "4846:64:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4846:64:15" | |
| }, | |
| "nativeSrc": "4846:64:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4846:64:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "loopEnd", | |
| "nativeSrc": "4751:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4751:7:15" | |
| }, | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4760:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4760:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "4748:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4748:2:15" | |
| }, | |
| "nativeSrc": "4748:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4748:19:15" | |
| }, | |
| "nativeSrc": "4745:179:15", | |
| "nodeType": "YulIf", | |
| "src": "4745:179:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "4944:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4944:4:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4958:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4958:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4966:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4966:1:15", | |
| "type": "", | |
| "value": "2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nativeSrc": "4954:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4954:3:15" | |
| }, | |
| "nativeSrc": "4954:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4954:14:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4970:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4970:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4950:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4950:3:15" | |
| }, | |
| "nativeSrc": "4950:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4950:22:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sstore", | |
| "nativeSrc": "4937:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4937:6:15" | |
| }, | |
| "nativeSrc": "4937:36:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4937:36:15" | |
| }, | |
| "nativeSrc": "4937:36:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4937:36:15" | |
| } | |
| ] | |
| }, | |
| "nativeSrc": "4365:618:15", | |
| "nodeType": "YulCase", | |
| "src": "4365:618:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4370:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4370:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "5000:222:15", | |
| "nodeType": "YulBlock", | |
| "src": "5000:222:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5014:14:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "5014:14:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "5027:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5027:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "5018:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5018:5:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "5051:67:15", | |
| "nodeType": "YulBlock", | |
| "src": "5051:67:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5069:35:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5069:35:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "5088:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5088:3:15" | |
| }, | |
| { | |
| "name": "srcOffset", | |
| "nativeSrc": "5093:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5093:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5084:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5084:3:15" | |
| }, | |
| "nativeSrc": "5084:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5084:19:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "5078:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5078:5:15" | |
| }, | |
| "nativeSrc": "5078:26:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5078:26:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "5069:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5069:5:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "name": "newLen", | |
| "nativeSrc": "5044:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5044:6:15" | |
| }, | |
| "nativeSrc": "5041:77:15", | |
| "nodeType": "YulIf", | |
| "src": "5041:77:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "5138:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5138:4:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "5197:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5197:5:15" | |
| }, | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "5204:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5204:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "extract_used_part_and_set_length_of_short_byte_array", | |
| "nativeSrc": "5144:52:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5144:52:15" | |
| }, | |
| "nativeSrc": "5144:67:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5144:67:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sstore", | |
| "nativeSrc": "5131:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5131:6:15" | |
| }, | |
| "nativeSrc": "5131:81:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5131:81:15" | |
| }, | |
| "nativeSrc": "5131:81:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5131:81:15" | |
| } | |
| ] | |
| }, | |
| "nativeSrc": "4992:230:15", | |
| "nodeType": "YulCase", | |
| "src": "4992:230:15", | |
| "value": "default" | |
| } | |
| ], | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "newLen", | |
| "nativeSrc": "4345:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4345:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4353:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4353:2:15", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "4342:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4342:2:15" | |
| }, | |
| "nativeSrc": "4342:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4342:14:15" | |
| }, | |
| "nativeSrc": "4335:887:15", | |
| "nodeType": "YulSwitch", | |
| "src": "4335:887:15" | |
| } | |
| ] | |
| }, | |
| "name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", | |
| "nativeSrc": "3833:1395:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "slot", | |
| "nativeSrc": "3914:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3914:4:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "src", | |
| "nativeSrc": "3920:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3920:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3833:1395:15" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n", | |
| "id": 15, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "linkReferences": {}, | |
| "object": "608060405234801561000f575f5ffd5b506040518060400160405280600781526020017f4d79546f6b656e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d544b0000000000000000000000000000000000000000000000000000000000815250815f908161008a91906102df565b50806001908161009a91906102df565b5050506103ae565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011d57607f821691505b6020821081036101305761012f6100d9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610157565b61019c8683610157565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101e06101db6101d6846101b4565b6101bd565b6101b4565b9050919050565b5f819050919050565b6101f9836101c6565b61020d610205826101e7565b848454610163565b825550505050565b5f5f905090565b610224610215565b61022f8184846101f0565b505050565b5b81811015610252576102475f8261021c565b600181019050610235565b5050565b601f8211156102975761026881610136565b61027184610148565b81016020851015610280578190505b61029461028c85610148565b830182610234565b50505b505050565b5f82821c905092915050565b5f6102b75f198460080261029c565b1980831691505092915050565b5f6102cf83836102a8565b9150826002028217905092915050565b6102e8826100a2565b67ffffffffffffffff811115610301576103006100ac565b5b61030b8254610106565b610316828285610256565b5f60209050601f831160018114610347575f8415610335578287015190505b61033f85826102c4565b8655506103a6565b601f19841661035586610136565b5f5b8281101561037c57848901518255600182019150602085019450602081019050610357565b868310156103995784890151610395601f8916826102a8565b8355505b6001600288020188555050505b505050505050565b611bc6806103bb5f395ff3fe608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c80636352211e1161008a578063a22cb46511610064578063a22cb46514610221578063b88d4fde1461023d578063c87b56dd14610259578063e985e9c514610289576100cd565b80636352211e146101a357806370a08231146101d357806395d89b4114610203576100cd565b806301ffc9a7146100d157806306fdde0314610101578063081812fc1461011f578063095ea7b31461014f57806323b872dd1461016b57806342842e0e14610187575b5f5ffd5b6100eb60048036038101906100e69190611471565b6102b9565b6040516100f891906114b6565b60405180910390f35b61010961039a565b604051610116919061153f565b60405180910390f35b61013960048036038101906101349190611592565b610429565b60405161014691906115fc565b60405180910390f35b6101696004803603810190610164919061163f565b610444565b005b6101856004803603810190610180919061167d565b61045a565b005b6101a1600480360381019061019c919061167d565b610559565b005b6101bd60048036038101906101b89190611592565b610578565b6040516101ca91906115fc565b60405180910390f35b6101ed60048036038101906101e891906116cd565b610589565b6040516101fa9190611707565b60405180910390f35b61020b61063f565b604051610218919061153f565b60405180910390f35b61023b6004803603810190610236919061174a565b6106cf565b005b610257600480360381019061025291906118b4565b6106e5565b005b610273600480360381019061026e9190611592565b61070a565b604051610280919061153f565b60405180910390f35b6102a3600480360381019061029e9190611934565b610770565b6040516102b091906114b6565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103935750610392826107fe565b5b9050919050565b60605f80546103a89061199f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d49061199f565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f61043382610867565b5061043d826108ed565b9050919050565b6104568282610451610926565b61092d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104ca575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016104c191906115fc565b60405180910390fd5b5f6104dd83836104d8610926565b61093f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610553578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161054a939291906119cf565b60405180910390fd5b50505050565b61057383838360405180602001604052805f8152506106e5565b505050565b5f61058282610867565b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105fa575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016105f191906115fc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606001805461064e9061199f565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061199f565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b6106e16106da610926565b8383610b4a565b5050565b6106f084848461045a565b6107046106fb610926565b85858585610cb3565b50505050565b606061071582610867565b505f61071f610e5f565b90505f81511161073d5760405180602001604052805f815250610768565b8061074784610e75565b604051602001610758929190611a3e565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f5f61087283610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e457826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016108db9190611707565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61093a8383836001610f78565b505050565b5f5f61094a84610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461098b5761098a818486611137565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576109ca5f855f5f610f78565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610a9557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bba57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610bb191906115fc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ca691906114b6565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115610e58578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02868685856040518563ffffffff1660e01b8152600401610d119493929190611ab3565b6020604051808303815f875af1925050508015610d4c57506040513d601f19601f82011682018060405250810190610d499190611b11565b60015b610dcd573d805f8114610d7a576040519150601f19603f3d011682016040523d82523d5f602084013e610d7f565b606091505b505f815103610dc557836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610dbc91906115fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610e5657836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610e4d91906115fc565b60405180910390fd5b505b5050505050565b606060405180602001604052805f815250905090565b60605f6001610e83846111fa565b0190505f8167ffffffffffffffff811115610ea157610ea0611790565b5b6040519080825280601f01601f191660200182016040528015610ed35781602001600182028036833780820191505090505b5090505f82602001820190505b600115610f34578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581610f2957610f28611b3c565b5b0494505f8503610ee0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8080610fb057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110e2575f610fbf84610867565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561102957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561103c575061103a8184610770565b155b1561107e57826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161107591906115fc565b60405180910390fd5b81156110e057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b61114283838361134b565b6111f5575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b657806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016111ad9190611707565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016111ec929190611b69565b60405180910390fd5b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161124c5761124b611b3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611293576d04ee2d6d415b85acef8100000000838161128957611288611b3c565b5b0492506020810190505b662386f26fc1000083106112c257662386f26fc1000083816112b8576112b7611b3c565b5b0492506010810190505b6305f5e10083106112eb576305f5e10083816112e1576112e0611b3c565b5b0492506008810190505b612710831061131057612710838161130657611305611b3c565b5b0492506004810190505b60648310611333576064838161132957611328611b3c565b5b0492506002810190505b600a8310611342576001810190505b80915050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140257508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c357506113c28484610770565b5b8061140157508273ffffffffffffffffffffffffffffffffffffffff166113e9836108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114508161141c565b811461145a575f5ffd5b50565b5f8135905061146b81611447565b92915050565b5f6020828403121561148657611485611414565b5b5f6114938482850161145d565b91505092915050565b5f8115159050919050565b6114b08161149c565b82525050565b5f6020820190506114c95f8301846114a7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611511826114cf565b61151b81856114d9565b935061152b8185602086016114e9565b611534816114f7565b840191505092915050565b5f6020820190508181035f8301526115578184611507565b905092915050565b5f819050919050565b6115718161155f565b811461157b575f5ffd5b50565b5f8135905061158c81611568565b92915050565b5f602082840312156115a7576115a6611414565b5b5f6115b48482850161157e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115e6826115bd565b9050919050565b6115f6816115dc565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b61161e816115dc565b8114611628575f5ffd5b50565b5f8135905061163981611615565b92915050565b5f5f6040838503121561165557611654611414565b5b5f6116628582860161162b565b92505060206116738582860161157e565b9150509250929050565b5f5f5f6060848603121561169457611693611414565b5b5f6116a18682870161162b565b93505060206116b28682870161162b565b92505060406116c38682870161157e565b9150509250925092565b5f602082840312156116e2576116e1611414565b5b5f6116ef8482850161162b565b91505092915050565b6117018161155f565b82525050565b5f60208201905061171a5f8301846116f8565b92915050565b6117298161149c565b8114611733575f5ffd5b50565b5f8135905061174481611720565b92915050565b5f5f604083850312156117605761175f611414565b5b5f61176d8582860161162b565b925050602061177e85828601611736565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117c6826114f7565b810181811067ffffffffffffffff821117156117e5576117e4611790565b5b80604052505050565b5f6117f761140b565b905061180382826117bd565b919050565b5f67ffffffffffffffff82111561182257611821611790565b5b61182b826114f7565b9050602081019050919050565b828183375f83830152505050565b5f61185861185384611808565b6117ee565b9050828152602081018484840111156118745761187361178c565b5b61187f848285611838565b509392505050565b5f82601f83011261189b5761189a611788565b5b81356118ab848260208601611846565b91505092915050565b5f5f5f5f608085870312156118cc576118cb611414565b5b5f6118d98782880161162b565b94505060206118ea8782880161162b565b93505060406118fb8782880161157e565b925050606085013567ffffffffffffffff81111561191c5761191b611418565b5b61192887828801611887565b91505092959194509250565b5f5f6040838503121561194a57611949611414565b5b5f6119578582860161162b565b92505060206119688582860161162b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119b657607f821691505b6020821081036119c9576119c8611972565b5b50919050565b5f6060820190506119e25f8301866115ed565b6119ef60208301856116f8565b6119fc60408301846115ed565b949350505050565b5f81905092915050565b5f611a18826114cf565b611a228185611a04565b9350611a328185602086016114e9565b80840191505092915050565b5f611a498285611a0e565b9150611a558284611a0e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f611a8582611a61565b611a8f8185611a6b565b9350611a9f8185602086016114e9565b611aa8816114f7565b840191505092915050565b5f608082019050611ac65f8301876115ed565b611ad360208301866115ed565b611ae060408301856116f8565b8181036060830152611af28184611a7b565b905095945050505050565b5f81519050611b0b81611447565b92915050565b5f60208284031215611b2657611b25611414565b5b5f611b3384828501611afd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050611b7c5f8301856115ed565b611b8960208301846116f8565b939250505056fea2646970667358221220027113139486392ef42efe356885bb848cdfc20ba039e421064d7b4f14b179bb64736f6c634300081e0033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D79546F6B656E00000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D544B0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH0 SWAP1 DUP2 PUSH2 0x8A SWAP2 SWAP1 PUSH2 0x2DF JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP2 PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x2DF JUMP JUMPDEST POP POP POP PUSH2 0x3AE JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x130 JUMPI PUSH2 0x12F PUSH2 0xD9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x192 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x157 JUMP JUMPDEST PUSH2 0x19C DUP7 DUP4 PUSH2 0x157 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1E0 PUSH2 0x1DB PUSH2 0x1D6 DUP5 PUSH2 0x1B4 JUMP JUMPDEST PUSH2 0x1BD JUMP JUMPDEST PUSH2 0x1B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F9 DUP4 PUSH2 0x1C6 JUMP JUMPDEST PUSH2 0x20D PUSH2 0x205 DUP3 PUSH2 0x1E7 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x163 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x224 PUSH2 0x215 JUMP JUMPDEST PUSH2 0x22F DUP2 DUP5 DUP5 PUSH2 0x1F0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x252 JUMPI PUSH2 0x247 PUSH0 DUP3 PUSH2 0x21C JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x235 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x297 JUMPI PUSH2 0x268 DUP2 PUSH2 0x136 JUMP JUMPDEST PUSH2 0x271 DUP5 PUSH2 0x148 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x280 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x294 PUSH2 0x28C DUP6 PUSH2 0x148 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x234 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2B7 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x29C JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2CF DUP4 DUP4 PUSH2 0x2A8 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2E8 DUP3 PUSH2 0xA2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x301 JUMPI PUSH2 0x300 PUSH2 0xAC JUMP JUMPDEST JUMPDEST PUSH2 0x30B DUP3 SLOAD PUSH2 0x106 JUMP JUMPDEST PUSH2 0x316 DUP3 DUP3 DUP6 PUSH2 0x256 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x347 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x335 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x33F DUP6 DUP3 PUSH2 0x2C4 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x3A6 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x355 DUP7 PUSH2 0x136 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x37C JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x357 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x399 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x395 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x2A8 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1BC6 DUP1 PUSH2 0x3BB PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x259 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x289 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD1 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16B JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x187 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0x1471 JUMP JUMPDEST PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH2 0x39A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x139 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x429 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x169 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x163F JUMP JUMPDEST PUSH2 0x444 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x185 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x180 SWAP2 SWAP1 PUSH2 0x167D JUMP JUMPDEST PUSH2 0x45A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x167D JUMP JUMPDEST PUSH2 0x559 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0x16CD JUMP JUMPDEST PUSH2 0x589 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x63F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x174A JUMP JUMPDEST PUSH2 0x6CF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x257 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x252 SWAP2 SWAP1 PUSH2 0x18B4 JUMP JUMPDEST PUSH2 0x6E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x273 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26E SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x70A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x280 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29E SWAP2 SWAP1 PUSH2 0x1934 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B0 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x383 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x393 JUMPI POP PUSH2 0x392 DUP3 PUSH2 0x7FE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3D4 SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x41F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x41F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x402 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x433 DUP3 PUSH2 0x867 JUMP JUMPDEST POP PUSH2 0x43D DUP3 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x456 DUP3 DUP3 PUSH2 0x451 PUSH2 0x926 JUMP JUMPDEST PUSH2 0x92D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x4CA JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4DD DUP4 DUP4 PUSH2 0x4D8 PUSH2 0x926 JUMP JUMPDEST PUSH2 0x93F JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x553 JUMPI DUP4 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH32 0x64283D7B00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x54A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x573 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x6E5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x582 DUP3 PUSH2 0x867 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x5FA JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x89C62B6400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x64E SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x67A SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x69C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6C5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6E1 PUSH2 0x6DA PUSH2 0x926 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xB4A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x6F0 DUP5 DUP5 DUP5 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x704 PUSH2 0x6FB PUSH2 0x926 JUMP JUMPDEST DUP6 DUP6 DUP6 DUP6 PUSH2 0xCB3 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x715 DUP3 PUSH2 0x867 JUMP JUMPDEST POP PUSH0 PUSH2 0x71F PUSH2 0xE5F JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x73D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x768 JUMP JUMPDEST DUP1 PUSH2 0x747 DUP5 PUSH2 0xE75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x758 SWAP3 SWAP2 SWAP1 PUSH2 0x1A3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x872 DUP4 PUSH2 0xF3F JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8E4 JUMPI DUP3 PUSH1 0x40 MLOAD PUSH32 0x7E27328900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8DB SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x4 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x93A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xF78 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x94A DUP5 PUSH2 0xF3F JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x98B JUMPI PUSH2 0x98A DUP2 DUP5 DUP7 PUSH2 0x1137 JUMP JUMPDEST JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA16 JUMPI PUSH2 0x9CA PUSH0 DUP6 PUSH0 PUSH0 PUSH2 0xF78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA95 JUMPI PUSH1 0x1 PUSH1 0x3 PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP5 PUSH1 0x2 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBBA JUMPI DUP2 PUSH1 0x40 MLOAD PUSH32 0x5B08BA1800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBB1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0xCA6 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT ISZERO PUSH2 0xE58 JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 DUP7 DUP7 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD11 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1AB3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xD4C JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD49 SWAP2 SWAP1 PUSH2 0x1B11 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xDCD JUMPI RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD7A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD7F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH0 DUP2 MLOAD SUB PUSH2 0xDC5 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDBC SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0xE56 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4D SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH2 0xE83 DUP5 PUSH2 0x11FA JUMP JUMPDEST ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEA1 JUMPI PUSH2 0xEA0 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xED3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0xF34 JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0xF29 JUMPI PUSH2 0xF28 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH0 DUP6 SUB PUSH2 0xEE0 JUMPI JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP1 PUSH2 0xFB0 JUMPI POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x10E2 JUMPI PUSH0 PUSH2 0xFBF DUP5 PUSH2 0x867 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x1029 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x103C JUMPI POP PUSH2 0x103A DUP2 DUP5 PUSH2 0x770 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x107E JUMPI DUP3 PUSH1 0x40 MLOAD PUSH32 0xA9FBF51F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1075 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 ISZERO PUSH2 0x10E0 JUMPI DUP4 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST DUP4 PUSH1 0x4 PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1142 DUP4 DUP4 DUP4 PUSH2 0x134B JUMP JUMPDEST PUSH2 0x11F5 JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x11B6 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0x7E27328900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AD SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH1 0x40 MLOAD PUSH32 0x177E802F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11EC SWAP3 SWAP2 SWAP1 PUSH2 0x1B69 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x1256 JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x124C JUMPI PUSH2 0x124B PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x1293 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x1289 JUMPI PUSH2 0x1288 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x12C2 JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x12B8 JUMPI PUSH2 0x12B7 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x12EB JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x12E1 JUMPI PUSH2 0x12E0 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1310 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x1306 JUMPI PUSH2 0x1305 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x1333 JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x1329 JUMPI PUSH2 0x1328 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x1342 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x1402 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x13C3 JUMPI POP PUSH2 0x13C2 DUP5 DUP5 PUSH2 0x770 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0x1401 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13E9 DUP4 PUSH2 0x8ED JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1450 DUP2 PUSH2 0x141C JUMP JUMPDEST DUP2 EQ PUSH2 0x145A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x146B DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1486 JUMPI PUSH2 0x1485 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1493 DUP5 DUP3 DUP6 ADD PUSH2 0x145D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14B0 DUP2 PUSH2 0x149C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14C9 PUSH0 DUP4 ADD DUP5 PUSH2 0x14A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1511 DUP3 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x151B DUP2 DUP6 PUSH2 0x14D9 JUMP JUMPDEST SWAP4 POP PUSH2 0x152B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST PUSH2 0x1534 DUP2 PUSH2 0x14F7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1557 DUP2 DUP5 PUSH2 0x1507 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1571 DUP2 PUSH2 0x155F JUMP JUMPDEST DUP2 EQ PUSH2 0x157B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x158C DUP2 PUSH2 0x1568 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15A7 JUMPI PUSH2 0x15A6 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x15B4 DUP5 DUP3 DUP6 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x15E6 DUP3 PUSH2 0x15BD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x15F6 DUP2 PUSH2 0x15DC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x160F PUSH0 DUP4 ADD DUP5 PUSH2 0x15ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x161E DUP2 PUSH2 0x15DC JUMP JUMPDEST DUP2 EQ PUSH2 0x1628 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1639 DUP2 PUSH2 0x1615 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH2 0x1654 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1662 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1673 DUP6 DUP3 DUP7 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1694 JUMPI PUSH2 0x1693 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x16A1 DUP7 DUP3 DUP8 ADD PUSH2 0x162B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x16B2 DUP7 DUP3 DUP8 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x16C3 DUP7 DUP3 DUP8 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16E2 JUMPI PUSH2 0x16E1 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x16EF DUP5 DUP3 DUP6 ADD PUSH2 0x162B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1701 DUP2 PUSH2 0x155F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x171A PUSH0 DUP4 ADD DUP5 PUSH2 0x16F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1729 DUP2 PUSH2 0x149C JUMP JUMPDEST DUP2 EQ PUSH2 0x1733 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1744 DUP2 PUSH2 0x1720 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1760 JUMPI PUSH2 0x175F PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x176D DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x177E DUP6 DUP3 DUP7 ADD PUSH2 0x1736 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x17C6 DUP3 PUSH2 0x14F7 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x17E5 JUMPI PUSH2 0x17E4 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17F7 PUSH2 0x140B JUMP JUMPDEST SWAP1 POP PUSH2 0x1803 DUP3 DUP3 PUSH2 0x17BD JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1822 JUMPI PUSH2 0x1821 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST PUSH2 0x182B DUP3 PUSH2 0x14F7 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1858 PUSH2 0x1853 DUP5 PUSH2 0x1808 JUMP JUMPDEST PUSH2 0x17EE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1874 JUMPI PUSH2 0x1873 PUSH2 0x178C JUMP JUMPDEST JUMPDEST PUSH2 0x187F DUP5 DUP3 DUP6 PUSH2 0x1838 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x1788 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x18AB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1846 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x18CC JUMPI PUSH2 0x18CB PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x18D9 DUP8 DUP3 DUP9 ADD PUSH2 0x162B JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x18EA DUP8 DUP3 DUP9 ADD PUSH2 0x162B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x18FB DUP8 DUP3 DUP9 ADD PUSH2 0x157E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x191C JUMPI PUSH2 0x191B PUSH2 0x1418 JUMP JUMPDEST JUMPDEST PUSH2 0x1928 DUP8 DUP3 DUP9 ADD PUSH2 0x1887 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x194A JUMPI PUSH2 0x1949 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1957 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1968 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x19B6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x19C9 JUMPI PUSH2 0x19C8 PUSH2 0x1972 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x19E2 PUSH0 DUP4 ADD DUP7 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x19EF PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x16F8 JUMP JUMPDEST PUSH2 0x19FC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x15ED JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP3 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x1A22 DUP2 DUP6 PUSH2 0x1A04 JUMP JUMPDEST SWAP4 POP PUSH2 0x1A32 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A49 DUP3 DUP6 PUSH2 0x1A0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1A55 DUP3 DUP5 PUSH2 0x1A0E JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A85 DUP3 PUSH2 0x1A61 JUMP JUMPDEST PUSH2 0x1A8F DUP2 DUP6 PUSH2 0x1A6B JUMP JUMPDEST SWAP4 POP PUSH2 0x1A9F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST PUSH2 0x1AA8 DUP2 PUSH2 0x14F7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1AC6 PUSH0 DUP4 ADD DUP8 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1AD3 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1AE0 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x16F8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1AF2 DUP2 DUP5 PUSH2 0x1A7B JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x1B0B DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B26 JUMPI PUSH2 0x1B25 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1B33 DUP5 DUP3 DUP6 ADD PUSH2 0x1AFD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1B7C PUSH0 DUP4 ADD DUP6 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1B89 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x16F8 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MUL PUSH18 0x13139486392EF42EFE356885BB848CDFC20B LOG0 CODECOPY RETF 0x21 MOD 0x4D PUSH28 0x4F14B179BB64736F6C634300081E0033000000000000000000000000 ", | |
| "sourceMap": "117:76:14:-:0;;;150:41;;;;;;;;;;1380:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454:5;1446;:13;;;;;;:::i;:::-;;1479:7;1469;:17;;;;;;:::i;:::-;;1380:113;;117:76:14;;7:99:15;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2287:1;2280:8;;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;117:76:14:-;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@_approve_1026": { | |
| "entryPoint": 3960, | |
| "id": 1026, | |
| "parameterSlots": 4, | |
| "returnSlots": 0 | |
| }, | |
| "@_approve_960": { | |
| "entryPoint": 2349, | |
| "id": 960, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@_baseURI_341": { | |
| "entryPoint": 3679, | |
| "id": 341, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@_checkAuthorized_600": { | |
| "entryPoint": 4407, | |
| "id": 600, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@_getApproved_527": { | |
| "entryPoint": 2285, | |
| "id": 527, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_isAuthorized_563": { | |
| "entryPoint": 4939, | |
| "id": 563, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "@_msgSender_1345": { | |
| "entryPoint": 2342, | |
| "id": 1345, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@_ownerOf_514": { | |
| "entryPoint": 3903, | |
| "id": 514, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_requireOwned_1092": { | |
| "entryPoint": 2151, | |
| "id": 1092, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_setApprovalForAll_1063": { | |
| "entryPoint": 2890, | |
| "id": 1063, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@_update_706": { | |
| "entryPoint": 2367, | |
| "id": 706, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "@approve_357": { | |
| "entryPoint": 1092, | |
| "id": 357, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "@balanceOf_265": { | |
| "entryPoint": 1417, | |
| "id": 265, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@checkOnERC721Received_1332": { | |
| "entryPoint": 3251, | |
| "id": 1332, | |
| "parameterSlots": 5, | |
| "returnSlots": 0 | |
| }, | |
| "@getApproved_374": { | |
| "entryPoint": 1065, | |
| "id": 374, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@isApprovedForAll_407": { | |
| "entryPoint": 1904, | |
| "id": 407, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@log10_4306": { | |
| "entryPoint": 4602, | |
| "id": 4306, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@name_287": { | |
| "entryPoint": 922, | |
| "id": 287, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@ownerOf_278": { | |
| "entryPoint": 1400, | |
| "id": 278, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@safeTransferFrom_471": { | |
| "entryPoint": 1369, | |
| "id": 471, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@safeTransferFrom_501": { | |
| "entryPoint": 1765, | |
| "id": 501, | |
| "parameterSlots": 4, | |
| "returnSlots": 0 | |
| }, | |
| "@setApprovalForAll_390": { | |
| "entryPoint": 1743, | |
| "id": 390, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "@supportsInterface_237": { | |
| "entryPoint": 697, | |
| "id": 237, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@supportsInterface_2840": { | |
| "entryPoint": 2046, | |
| "id": 2840, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@symbol_296": { | |
| "entryPoint": 1599, | |
| "id": 296, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@toString_1529": { | |
| "entryPoint": 3701, | |
| "id": 1529, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@tokenURI_332": { | |
| "entryPoint": 1802, | |
| "id": 332, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@transferFrom_453": { | |
| "entryPoint": 1114, | |
| "id": 453, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "abi_decode_available_length_t_bytes_memory_ptr": { | |
| "entryPoint": 6214, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_address": { | |
| "entryPoint": 5675, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bool": { | |
| "entryPoint": 5942, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes4": { | |
| "entryPoint": 5213, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes4_fromMemory": { | |
| "entryPoint": 6909, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes_memory_ptr": { | |
| "entryPoint": 6279, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_uint256": { | |
| "entryPoint": 5502, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address": { | |
| "entryPoint": 5837, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_addresst_address": { | |
| "entryPoint": 6452, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 2 | |
| }, | |
| "abi_decode_tuple_t_addresst_addresst_uint256": { | |
| "entryPoint": 5757, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 3 | |
| }, | |
| "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": { | |
| "entryPoint": 6324, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 4 | |
| }, | |
| "abi_decode_tuple_t_addresst_bool": { | |
| "entryPoint": 5962, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 2 | |
| }, | |
| "abi_decode_tuple_t_addresst_uint256": { | |
| "entryPoint": 5695, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 2 | |
| }, | |
| "abi_decode_tuple_t_bytes4": { | |
| "entryPoint": 5233, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_bytes4_fromMemory": { | |
| "entryPoint": 6929, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_uint256": { | |
| "entryPoint": 5522, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 5613, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_bool_to_t_bool_fromStack": { | |
| "entryPoint": 5287, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 6779, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 5383, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 6670, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 5880, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
| "entryPoint": 6718, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
| "entryPoint": 5628, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 6835, | |
| "id": null, | |
| "parameterSlots": 5, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": { | |
| "entryPoint": 7017, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed": { | |
| "entryPoint": 6607, | |
| "id": null, | |
| "parameterSlots": 4, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
| "entryPoint": 5302, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 5439, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
| "entryPoint": 5895, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_memory": { | |
| "entryPoint": 6126, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": 5131, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "array_allocation_size_t_bytes_memory_ptr": { | |
| "entryPoint": 6152, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_bytes_memory_ptr": { | |
| "entryPoint": 6753, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 5327, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 6763, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 5337, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 6660, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 5596, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_bool": { | |
| "entryPoint": 5276, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_bytes4": { | |
| "entryPoint": 5148, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 5565, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 5471, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_calldata_to_memory_with_cleanup": { | |
| "entryPoint": 6200, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "copy_memory_to_memory_with_cleanup": { | |
| "entryPoint": 5353, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "extract_byte_array_length": { | |
| "entryPoint": 6559, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "finalize_allocation": { | |
| "entryPoint": 6077, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x12": { | |
| "entryPoint": 6972, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x22": { | |
| "entryPoint": 6514, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x41": { | |
| "entryPoint": 6032, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
| "entryPoint": 6024, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
| "entryPoint": 6028, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": 5144, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 5140, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 5367, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "validator_revert_t_address": { | |
| "entryPoint": 5653, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_bool": { | |
| "entryPoint": 5920, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_bytes4": { | |
| "entryPoint": 5191, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_uint256": { | |
| "entryPoint": 5480, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nativeSrc": "0:14643:15", | |
| "nodeType": "YulBlock", | |
| "src": "0:14643:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "47:35:15", | |
| "nodeType": "YulBlock", | |
| "src": "47:35:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "57:19:15", | |
| "nodeType": "YulAssignment", | |
| "src": "57:19:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "73:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "73:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "67:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "67:5:15" | |
| }, | |
| "nativeSrc": "67:9:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "67:9:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "57:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "57:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nativeSrc": "7:75:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "40:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "40:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:75:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "177:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "177:28:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "194:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "194:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "197:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "197:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "187:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "187:6:15" | |
| }, | |
| "nativeSrc": "187:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "187:12:15" | |
| }, | |
| "nativeSrc": "187:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "187:12:15" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "88:117:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "88:117:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "300:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "300:28:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "317:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "317:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "320:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "320:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "310:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "310:6:15" | |
| }, | |
| "nativeSrc": "310:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "310:12:15" | |
| }, | |
| "nativeSrc": "310:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "310:12:15" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nativeSrc": "211:117:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "211:117:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "378:105:15", | |
| "nodeType": "YulBlock", | |
| "src": "378:105:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "388:89:15", | |
| "nodeType": "YulAssignment", | |
| "src": "388:89:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "403:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "403:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "410:66:15", | |
| "nodeType": "YulLiteral", | |
| "src": "410:66:15", | |
| "type": "", | |
| "value": "0xffffffff00000000000000000000000000000000000000000000000000000000" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "399:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "399:3:15" | |
| }, | |
| "nativeSrc": "399:78:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "399:78:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "388:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "388:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_bytes4", | |
| "nativeSrc": "334:149:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "360:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "360:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "370:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "370:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "334:149:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "531:78:15", | |
| "nodeType": "YulBlock", | |
| "src": "531:78:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "587:16:15", | |
| "nodeType": "YulBlock", | |
| "src": "587:16:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "596:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "596:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "599:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "599:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "589:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "589:6:15" | |
| }, | |
| "nativeSrc": "589:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "589:12:15" | |
| }, | |
| "nativeSrc": "589:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "589:12:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "554:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "554:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "578:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "578:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_bytes4", | |
| "nativeSrc": "561:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "561:16:15" | |
| }, | |
| "nativeSrc": "561:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "561:23:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "551:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "551:2:15" | |
| }, | |
| "nativeSrc": "551:34:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "551:34:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "544:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "544:6:15" | |
| }, | |
| "nativeSrc": "544:42:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "544:42:15" | |
| }, | |
| "nativeSrc": "541:62:15", | |
| "nodeType": "YulIf", | |
| "src": "541:62:15" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_bytes4", | |
| "nativeSrc": "489:120:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "524:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "524:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "489:120:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "666:86:15", | |
| "nodeType": "YulBlock", | |
| "src": "666:86:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "676:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "676:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "698:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "698:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "685:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "685:12:15" | |
| }, | |
| "nativeSrc": "685:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "685:20:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "676:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "676:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "740:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "740:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_bytes4", | |
| "nativeSrc": "714:25:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "714:25:15" | |
| }, | |
| "nativeSrc": "714:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "714:32:15" | |
| }, | |
| "nativeSrc": "714:32:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "714:32:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes4", | |
| "nativeSrc": "615:137:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "644:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "644:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "652:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "652:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "660:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "660:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "615:137:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "823:262:15", | |
| "nodeType": "YulBlock", | |
| "src": "823:262:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "869:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "869:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "871:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "871:77:15" | |
| }, | |
| "nativeSrc": "871:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "871:79:15" | |
| }, | |
| "nativeSrc": "871:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "871:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "844:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "844:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "853:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "853:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "840:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "840:3:15" | |
| }, | |
| "nativeSrc": "840:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "840:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "865:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "865:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "836:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "836:3:15" | |
| }, | |
| "nativeSrc": "836:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "836:32:15" | |
| }, | |
| "nativeSrc": "833:119:15", | |
| "nodeType": "YulIf", | |
| "src": "833:119:15" | |
| }, | |
| { | |
| "nativeSrc": "962:116:15", | |
| "nodeType": "YulBlock", | |
| "src": "962:116:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "977:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "977:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "991:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "991:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "981:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "981:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "1006:62:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1006:62:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "1040:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1040:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "1051:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1051:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1036:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1036:3:15" | |
| }, | |
| "nativeSrc": "1036:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1036:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "1060:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1060:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes4", | |
| "nativeSrc": "1016:19:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1016:19:15" | |
| }, | |
| "nativeSrc": "1016:52:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1016:52:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "1006:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1006:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_bytes4", | |
| "nativeSrc": "758:327:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "793:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "793:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "804:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "804:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "816:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "816:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "758:327:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1133:48:15", | |
| "nodeType": "YulBlock", | |
| "src": "1133:48:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1143:32:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1143:32:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1168:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1168:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "1161:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1161:6:15" | |
| }, | |
| "nativeSrc": "1161:13:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1161:13:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "1154:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1154:6:15" | |
| }, | |
| "nativeSrc": "1154:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1154:21:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "1143:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1143:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_bool", | |
| "nativeSrc": "1091:90:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1115:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1115:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "1125:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1125:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1091:90:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1246:50:15", | |
| "nodeType": "YulBlock", | |
| "src": "1246:50:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "1263:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1263:3:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1283:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1283:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_bool", | |
| "nativeSrc": "1268:14:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1268:14:15" | |
| }, | |
| "nativeSrc": "1268:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1268:21:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "1256:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1256:6:15" | |
| }, | |
| "nativeSrc": "1256:34:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1256:34:15" | |
| }, | |
| "nativeSrc": "1256:34:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1256:34:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_bool_to_t_bool_fromStack", | |
| "nativeSrc": "1187:109:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1234:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1234:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "1241:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1241:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1187:109:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1394:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "1394:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1404:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1404:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "1416:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1416:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1427:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1427:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1412:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1412:3:15" | |
| }, | |
| "nativeSrc": "1412:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1412:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "1404:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1404:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "1478:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1478:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "1491:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1491:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1502:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1502:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1487:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1487:3:15" | |
| }, | |
| "nativeSrc": "1487:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1487:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_bool_to_t_bool_fromStack", | |
| "nativeSrc": "1440:37:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1440:37:15" | |
| }, | |
| "nativeSrc": "1440:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1440:65:15" | |
| }, | |
| "nativeSrc": "1440:65:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1440:65:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
| "nativeSrc": "1302:210:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "1366:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1366:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "1378:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1378:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "1389:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1389:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1302:210:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1577:40:15", | |
| "nodeType": "YulBlock", | |
| "src": "1577:40:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "1588:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1588:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1604:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1604:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "1598:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1598:5:15" | |
| }, | |
| "nativeSrc": "1598:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1598:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "1588:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1588:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nativeSrc": "1518:99:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1560:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1560:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "1570:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1570:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1518:99:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1719:73:15", | |
| "nodeType": "YulBlock", | |
| "src": "1719:73:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "1736:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1736:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "1741:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1741:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "1729:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1729:6:15" | |
| }, | |
| "nativeSrc": "1729:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1729:19:15" | |
| }, | |
| "nativeSrc": "1729:19:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1729:19:15" | |
| }, | |
| { | |
| "nativeSrc": "1757:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "1757:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "1776:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1776:3:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1781:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1781:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1772:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1772:3:15" | |
| }, | |
| "nativeSrc": "1772:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1772:14:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "1757:11:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1757:11:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nativeSrc": "1623:169:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "1691:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1691:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "1696:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1696:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "1707:11:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1707:11:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1623:169:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1860:77:15", | |
| "nodeType": "YulBlock", | |
| "src": "1860:77:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nativeSrc": "1877:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1877:3:15" | |
| }, | |
| { | |
| "name": "src", | |
| "nativeSrc": "1882:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1882:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "1887:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1887:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mcopy", | |
| "nativeSrc": "1871:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1871:5:15" | |
| }, | |
| "nativeSrc": "1871:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1871:23:15" | |
| }, | |
| "nativeSrc": "1871:23:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1871:23:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nativeSrc": "1914:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1914:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "1919:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1919:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "1910:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1910:3:15" | |
| }, | |
| "nativeSrc": "1910:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1910:16:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "1928:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "1928:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "1903:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "1903:6:15" | |
| }, | |
| "nativeSrc": "1903:27:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "1903:27:15" | |
| }, | |
| "nativeSrc": "1903:27:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1903:27:15" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nativeSrc": "1798:139:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "1842:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1842:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nativeSrc": "1847:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1847:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "1852:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1852:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1798:139:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "1991:54:15", | |
| "nodeType": "YulBlock", | |
| "src": "1991:54:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2001:38:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2001:38:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2019:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2019:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2026:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2026:2:15", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2015:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2015:3:15" | |
| }, | |
| "nativeSrc": "2015:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2015:14:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2035:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2035:2:15", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nativeSrc": "2031:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2031:3:15" | |
| }, | |
| "nativeSrc": "2031:7:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2031:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "2011:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2011:3:15" | |
| }, | |
| "nativeSrc": "2011:28:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2011:28:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "2001:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2001:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nativeSrc": "1943:102:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "1974:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1974:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nativeSrc": "1984:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "1984:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1943:102:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2143:285:15", | |
| "nodeType": "YulBlock", | |
| "src": "2143:285:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2153:53:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2153:53:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2200:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2200:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nativeSrc": "2167:32:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2167:32:15" | |
| }, | |
| "nativeSrc": "2167:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2167:39:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "2157:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2157:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "2215:78:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2215:78:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "2281:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2281:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "2286:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2286:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nativeSrc": "2222:58:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2222:58:15" | |
| }, | |
| "nativeSrc": "2222:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2222:71:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "2215:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2215:3:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2341:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2341:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2348:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2348:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2337:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2337:3:15" | |
| }, | |
| "nativeSrc": "2337:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2337:16:15" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "2355:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2355:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "2360:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2360:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nativeSrc": "2302:34:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2302:34:15" | |
| }, | |
| "nativeSrc": "2302:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2302:65:15" | |
| }, | |
| "nativeSrc": "2302:65:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2302:65:15" | |
| }, | |
| { | |
| "nativeSrc": "2376:46:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2376:46:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "2387:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2387:3:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "2414:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2414:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nativeSrc": "2392:21:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2392:21:15" | |
| }, | |
| "nativeSrc": "2392:29:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2392:29:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2383:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2383:3:15" | |
| }, | |
| "nativeSrc": "2383:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2383:39:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "2376:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2376:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nativeSrc": "2051:377:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2124:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2124:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "2131:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2131:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "2139:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2139:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2051:377:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2552:195:15", | |
| "nodeType": "YulBlock", | |
| "src": "2552:195:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2562:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2562:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "2574:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2574:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2585:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2585:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2570:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2570:3:15" | |
| }, | |
| "nativeSrc": "2570:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2570:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "2562:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2562:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "2609:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2609:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2620:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2620:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "2605:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2605:3:15" | |
| }, | |
| "nativeSrc": "2605:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2605:17:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "2628:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2628:4:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "2634:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2634:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "2624:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2624:3:15" | |
| }, | |
| "nativeSrc": "2624:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2624:20:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "2598:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2598:6:15" | |
| }, | |
| "nativeSrc": "2598:47:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2598:47:15" | |
| }, | |
| "nativeSrc": "2598:47:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2598:47:15" | |
| }, | |
| { | |
| "nativeSrc": "2654:86:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2654:86:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "2726:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2726:6:15" | |
| }, | |
| { | |
| "name": "tail", | |
| "nativeSrc": "2735:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2735:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nativeSrc": "2662:63:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2662:63:15" | |
| }, | |
| "nativeSrc": "2662:78:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2662:78:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "2654:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2654:4:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
| "nativeSrc": "2434:313:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "2524:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2524:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "2536:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2536:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "2547:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2547:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2434:313:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2798:32:15", | |
| "nodeType": "YulBlock", | |
| "src": "2798:32:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "2808:16:15", | |
| "nodeType": "YulAssignment", | |
| "src": "2808:16:15", | |
| "value": { | |
| "name": "value", | |
| "nativeSrc": "2819:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2819:5:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "2808:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2808:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "2753:77:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2780:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2780:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "2790:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2790:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2753:77:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "2879:79:15", | |
| "nodeType": "YulBlock", | |
| "src": "2879:79:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "2936:16:15", | |
| "nodeType": "YulBlock", | |
| "src": "2936:16:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2945:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2945:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "2948:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "2948:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "2938:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2938:6:15" | |
| }, | |
| "nativeSrc": "2938:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2938:12:15" | |
| }, | |
| "nativeSrc": "2938:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2938:12:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2902:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2902:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2927:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2927:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "2909:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2909:17:15" | |
| }, | |
| "nativeSrc": "2909:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2909:24:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "2899:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2899:2:15" | |
| }, | |
| "nativeSrc": "2899:35:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2899:35:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "2892:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "2892:6:15" | |
| }, | |
| "nativeSrc": "2892:43:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "2892:43:15" | |
| }, | |
| "nativeSrc": "2889:63:15", | |
| "nodeType": "YulIf", | |
| "src": "2889:63:15" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_uint256", | |
| "nativeSrc": "2836:122:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "2872:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2872:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2836:122:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3016:87:15", | |
| "nodeType": "YulBlock", | |
| "src": "3016:87:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3026:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3026:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "3048:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3048:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "3035:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3035:12:15" | |
| }, | |
| "nativeSrc": "3035:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3035:20:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3026:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3026:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3091:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3091:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_uint256", | |
| "nativeSrc": "3064:26:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3064:26:15" | |
| }, | |
| "nativeSrc": "3064:33:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3064:33:15" | |
| }, | |
| "nativeSrc": "3064:33:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3064:33:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_uint256", | |
| "nativeSrc": "2964:139:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "2994:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "2994:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "3002:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3002:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3010:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3010:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2964:139:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3175:263:15", | |
| "nodeType": "YulBlock", | |
| "src": "3175:263:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "3221:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "3221:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "3223:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3223:77:15" | |
| }, | |
| "nativeSrc": "3223:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3223:79:15" | |
| }, | |
| "nativeSrc": "3223:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3223:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "3196:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3196:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "3205:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3205:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "3192:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3192:3:15" | |
| }, | |
| "nativeSrc": "3192:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3192:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3217:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3217:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "3188:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3188:3:15" | |
| }, | |
| "nativeSrc": "3188:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3188:32:15" | |
| }, | |
| "nativeSrc": "3185:119:15", | |
| "nodeType": "YulIf", | |
| "src": "3185:119:15" | |
| }, | |
| { | |
| "nativeSrc": "3314:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "3314:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3329:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3329:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "3343:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3343:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "3333:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3333:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "3358:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3358:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "3393:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3393:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "3404:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3404:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "3389:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3389:3:15" | |
| }, | |
| "nativeSrc": "3389:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3389:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "3413:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3413:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nativeSrc": "3368:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3368:20:15" | |
| }, | |
| "nativeSrc": "3368:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3368:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "3358:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3358:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_uint256", | |
| "nativeSrc": "3109:329:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "3145:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3145:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "3156:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3156:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "3168:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3168:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3109:329:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3489:81:15", | |
| "nodeType": "YulBlock", | |
| "src": "3489:81:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3499:65:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3499:65:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3514:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3514:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3521:42:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3521:42:15", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "3510:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3510:3:15" | |
| }, | |
| "nativeSrc": "3510:54:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3510:54:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "3499:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3499:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nativeSrc": "3444:126:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3471:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3471:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "3481:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3481:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3444:126:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3621:51:15", | |
| "nodeType": "YulBlock", | |
| "src": "3621:51:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3631:35:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3631:35:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3660:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3660:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nativeSrc": "3642:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3642:17:15" | |
| }, | |
| "nativeSrc": "3642:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3642:24:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "3631:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3631:7:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nativeSrc": "3576:96:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3603:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3603:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nativeSrc": "3613:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3613:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3576:96:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3743:53:15", | |
| "nodeType": "YulBlock", | |
| "src": "3743:53:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "3760:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3760:3:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3783:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3783:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nativeSrc": "3765:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3765:17:15" | |
| }, | |
| "nativeSrc": "3765:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3765:24:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "3753:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3753:6:15" | |
| }, | |
| "nativeSrc": "3753:37:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3753:37:15" | |
| }, | |
| "nativeSrc": "3753:37:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3753:37:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "3678:118:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "3731:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3731:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "3738:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3738:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3678:118:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "3900:124:15", | |
| "nodeType": "YulBlock", | |
| "src": "3900:124:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "3910:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "3910:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "3922:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3922:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "3933:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "3933:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "3918:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3918:3:15" | |
| }, | |
| "nativeSrc": "3918:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3918:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "3910:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3910:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "3990:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3990:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4003:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4003:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4014:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4014:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "3999:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3999:3:15" | |
| }, | |
| "nativeSrc": "3999:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3999:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "3946:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "3946:43:15" | |
| }, | |
| "nativeSrc": "3946:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "3946:71:15" | |
| }, | |
| "nativeSrc": "3946:71:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3946:71:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
| "nativeSrc": "3802:222:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "3872:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3872:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "3884:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3884:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "3895:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "3895:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3802:222:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4073:79:15", | |
| "nodeType": "YulBlock", | |
| "src": "4073:79:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "4130:16:15", | |
| "nodeType": "YulBlock", | |
| "src": "4130:16:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4139:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4139:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4142:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4142:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "4132:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4132:6:15" | |
| }, | |
| "nativeSrc": "4132:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4132:12:15" | |
| }, | |
| "nativeSrc": "4132:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4132:12:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4096:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4096:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4121:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4121:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nativeSrc": "4103:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4103:17:15" | |
| }, | |
| "nativeSrc": "4103:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4103:24:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "4093:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4093:2:15" | |
| }, | |
| "nativeSrc": "4093:35:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4093:35:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "4086:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4086:6:15" | |
| }, | |
| "nativeSrc": "4086:43:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4086:43:15" | |
| }, | |
| "nativeSrc": "4083:63:15", | |
| "nodeType": "YulIf", | |
| "src": "4083:63:15" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_address", | |
| "nativeSrc": "4030:122:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4066:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4066:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4030:122:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4210:87:15", | |
| "nodeType": "YulBlock", | |
| "src": "4210:87:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4220:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4220:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4242:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4242:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "4229:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4229:12:15" | |
| }, | |
| "nativeSrc": "4229:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4229:20:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4220:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4220:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4285:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4285:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address", | |
| "nativeSrc": "4258:26:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4258:26:15" | |
| }, | |
| "nativeSrc": "4258:33:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4258:33:15" | |
| }, | |
| "nativeSrc": "4258:33:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4258:33:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "4158:139:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4188:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4188:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "4196:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4196:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "4204:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4204:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4158:139:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4386:391:15", | |
| "nodeType": "YulBlock", | |
| "src": "4386:391:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "4432:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "4432:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "4434:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4434:77:15" | |
| }, | |
| "nativeSrc": "4434:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4434:79:15" | |
| }, | |
| "nativeSrc": "4434:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4434:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4407:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4407:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4416:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4416:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "4403:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4403:3:15" | |
| }, | |
| "nativeSrc": "4403:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4403:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4428:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4428:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "4399:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4399:3:15" | |
| }, | |
| "nativeSrc": "4399:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4399:32:15" | |
| }, | |
| "nativeSrc": "4396:119:15", | |
| "nodeType": "YulIf", | |
| "src": "4396:119:15" | |
| }, | |
| { | |
| "nativeSrc": "4525:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "4525:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4540:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4540:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4554:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4554:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4544:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4544:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4569:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4569:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4604:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4604:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4615:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4615:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4600:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4600:3:15" | |
| }, | |
| "nativeSrc": "4600:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4600:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4624:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4624:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "4579:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4579:20:15" | |
| }, | |
| "nativeSrc": "4579:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4579:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "4569:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4569:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4652:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "4652:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "4667:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4667:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "4681:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4681:2:15", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4671:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4671:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "4697:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "4697:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4732:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4732:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "4743:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4743:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "4728:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4728:3:15" | |
| }, | |
| "nativeSrc": "4728:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4728:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4752:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4752:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nativeSrc": "4707:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4707:20:15" | |
| }, | |
| "nativeSrc": "4707:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4707:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "4697:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4697:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_uint256", | |
| "nativeSrc": "4303:474:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4348:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4348:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4359:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4359:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "4371:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4371:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "4379:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4379:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4303:474:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "4883:519:15", | |
| "nodeType": "YulBlock", | |
| "src": "4883:519:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "4929:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "4929:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "4931:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4931:77:15" | |
| }, | |
| "nativeSrc": "4931:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4931:79:15" | |
| }, | |
| "nativeSrc": "4931:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4931:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4904:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4904:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4913:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4913:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "4900:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4900:3:15" | |
| }, | |
| "nativeSrc": "4900:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4900:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "4925:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "4925:2:15", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "4896:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "4896:3:15" | |
| }, | |
| "nativeSrc": "4896:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "4896:32:15" | |
| }, | |
| "nativeSrc": "4893:119:15", | |
| "nodeType": "YulIf", | |
| "src": "4893:119:15" | |
| }, | |
| { | |
| "nativeSrc": "5022:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "5022:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5037:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "5037:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "5051:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5051:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5041:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5041:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5066:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5066:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5101:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5101:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5112:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5112:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5097:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5097:3:15" | |
| }, | |
| "nativeSrc": "5097:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5097:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5121:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5121:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "5076:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5076:20:15" | |
| }, | |
| "nativeSrc": "5076:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5076:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "5066:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5066:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5149:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "5149:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5164:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "5164:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "5178:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5178:2:15", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5168:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5168:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5194:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5194:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5229:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5229:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5240:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5240:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5225:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5225:3:15" | |
| }, | |
| "nativeSrc": "5225:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5225:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5249:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5249:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "5204:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5204:20:15" | |
| }, | |
| "nativeSrc": "5204:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5204:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "5194:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5194:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5277:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "5277:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5292:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "5292:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "5306:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5306:2:15", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5296:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5296:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5322:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5322:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5357:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5357:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5368:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5368:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5353:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5353:3:15" | |
| }, | |
| "nativeSrc": "5353:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5353:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5377:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5377:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nativeSrc": "5332:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5332:20:15" | |
| }, | |
| "nativeSrc": "5332:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5332:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value2", | |
| "nativeSrc": "5322:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5322:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_addresst_uint256", | |
| "nativeSrc": "4783:619:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "4837:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4837:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "4848:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4848:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "4860:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4860:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "4868:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4868:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nativeSrc": "4876:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "4876:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4783:619:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "5474:263:15", | |
| "nodeType": "YulBlock", | |
| "src": "5474:263:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "5520:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "5520:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "5522:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5522:77:15" | |
| }, | |
| "nativeSrc": "5522:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5522:79:15" | |
| }, | |
| "nativeSrc": "5522:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5522:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5495:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5495:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5504:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5504:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "5491:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5491:3:15" | |
| }, | |
| "nativeSrc": "5491:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5491:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "5516:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5516:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "5487:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5487:3:15" | |
| }, | |
| "nativeSrc": "5487:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5487:32:15" | |
| }, | |
| "nativeSrc": "5484:119:15", | |
| "nodeType": "YulIf", | |
| "src": "5484:119:15" | |
| }, | |
| { | |
| "nativeSrc": "5613:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "5613:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5628:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "5628:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "5642:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5642:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5632:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5632:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "5657:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5657:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5692:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5692:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "5703:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5703:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5688:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5688:3:15" | |
| }, | |
| "nativeSrc": "5688:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5688:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5712:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5712:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "5667:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5667:20:15" | |
| }, | |
| "nativeSrc": "5667:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5667:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "5657:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5657:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address", | |
| "nativeSrc": "5408:329:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5444:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5444:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "5455:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5455:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "5467:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5467:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "5408:329:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "5808:53:15", | |
| "nodeType": "YulBlock", | |
| "src": "5808:53:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "5825:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5825:3:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "5848:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5848:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nativeSrc": "5830:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5830:17:15" | |
| }, | |
| "nativeSrc": "5830:24:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5830:24:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "5818:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5818:6:15" | |
| }, | |
| "nativeSrc": "5818:37:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5818:37:15" | |
| }, | |
| "nativeSrc": "5818:37:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5818:37:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nativeSrc": "5743:118:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "5796:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5796:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "5803:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5803:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "5743:118:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "5965:124:15", | |
| "nodeType": "YulBlock", | |
| "src": "5965:124:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "5975:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "5975:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5987:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5987:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "5998:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "5998:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "5983:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5983:3:15" | |
| }, | |
| "nativeSrc": "5983:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "5983:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "5975:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "5975:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "6055:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6055:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "6068:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6068:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6079:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6079:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "6064:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6064:3:15" | |
| }, | |
| "nativeSrc": "6064:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6064:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nativeSrc": "6011:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6011:43:15" | |
| }, | |
| "nativeSrc": "6011:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6011:71:15" | |
| }, | |
| "nativeSrc": "6011:71:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6011:71:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
| "nativeSrc": "5867:222:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "5937:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5937:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "5949:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5949:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "5960:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "5960:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "5867:222:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "6135:76:15", | |
| "nodeType": "YulBlock", | |
| "src": "6135:76:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "6189:16:15", | |
| "nodeType": "YulBlock", | |
| "src": "6189:16:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6198:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6198:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6201:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6201:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "6191:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6191:6:15" | |
| }, | |
| "nativeSrc": "6191:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6191:12:15" | |
| }, | |
| "nativeSrc": "6191:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6191:12:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6158:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6158:5:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6180:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6180:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_bool", | |
| "nativeSrc": "6165:14:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6165:14:15" | |
| }, | |
| "nativeSrc": "6165:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6165:21:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "6155:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6155:2:15" | |
| }, | |
| "nativeSrc": "6155:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6155:32:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "6148:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6148:6:15" | |
| }, | |
| "nativeSrc": "6148:40:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6148:40:15" | |
| }, | |
| "nativeSrc": "6145:60:15", | |
| "nodeType": "YulIf", | |
| "src": "6145:60:15" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_bool", | |
| "nativeSrc": "6095:116:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6128:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6128:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "6095:116:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "6266:84:15", | |
| "nodeType": "YulBlock", | |
| "src": "6266:84:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "6276:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "6276:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6298:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6298:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "6285:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6285:12:15" | |
| }, | |
| "nativeSrc": "6285:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6285:20:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6276:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6276:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6338:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6338:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_bool", | |
| "nativeSrc": "6314:23:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6314:23:15" | |
| }, | |
| "nativeSrc": "6314:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6314:30:15" | |
| }, | |
| "nativeSrc": "6314:30:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6314:30:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bool", | |
| "nativeSrc": "6217:133:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6244:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6244:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "6252:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6252:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "6260:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6260:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "6217:133:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "6436:388:15", | |
| "nodeType": "YulBlock", | |
| "src": "6436:388:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "6482:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "6482:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "6484:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6484:77:15" | |
| }, | |
| "nativeSrc": "6484:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6484:79:15" | |
| }, | |
| "nativeSrc": "6484:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6484:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "6457:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6457:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "6466:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6466:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "6453:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6453:3:15" | |
| }, | |
| "nativeSrc": "6453:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6453:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6478:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6478:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "6449:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6449:3:15" | |
| }, | |
| "nativeSrc": "6449:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6449:32:15" | |
| }, | |
| "nativeSrc": "6446:119:15", | |
| "nodeType": "YulIf", | |
| "src": "6446:119:15" | |
| }, | |
| { | |
| "nativeSrc": "6575:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "6575:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "6590:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6590:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "6604:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6604:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6594:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6594:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "6619:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "6619:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "6654:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6654:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6665:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6665:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "6650:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6650:3:15" | |
| }, | |
| "nativeSrc": "6650:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6650:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "6674:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6674:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "6629:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6629:20:15" | |
| }, | |
| "nativeSrc": "6629:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6629:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "6619:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6619:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "6702:115:15", | |
| "nodeType": "YulBlock", | |
| "src": "6702:115:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "6717:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6717:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "6731:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6731:2:15", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6721:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6721:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "6747:60:15", | |
| "nodeType": "YulAssignment", | |
| "src": "6747:60:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "6779:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6779:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "6790:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6790:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "6775:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6775:3:15" | |
| }, | |
| "nativeSrc": "6775:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6775:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "6799:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6799:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bool", | |
| "nativeSrc": "6757:17:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6757:17:15" | |
| }, | |
| "nativeSrc": "6757:50:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6757:50:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "6747:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6747:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_bool", | |
| "nativeSrc": "6356:468:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "6398:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6398:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "6409:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6409:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "6421:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6421:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "6429:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "6429:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "6356:468:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "6919:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "6919:28:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6936:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6936:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "6939:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "6939:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "6929:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "6929:6:15" | |
| }, | |
| "nativeSrc": "6929:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "6929:12:15" | |
| }, | |
| "nativeSrc": "6929:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6929:12:15" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nativeSrc": "6830:117:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "6830:117:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7042:28:15", | |
| "nodeType": "YulBlock", | |
| "src": "7042:28:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7059:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7059:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7062:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7062:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "7052:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7052:6:15" | |
| }, | |
| "nativeSrc": "7052:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7052:12:15" | |
| }, | |
| "nativeSrc": "7052:12:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7052:12:15" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
| "nativeSrc": "6953:117:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "6953:117:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7104:152:15", | |
| "nodeType": "YulBlock", | |
| "src": "7104:152:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7121:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7121:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7124:77:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7124:77:15", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "7114:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7114:6:15" | |
| }, | |
| "nativeSrc": "7114:88:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7114:88:15" | |
| }, | |
| "nativeSrc": "7114:88:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7114:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7218:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7218:1:15", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7221:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7221:4:15", | |
| "type": "", | |
| "value": "0x41" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "7211:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7211:6:15" | |
| }, | |
| "nativeSrc": "7211:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7211:15:15" | |
| }, | |
| "nativeSrc": "7211:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7211:15:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7242:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7242:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7245:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7245:4:15", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "7235:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7235:6:15" | |
| }, | |
| "nativeSrc": "7235:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7235:15:15" | |
| }, | |
| "nativeSrc": "7235:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7235:15:15" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x41", | |
| "nativeSrc": "7076:180:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "7076:180:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7305:238:15", | |
| "nodeType": "YulBlock", | |
| "src": "7305:238:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "7315:58:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "7315:58:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7337:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7337:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7367:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7367:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nativeSrc": "7345:21:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7345:21:15" | |
| }, | |
| "nativeSrc": "7345:27:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7345:27:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "7333:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7333:3:15" | |
| }, | |
| "nativeSrc": "7333:40:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7333:40:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "newFreePtr", | |
| "nativeSrc": "7319:10:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7319:10:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7484:22:15", | |
| "nodeType": "YulBlock", | |
| "src": "7484:22:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nativeSrc": "7486:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7486:16:15" | |
| }, | |
| "nativeSrc": "7486:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7486:18:15" | |
| }, | |
| "nativeSrc": "7486:18:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7486:18:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nativeSrc": "7427:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7427:10:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7439:18:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7439:18:15", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "7424:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7424:2:15" | |
| }, | |
| "nativeSrc": "7424:34:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7424:34:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nativeSrc": "7463:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7463:10:15" | |
| }, | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7475:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7475:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "7460:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7460:2:15" | |
| }, | |
| "nativeSrc": "7460:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7460:22:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "or", | |
| "nativeSrc": "7421:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7421:2:15" | |
| }, | |
| "nativeSrc": "7421:62:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7421:62:15" | |
| }, | |
| "nativeSrc": "7418:88:15", | |
| "nodeType": "YulIf", | |
| "src": "7418:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7522:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7522:2:15", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| { | |
| "name": "newFreePtr", | |
| "nativeSrc": "7526:10:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7526:10:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "7515:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7515:6:15" | |
| }, | |
| "nativeSrc": "7515:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7515:22:15" | |
| }, | |
| "nativeSrc": "7515:22:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7515:22:15" | |
| } | |
| ] | |
| }, | |
| "name": "finalize_allocation", | |
| "nativeSrc": "7262:281:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7291:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7291:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "size", | |
| "nativeSrc": "7299:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7299:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7262:281:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7590:88:15", | |
| "nodeType": "YulBlock", | |
| "src": "7590:88:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "7600:30:15", | |
| "nodeType": "YulAssignment", | |
| "src": "7600:30:15", | |
| "value": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "allocate_unbounded", | |
| "nativeSrc": "7610:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7610:18:15" | |
| }, | |
| "nativeSrc": "7610:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7610:20:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7600:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7600:6:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7659:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7659:6:15" | |
| }, | |
| { | |
| "name": "size", | |
| "nativeSrc": "7667:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7667:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "finalize_allocation", | |
| "nativeSrc": "7639:19:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7639:19:15" | |
| }, | |
| "nativeSrc": "7639:33:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7639:33:15" | |
| }, | |
| "nativeSrc": "7639:33:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7639:33:15" | |
| } | |
| ] | |
| }, | |
| "name": "allocate_memory", | |
| "nativeSrc": "7549:129:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7574:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7574:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nativeSrc": "7583:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7583:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7549:129:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "7750:241:15", | |
| "nodeType": "YulBlock", | |
| "src": "7750:241:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "7855:22:15", | |
| "nodeType": "YulBlock", | |
| "src": "7855:22:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nativeSrc": "7857:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7857:16:15" | |
| }, | |
| "nativeSrc": "7857:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7857:18:15" | |
| }, | |
| "nativeSrc": "7857:18:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7857:18:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "7827:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7827:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7835:18:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7835:18:15", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "7824:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7824:2:15" | |
| }, | |
| "nativeSrc": "7824:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7824:30:15" | |
| }, | |
| "nativeSrc": "7821:56:15", | |
| "nodeType": "YulIf", | |
| "src": "7821:56:15" | |
| }, | |
| { | |
| "nativeSrc": "7887:37:15", | |
| "nodeType": "YulAssignment", | |
| "src": "7887:37:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "7917:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7917:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nativeSrc": "7895:21:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7895:21:15" | |
| }, | |
| "nativeSrc": "7895:29:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7895:29:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7887:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7887:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "7961:23:15", | |
| "nodeType": "YulAssignment", | |
| "src": "7961:23:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7973:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7973:4:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "7979:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "7979:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "7969:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7969:3:15" | |
| }, | |
| "nativeSrc": "7969:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "7969:15:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7961:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "7961:4:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_allocation_size_t_bytes_memory_ptr", | |
| "nativeSrc": "7684:307:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "7734:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7734:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "size", | |
| "nativeSrc": "7745:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "7745:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7684:307:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "8061:84:15", | |
| "nodeType": "YulBlock", | |
| "src": "8061:84:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nativeSrc": "8085:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8085:3:15" | |
| }, | |
| { | |
| "name": "src", | |
| "nativeSrc": "8090:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8090:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8095:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8095:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldatacopy", | |
| "nativeSrc": "8072:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8072:12:15" | |
| }, | |
| "nativeSrc": "8072:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8072:30:15" | |
| }, | |
| "nativeSrc": "8072:30:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8072:30:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nativeSrc": "8122:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8122:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8127:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8127:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "8118:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8118:3:15" | |
| }, | |
| "nativeSrc": "8118:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8118:16:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "8136:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "8136:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "8111:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8111:6:15" | |
| }, | |
| "nativeSrc": "8111:27:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8111:27:15" | |
| }, | |
| "nativeSrc": "8111:27:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8111:27:15" | |
| } | |
| ] | |
| }, | |
| "name": "copy_calldata_to_memory_with_cleanup", | |
| "nativeSrc": "7997:148:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "8043:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8043:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nativeSrc": "8048:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8048:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8053:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8053:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7997:148:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "8234:340:15", | |
| "nodeType": "YulBlock", | |
| "src": "8234:340:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "8244:74:15", | |
| "nodeType": "YulAssignment", | |
| "src": "8244:74:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "8310:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8310:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_allocation_size_t_bytes_memory_ptr", | |
| "nativeSrc": "8269:40:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8269:40:15" | |
| }, | |
| "nativeSrc": "8269:48:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8269:48:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "allocate_memory", | |
| "nativeSrc": "8253:15:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8253:15:15" | |
| }, | |
| "nativeSrc": "8253:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8253:65:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8244:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8244:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8334:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8334:5:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8341:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8341:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "8327:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8327:6:15" | |
| }, | |
| "nativeSrc": "8327:21:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8327:21:15" | |
| }, | |
| "nativeSrc": "8327:21:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8327:21:15" | |
| }, | |
| { | |
| "nativeSrc": "8357:27:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "8357:27:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8372:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8372:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "8379:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "8379:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "8368:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8368:3:15" | |
| }, | |
| "nativeSrc": "8368:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8368:16:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "dst", | |
| "nativeSrc": "8361:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8361:3:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "8422:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "8422:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
| "nativeSrc": "8424:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8424:77:15" | |
| }, | |
| "nativeSrc": "8424:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8424:79:15" | |
| }, | |
| "nativeSrc": "8424:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8424:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "8403:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8403:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8408:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8408:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "8399:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8399:3:15" | |
| }, | |
| "nativeSrc": "8399:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8399:16:15" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "8417:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8417:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "8396:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8396:2:15" | |
| }, | |
| "nativeSrc": "8396:25:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8396:25:15" | |
| }, | |
| "nativeSrc": "8393:112:15", | |
| "nodeType": "YulIf", | |
| "src": "8393:112:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "8551:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8551:3:15" | |
| }, | |
| { | |
| "name": "dst", | |
| "nativeSrc": "8556:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8556:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8561:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8561:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_calldata_to_memory_with_cleanup", | |
| "nativeSrc": "8514:36:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8514:36:15" | |
| }, | |
| "nativeSrc": "8514:54:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8514:54:15" | |
| }, | |
| "nativeSrc": "8514:54:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8514:54:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_available_length_t_bytes_memory_ptr", | |
| "nativeSrc": "8151:423:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nativeSrc": "8207:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8207:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8212:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8212:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "8220:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8220:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8228:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8228:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8151:423:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "8654:277:15", | |
| "nodeType": "YulBlock", | |
| "src": "8654:277:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "8703:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "8703:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nativeSrc": "8705:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8705:77:15" | |
| }, | |
| "nativeSrc": "8705:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8705:79:15" | |
| }, | |
| "nativeSrc": "8705:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8705:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "8682:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8682:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "8690:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "8690:4:15", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "8678:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8678:3:15" | |
| }, | |
| "nativeSrc": "8678:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8678:17:15" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "8697:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8697:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "8674:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8674:3:15" | |
| }, | |
| "nativeSrc": "8674:27:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8674:27:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "8667:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8667:6:15" | |
| }, | |
| "nativeSrc": "8667:35:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8667:35:15" | |
| }, | |
| "nativeSrc": "8664:122:15", | |
| "nodeType": "YulIf", | |
| "src": "8664:122:15" | |
| }, | |
| { | |
| "nativeSrc": "8795:34:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "8795:34:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "8822:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8822:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "8809:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8809:12:15" | |
| }, | |
| "nativeSrc": "8809:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8809:20:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "8799:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8799:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "8838:87:15", | |
| "nodeType": "YulAssignment", | |
| "src": "8838:87:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "8898:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8898:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "8906:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "8906:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "8894:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8894:3:15" | |
| }, | |
| "nativeSrc": "8894:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8894:17:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "8913:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8913:6:15" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "8921:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8921:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_available_length_t_bytes_memory_ptr", | |
| "nativeSrc": "8847:46:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8847:46:15" | |
| }, | |
| "nativeSrc": "8847:78:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "8847:78:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8838:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "8838:5:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes_memory_ptr", | |
| "nativeSrc": "8593:338:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "8632:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8632:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "8640:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8640:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nativeSrc": "8648:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "8648:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8593:338:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "9063:817:15", | |
| "nodeType": "YulBlock", | |
| "src": "9063:817:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "9110:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "9110:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "9112:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9112:77:15" | |
| }, | |
| "nativeSrc": "9112:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9112:79:15" | |
| }, | |
| "nativeSrc": "9112:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "9112:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9084:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9084:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9093:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9093:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "9080:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9080:3:15" | |
| }, | |
| "nativeSrc": "9080:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9080:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "9105:3:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9105:3:15", | |
| "type": "", | |
| "value": "128" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "9076:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9076:3:15" | |
| }, | |
| "nativeSrc": "9076:33:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9076:33:15" | |
| }, | |
| "nativeSrc": "9073:120:15", | |
| "nodeType": "YulIf", | |
| "src": "9073:120:15" | |
| }, | |
| { | |
| "nativeSrc": "9203:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "9203:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "9218:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "9218:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "9232:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9232:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9222:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9222:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9247:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "9247:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9282:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9282:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9293:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9293:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "9278:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9278:3:15" | |
| }, | |
| "nativeSrc": "9278:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9278:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9302:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9302:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "9257:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9257:20:15" | |
| }, | |
| "nativeSrc": "9257:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9257:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "9247:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9247:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9330:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "9330:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "9345:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "9345:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "9359:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9359:2:15", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9349:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9349:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9375:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "9375:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9410:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9410:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9421:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9421:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "9406:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9406:3:15" | |
| }, | |
| "nativeSrc": "9406:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9406:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9430:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9430:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "9385:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9385:20:15" | |
| }, | |
| "nativeSrc": "9385:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9385:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "9375:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9375:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9458:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "9458:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "9473:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "9473:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "9487:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9487:2:15", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9477:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9477:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9503:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "9503:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9538:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9538:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9549:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9549:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "9534:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9534:3:15" | |
| }, | |
| "nativeSrc": "9534:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9534:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9558:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9558:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nativeSrc": "9513:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9513:20:15" | |
| }, | |
| "nativeSrc": "9513:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9513:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value2", | |
| "nativeSrc": "9503:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9503:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "9586:287:15", | |
| "nodeType": "YulBlock", | |
| "src": "9586:287:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "9601:46:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "9601:46:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9632:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9632:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "9643:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9643:2:15", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "9628:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9628:3:15" | |
| }, | |
| "nativeSrc": "9628:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9628:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nativeSrc": "9615:12:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9615:12:15" | |
| }, | |
| "nativeSrc": "9615:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9615:32:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9605:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9605:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "9694:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "9694:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nativeSrc": "9696:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9696:77:15" | |
| }, | |
| "nativeSrc": "9696:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9696:79:15" | |
| }, | |
| "nativeSrc": "9696:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "9696:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9666:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9666:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "9674:18:15", | |
| "nodeType": "YulLiteral", | |
| "src": "9674:18:15", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nativeSrc": "9663:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9663:2:15" | |
| }, | |
| "nativeSrc": "9663:30:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9663:30:15" | |
| }, | |
| "nativeSrc": "9660:117:15", | |
| "nodeType": "YulIf", | |
| "src": "9660:117:15" | |
| }, | |
| { | |
| "nativeSrc": "9791:72:15", | |
| "nodeType": "YulAssignment", | |
| "src": "9791:72:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9835:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9835:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "9846:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9846:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "9831:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9831:3:15" | |
| }, | |
| "nativeSrc": "9831:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9831:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9855:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9855:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes_memory_ptr", | |
| "nativeSrc": "9801:29:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9801:29:15" | |
| }, | |
| "nativeSrc": "9801:62:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9801:62:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value3", | |
| "nativeSrc": "9791:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9791:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr", | |
| "nativeSrc": "8937:943:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9009:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9009:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9020:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9020:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "9032:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9032:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "9040:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9040:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nativeSrc": "9048:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9048:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nativeSrc": "9056:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9056:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8937:943:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "9969:391:15", | |
| "nodeType": "YulBlock", | |
| "src": "9969:391:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "10015:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "10015:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "10017:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10017:77:15" | |
| }, | |
| "nativeSrc": "10017:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10017:79:15" | |
| }, | |
| "nativeSrc": "10017:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10017:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9990:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9990:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9999:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9999:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "9986:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9986:3:15" | |
| }, | |
| "nativeSrc": "9986:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9986:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10011:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10011:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "9982:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "9982:3:15" | |
| }, | |
| "nativeSrc": "9982:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "9982:32:15" | |
| }, | |
| "nativeSrc": "9979:119:15", | |
| "nodeType": "YulIf", | |
| "src": "9979:119:15" | |
| }, | |
| { | |
| "nativeSrc": "10108:117:15", | |
| "nodeType": "YulBlock", | |
| "src": "10108:117:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "10123:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "10123:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "10137:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10137:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "10127:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10127:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "10152:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "10152:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "10187:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10187:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "10198:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10198:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "10183:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10183:3:15" | |
| }, | |
| "nativeSrc": "10183:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10183:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "10207:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10207:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "10162:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10162:20:15" | |
| }, | |
| "nativeSrc": "10162:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10162:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "10152:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10152:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "10235:118:15", | |
| "nodeType": "YulBlock", | |
| "src": "10235:118:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "10250:16:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "10250:16:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "10264:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10264:2:15", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "10254:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10254:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "10280:63:15", | |
| "nodeType": "YulAssignment", | |
| "src": "10280:63:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "10315:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10315:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "10326:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10326:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "10311:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10311:3:15" | |
| }, | |
| "nativeSrc": "10311:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10311:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "10335:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10335:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nativeSrc": "10290:20:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10290:20:15" | |
| }, | |
| "nativeSrc": "10290:53:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10290:53:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "10280:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10280:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_address", | |
| "nativeSrc": "9886:474:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "9931:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9931:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "9942:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9942:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "9954:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9954:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "9962:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "9962:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9886:474:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "10394:152:15", | |
| "nodeType": "YulBlock", | |
| "src": "10394:152:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10411:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10411:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10414:77:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10414:77:15", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "10404:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10404:6:15" | |
| }, | |
| "nativeSrc": "10404:88:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10404:88:15" | |
| }, | |
| "nativeSrc": "10404:88:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10404:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10508:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10508:1:15", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10511:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10511:4:15", | |
| "type": "", | |
| "value": "0x22" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "10501:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10501:6:15" | |
| }, | |
| "nativeSrc": "10501:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10501:15:15" | |
| }, | |
| "nativeSrc": "10501:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10501:15:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10532:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10532:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10535:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10535:4:15", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "10525:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10525:6:15" | |
| }, | |
| "nativeSrc": "10525:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10525:15:15" | |
| }, | |
| "nativeSrc": "10525:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10525:15:15" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x22", | |
| "nativeSrc": "10366:180:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "10366:180:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "10603:269:15", | |
| "nodeType": "YulBlock", | |
| "src": "10603:269:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "10613:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "10613:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "10627:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10627:4:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10633:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10633:1:15", | |
| "type": "", | |
| "value": "2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "div", | |
| "nativeSrc": "10623:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10623:3:15" | |
| }, | |
| "nativeSrc": "10623:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10623:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "10613:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10613:6:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "10644:38:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "10644:38:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "10674:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10674:4:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10680:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10680:1:15", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "10670:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10670:3:15" | |
| }, | |
| "nativeSrc": "10670:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10670:12:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "10648:18:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10648:18:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "10721:51:15", | |
| "nodeType": "YulBlock", | |
| "src": "10721:51:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "10735:27:15", | |
| "nodeType": "YulAssignment", | |
| "src": "10735:27:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "10749:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10749:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10757:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10757:4:15", | |
| "type": "", | |
| "value": "0x7f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nativeSrc": "10745:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10745:3:15" | |
| }, | |
| "nativeSrc": "10745:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10745:17:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "10735:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10735:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "10701:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10701:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nativeSrc": "10694:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10694:6:15" | |
| }, | |
| "nativeSrc": "10694:26:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10694:26:15" | |
| }, | |
| "nativeSrc": "10691:81:15", | |
| "nodeType": "YulIf", | |
| "src": "10691:81:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "10824:42:15", | |
| "nodeType": "YulBlock", | |
| "src": "10824:42:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x22", | |
| "nativeSrc": "10838:16:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10838:16:15" | |
| }, | |
| "nativeSrc": "10838:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10838:18:15" | |
| }, | |
| "nativeSrc": "10838:18:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10838:18:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "outOfPlaceEncoding", | |
| "nativeSrc": "10788:18:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10788:18:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "10811:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10811:6:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "10819:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "10819:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nativeSrc": "10808:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10808:2:15" | |
| }, | |
| "nativeSrc": "10808:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10808:14:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nativeSrc": "10785:2:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "10785:2:15" | |
| }, | |
| "nativeSrc": "10785:38:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "10785:38:15" | |
| }, | |
| "nativeSrc": "10782:84:15", | |
| "nodeType": "YulIf", | |
| "src": "10782:84:15" | |
| } | |
| ] | |
| }, | |
| "name": "extract_byte_array_length", | |
| "nativeSrc": "10552:320:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "data", | |
| "nativeSrc": "10587:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10587:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "10596:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10596:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10552:320:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "11032:288:15", | |
| "nodeType": "YulBlock", | |
| "src": "11032:288:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "11042:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "11042:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "11054:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11054:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "11065:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "11065:2:15", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11050:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11050:3:15" | |
| }, | |
| "nativeSrc": "11050:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11050:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "11042:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11042:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "11122:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11122:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "11135:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11135:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "11146:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "11146:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11131:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11131:3:15" | |
| }, | |
| "nativeSrc": "11131:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11131:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "11078:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11078:43:15" | |
| }, | |
| "nativeSrc": "11078:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11078:71:15" | |
| }, | |
| "nativeSrc": "11078:71:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11078:71:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "11203:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11203:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "11216:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11216:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "11227:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "11227:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11212:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11212:3:15" | |
| }, | |
| "nativeSrc": "11212:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11212:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nativeSrc": "11159:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11159:43:15" | |
| }, | |
| "nativeSrc": "11159:72:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11159:72:15" | |
| }, | |
| "nativeSrc": "11159:72:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11159:72:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nativeSrc": "11285:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11285:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "11298:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11298:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "11309:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "11309:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11294:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11294:3:15" | |
| }, | |
| "nativeSrc": "11294:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11294:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "11241:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11241:43:15" | |
| }, | |
| "nativeSrc": "11241:72:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11241:72:15" | |
| }, | |
| "nativeSrc": "11241:72:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11241:72:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed", | |
| "nativeSrc": "10878:442:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "10988:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "10988:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nativeSrc": "11000:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11000:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "11008:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11008:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "11016:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11016:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "11027:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11027:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10878:442:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "11440:34:15", | |
| "nodeType": "YulBlock", | |
| "src": "11440:34:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "11450:18:15", | |
| "nodeType": "YulAssignment", | |
| "src": "11450:18:15", | |
| "value": { | |
| "name": "pos", | |
| "nativeSrc": "11465:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11465:3:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "11450:11:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11450:11:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nativeSrc": "11326:148:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11412:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11412:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "11417:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11417:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "11428:11:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11428:11:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11326:148:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "11590:280:15", | |
| "nodeType": "YulBlock", | |
| "src": "11590:280:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "11600:53:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "11600:53:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "11647:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11647:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nativeSrc": "11614:32:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11614:32:15" | |
| }, | |
| "nativeSrc": "11614:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11614:39:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "11604:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11604:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "11662:96:15", | |
| "nodeType": "YulAssignment", | |
| "src": "11662:96:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11746:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11746:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "11751:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11751:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nativeSrc": "11669:76:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11669:76:15" | |
| }, | |
| "nativeSrc": "11669:89:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11669:89:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11662:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11662:3:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "11806:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11806:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "11813:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "11813:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11802:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11802:3:15" | |
| }, | |
| "nativeSrc": "11802:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11802:16:15" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11820:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11820:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "11825:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11825:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nativeSrc": "11767:34:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11767:34:15" | |
| }, | |
| "nativeSrc": "11767:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11767:65:15" | |
| }, | |
| "nativeSrc": "11767:65:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11767:65:15" | |
| }, | |
| { | |
| "nativeSrc": "11841:23:15", | |
| "nodeType": "YulAssignment", | |
| "src": "11841:23:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11852:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11852:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "11857:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11857:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "11848:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11848:3:15" | |
| }, | |
| "nativeSrc": "11848:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "11848:16:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "11841:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "11841:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nativeSrc": "11480:390:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "11571:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11571:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "11578:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11578:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "11586:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "11586:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11480:390:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "12060:251:15", | |
| "nodeType": "YulBlock", | |
| "src": "12060:251:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "12071:102:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12071:102:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "12160:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12160:6:15" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12169:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12169:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nativeSrc": "12078:81:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12078:81:15" | |
| }, | |
| "nativeSrc": "12078:95:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12078:95:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12071:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12071:3:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "12183:102:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12183:102:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "12272:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12272:6:15" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12281:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12281:3:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nativeSrc": "12190:81:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12190:81:15" | |
| }, | |
| "nativeSrc": "12190:95:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12190:95:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12183:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12183:3:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "12295:10:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12295:10:15", | |
| "value": { | |
| "name": "pos", | |
| "nativeSrc": "12302:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12302:3:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "12295:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12295:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
| "nativeSrc": "11876:435:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12031:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12031:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "12037:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12037:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "12045:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12045:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "12056:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12056:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11876:435:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "12375:40:15", | |
| "nodeType": "YulBlock", | |
| "src": "12375:40:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "12386:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12386:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "12402:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12402:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "12396:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12396:5:15" | |
| }, | |
| "nativeSrc": "12396:12:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12396:12:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "12386:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12386:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nativeSrc": "12317:98:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "12358:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12358:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "12368:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12368:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "12317:98:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "12516:73:15", | |
| "nodeType": "YulBlock", | |
| "src": "12516:73:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12533:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12533:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "12538:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12538:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "12526:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12526:6:15" | |
| }, | |
| "nativeSrc": "12526:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12526:19:15" | |
| }, | |
| "nativeSrc": "12526:19:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "12526:19:15" | |
| }, | |
| { | |
| "nativeSrc": "12554:29:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12554:29:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12573:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12573:3:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "12578:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "12578:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "12569:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12569:3:15" | |
| }, | |
| "nativeSrc": "12569:14:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12569:14:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "12554:11:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12554:11:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nativeSrc": "12421:168:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12488:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12488:3:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "12493:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12493:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nativeSrc": "12504:11:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12504:11:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "12421:168:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "12685:283:15", | |
| "nodeType": "YulBlock", | |
| "src": "12685:283:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "12695:52:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "12695:52:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "12741:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12741:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nativeSrc": "12709:31:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12709:31:15" | |
| }, | |
| "nativeSrc": "12709:38:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12709:38:15" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "12699:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12699:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "12756:77:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12756:77:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12821:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12821:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "12826:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12826:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nativeSrc": "12763:57:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12763:57:15" | |
| }, | |
| "nativeSrc": "12763:70:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12763:70:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12756:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12756:3:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "12881:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12881:5:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "12888:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "12888:4:15", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "12877:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12877:3:15" | |
| }, | |
| "nativeSrc": "12877:16:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12877:16:15" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12895:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12895:3:15" | |
| }, | |
| { | |
| "name": "length", | |
| "nativeSrc": "12900:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12900:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nativeSrc": "12842:34:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12842:34:15" | |
| }, | |
| "nativeSrc": "12842:65:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12842:65:15" | |
| }, | |
| "nativeSrc": "12842:65:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "12842:65:15" | |
| }, | |
| { | |
| "nativeSrc": "12916:46:15", | |
| "nodeType": "YulAssignment", | |
| "src": "12916:46:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12927:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12927:3:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nativeSrc": "12954:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12954:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nativeSrc": "12932:21:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12932:21:15" | |
| }, | |
| "nativeSrc": "12932:29:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12932:29:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "12923:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12923:3:15" | |
| }, | |
| "nativeSrc": "12923:39:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "12923:39:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "12916:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "12916:3:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nativeSrc": "12595:373:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "12666:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12666:5:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nativeSrc": "12673:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12673:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nativeSrc": "12681:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "12681:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "12595:373:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "13174:440:15", | |
| "nodeType": "YulBlock", | |
| "src": "13174:440:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "13184:27:15", | |
| "nodeType": "YulAssignment", | |
| "src": "13184:27:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13196:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13196:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13207:3:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13207:3:15", | |
| "type": "", | |
| "value": "128" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "13192:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13192:3:15" | |
| }, | |
| "nativeSrc": "13192:19:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13192:19:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "13184:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13184:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "13265:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13265:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13278:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13278:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13289:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13289:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "13274:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13274:3:15" | |
| }, | |
| "nativeSrc": "13274:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13274:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "13221:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13221:43:15" | |
| }, | |
| "nativeSrc": "13221:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13221:71:15" | |
| }, | |
| "nativeSrc": "13221:71:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13221:71:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "13346:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13346:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13359:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13359:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13370:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13370:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "13355:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13355:3:15" | |
| }, | |
| "nativeSrc": "13355:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13355:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "13302:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13302:43:15" | |
| }, | |
| "nativeSrc": "13302:72:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13302:72:15" | |
| }, | |
| "nativeSrc": "13302:72:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13302:72:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nativeSrc": "13428:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13428:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13441:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13441:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13452:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13452:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "13437:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13437:3:15" | |
| }, | |
| "nativeSrc": "13437:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13437:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nativeSrc": "13384:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13384:43:15" | |
| }, | |
| "nativeSrc": "13384:72:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13384:72:15" | |
| }, | |
| "nativeSrc": "13384:72:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13384:72:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13477:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13477:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13488:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13488:2:15", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "13473:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13473:3:15" | |
| }, | |
| "nativeSrc": "13473:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13473:18:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "13497:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13497:4:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13503:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13503:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "13493:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13493:3:15" | |
| }, | |
| "nativeSrc": "13493:20:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13493:20:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "13466:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13466:6:15" | |
| }, | |
| "nativeSrc": "13466:48:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13466:48:15" | |
| }, | |
| "nativeSrc": "13466:48:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13466:48:15" | |
| }, | |
| { | |
| "nativeSrc": "13523:84:15", | |
| "nodeType": "YulAssignment", | |
| "src": "13523:84:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value3", | |
| "nativeSrc": "13593:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13593:6:15" | |
| }, | |
| { | |
| "name": "tail", | |
| "nativeSrc": "13602:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13602:4:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nativeSrc": "13531:61:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13531:61:15" | |
| }, | |
| "nativeSrc": "13531:76:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13531:76:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "13523:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13523:4:15" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed", | |
| "nativeSrc": "12974:640:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13122:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13122:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nativeSrc": "13134:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13134:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nativeSrc": "13142:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13142:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "13150:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13150:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "13158:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13158:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "13169:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13169:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "12974:640:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "13682:79:15", | |
| "nodeType": "YulBlock", | |
| "src": "13682:79:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "13692:22:15", | |
| "nodeType": "YulAssignment", | |
| "src": "13692:22:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "13707:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13707:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nativeSrc": "13701:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13701:5:15" | |
| }, | |
| "nativeSrc": "13701:13:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13701:13:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "13692:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13692:5:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "13749:5:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13749:5:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_bytes4", | |
| "nativeSrc": "13723:25:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13723:25:15" | |
| }, | |
| "nativeSrc": "13723:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13723:32:15" | |
| }, | |
| "nativeSrc": "13723:32:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13723:32:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes4_fromMemory", | |
| "nativeSrc": "13620:141:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "13660:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13660:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nativeSrc": "13668:3:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13668:3:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nativeSrc": "13676:5:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13676:5:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13620:141:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "13843:273:15", | |
| "nodeType": "YulBlock", | |
| "src": "13843:273:15", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nativeSrc": "13889:83:15", | |
| "nodeType": "YulBlock", | |
| "src": "13889:83:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nativeSrc": "13891:77:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13891:77:15" | |
| }, | |
| "nativeSrc": "13891:79:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13891:79:15" | |
| }, | |
| "nativeSrc": "13891:79:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13891:79:15" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "13864:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13864:7:15" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13873:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13873:9:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nativeSrc": "13860:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13860:3:15" | |
| }, | |
| "nativeSrc": "13860:23:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13860:23:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "13885:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "13885:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nativeSrc": "13856:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "13856:3:15" | |
| }, | |
| "nativeSrc": "13856:32:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "13856:32:15" | |
| }, | |
| "nativeSrc": "13853:119:15", | |
| "nodeType": "YulIf", | |
| "src": "13853:119:15" | |
| }, | |
| { | |
| "nativeSrc": "13982:127:15", | |
| "nodeType": "YulBlock", | |
| "src": "13982:127:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "13997:15:15", | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "13997:15:15", | |
| "value": { | |
| "kind": "number", | |
| "nativeSrc": "14011:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14011:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nativeSrc": "14001:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "14001:6:15", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nativeSrc": "14026:73:15", | |
| "nodeType": "YulAssignment", | |
| "src": "14026:73:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "14071:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14071:9:15" | |
| }, | |
| { | |
| "name": "offset", | |
| "nativeSrc": "14082:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14082:6:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "14067:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14067:3:15" | |
| }, | |
| "nativeSrc": "14067:22:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14067:22:15" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "14091:7:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14091:7:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes4_fromMemory", | |
| "nativeSrc": "14036:30:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14036:30:15" | |
| }, | |
| "nativeSrc": "14036:63:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14036:63:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "14026:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14026:6:15" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_bytes4_fromMemory", | |
| "nativeSrc": "13767:349:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "13813:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13813:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nativeSrc": "13824:7:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13824:7:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "13836:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "13836:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13767:349:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "14150:152:15", | |
| "nodeType": "YulBlock", | |
| "src": "14150:152:15", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14167:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14167:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14170:77:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14170:77:15", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "14160:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14160:6:15" | |
| }, | |
| "nativeSrc": "14160:88:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14160:88:15" | |
| }, | |
| "nativeSrc": "14160:88:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14160:88:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14264:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14264:1:15", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14267:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14267:4:15", | |
| "type": "", | |
| "value": "0x12" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nativeSrc": "14257:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14257:6:15" | |
| }, | |
| "nativeSrc": "14257:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14257:15:15" | |
| }, | |
| "nativeSrc": "14257:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14257:15:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14288:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14288:1:15", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14291:4:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14291:4:15", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nativeSrc": "14281:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14281:6:15" | |
| }, | |
| "nativeSrc": "14281:15:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14281:15:15" | |
| }, | |
| "nativeSrc": "14281:15:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14281:15:15" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x12", | |
| "nativeSrc": "14122:180:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "14122:180:15" | |
| }, | |
| { | |
| "body": { | |
| "nativeSrc": "14434:206:15", | |
| "nodeType": "YulBlock", | |
| "src": "14434:206:15", | |
| "statements": [ | |
| { | |
| "nativeSrc": "14444:26:15", | |
| "nodeType": "YulAssignment", | |
| "src": "14444:26:15", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "14456:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14456:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14467:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14467:2:15", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "14452:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14452:3:15" | |
| }, | |
| "nativeSrc": "14452:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14452:18:15" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "14444:4:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14444:4:15" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nativeSrc": "14524:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14524:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "14537:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14537:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14548:1:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14548:1:15", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "14533:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14533:3:15" | |
| }, | |
| "nativeSrc": "14533:17:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14533:17:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nativeSrc": "14480:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14480:43:15" | |
| }, | |
| "nativeSrc": "14480:71:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14480:71:15" | |
| }, | |
| "nativeSrc": "14480:71:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14480:71:15" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nativeSrc": "14605:6:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14605:6:15" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "14618:9:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14618:9:15" | |
| }, | |
| { | |
| "kind": "number", | |
| "nativeSrc": "14629:2:15", | |
| "nodeType": "YulLiteral", | |
| "src": "14629:2:15", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nativeSrc": "14614:3:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14614:3:15" | |
| }, | |
| "nativeSrc": "14614:18:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14614:18:15" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nativeSrc": "14561:43:15", | |
| "nodeType": "YulIdentifier", | |
| "src": "14561:43:15" | |
| }, | |
| "nativeSrc": "14561:72:15", | |
| "nodeType": "YulFunctionCall", | |
| "src": "14561:72:15" | |
| }, | |
| "nativeSrc": "14561:72:15", | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14561:72:15" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed", | |
| "nativeSrc": "14308:332:15", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nativeSrc": "14398:9:15", | |
| "nodeType": "YulTypedName", | |
| "src": "14398:9:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nativeSrc": "14410:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "14410:6:15", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nativeSrc": "14418:6:15", | |
| "nodeType": "YulTypedName", | |
| "src": "14418:6:15", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nativeSrc": "14429:4:15", | |
| "nodeType": "YulTypedName", | |
| "src": "14429:4:15", | |
| "type": "" | |
| } | |
| ], | |
| "src": "14308:332:15" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_address_to_t_address_fromStack(value2, add(headStart, 64))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n}\n", | |
| "id": 15, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561000f575f5ffd5b50600436106100cd575f3560e01c80636352211e1161008a578063a22cb46511610064578063a22cb46514610221578063b88d4fde1461023d578063c87b56dd14610259578063e985e9c514610289576100cd565b80636352211e146101a357806370a08231146101d357806395d89b4114610203576100cd565b806301ffc9a7146100d157806306fdde0314610101578063081812fc1461011f578063095ea7b31461014f57806323b872dd1461016b57806342842e0e14610187575b5f5ffd5b6100eb60048036038101906100e69190611471565b6102b9565b6040516100f891906114b6565b60405180910390f35b61010961039a565b604051610116919061153f565b60405180910390f35b61013960048036038101906101349190611592565b610429565b60405161014691906115fc565b60405180910390f35b6101696004803603810190610164919061163f565b610444565b005b6101856004803603810190610180919061167d565b61045a565b005b6101a1600480360381019061019c919061167d565b610559565b005b6101bd60048036038101906101b89190611592565b610578565b6040516101ca91906115fc565b60405180910390f35b6101ed60048036038101906101e891906116cd565b610589565b6040516101fa9190611707565b60405180910390f35b61020b61063f565b604051610218919061153f565b60405180910390f35b61023b6004803603810190610236919061174a565b6106cf565b005b610257600480360381019061025291906118b4565b6106e5565b005b610273600480360381019061026e9190611592565b61070a565b604051610280919061153f565b60405180910390f35b6102a3600480360381019061029e9190611934565b610770565b6040516102b091906114b6565b60405180910390f35b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103935750610392826107fe565b5b9050919050565b60605f80546103a89061199f565b80601f01602080910402602001604051908101604052809291908181526020018280546103d49061199f565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f61043382610867565b5061043d826108ed565b9050919050565b6104568282610451610926565b61092d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104ca575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016104c191906115fc565b60405180910390fd5b5f6104dd83836104d8610926565b61093f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610553578382826040517f64283d7b00000000000000000000000000000000000000000000000000000000815260040161054a939291906119cf565b60405180910390fd5b50505050565b61057383838360405180602001604052805f8152506106e5565b505050565b5f61058282610867565b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105fa575f6040517f89c62b640000000000000000000000000000000000000000000000000000000081526004016105f191906115fc565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606001805461064e9061199f565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061199f565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b6106e16106da610926565b8383610b4a565b5050565b6106f084848461045a565b6107046106fb610926565b85858585610cb3565b50505050565b606061071582610867565b505f61071f610e5f565b90505f81511161073d5760405180602001604052805f815250610768565b8061074784610e75565b604051602001610758929190611a3e565b6040516020818303038152906040525b915050919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f5f61087283610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e457826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016108db9190611707565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61093a8383836001610f78565b505050565b5f5f61094a84610f3f565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461098b5761098a818486611137565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a16576109ca5f855f5f610f78565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610a9557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bba57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401610bb191906115fc565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ca691906114b6565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115610e58578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02868685856040518563ffffffff1660e01b8152600401610d119493929190611ab3565b6020604051808303815f875af1925050508015610d4c57506040513d601f19601f82011682018060405250810190610d499190611b11565b60015b610dcd573d805f8114610d7a576040519150601f19603f3d011682016040523d82523d5f602084013e610d7f565b606091505b505f815103610dc557836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610dbc91906115fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610e5657836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610e4d91906115fc565b60405180910390fd5b505b5050505050565b606060405180602001604052805f815250905090565b60605f6001610e83846111fa565b0190505f8167ffffffffffffffff811115610ea157610ea0611790565b5b6040519080825280601f01601f191660200182016040528015610ed35781602001600182028036833780820191505090505b5090505f82602001820190505b600115610f34578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581610f2957610f28611b3c565b5b0494505f8503610ee0575b819350505050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8080610fb057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110e2575f610fbf84610867565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561102957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561103c575061103a8184610770565b155b1561107e57826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161107591906115fc565b60405180910390fd5b81156110e057838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b61114283838361134b565b6111f5575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111b657806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016111ad9190611707565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016111ec929190611b69565b60405180910390fd5b505050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611256577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161124c5761124b611b3c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611293576d04ee2d6d415b85acef8100000000838161128957611288611b3c565b5b0492506020810190505b662386f26fc1000083106112c257662386f26fc1000083816112b8576112b7611b3c565b5b0492506010810190505b6305f5e10083106112eb576305f5e10083816112e1576112e0611b3c565b5b0492506008810190505b612710831061131057612710838161130657611305611b3c565b5b0492506004810190505b60648310611333576064838161132957611328611b3c565b5b0492506002810190505b600a8310611342576001810190505b80915050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140257508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113c357506113c28484610770565b5b8061140157508273ffffffffffffffffffffffffffffffffffffffff166113e9836108ed565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114508161141c565b811461145a575f5ffd5b50565b5f8135905061146b81611447565b92915050565b5f6020828403121561148657611485611414565b5b5f6114938482850161145d565b91505092915050565b5f8115159050919050565b6114b08161149c565b82525050565b5f6020820190506114c95f8301846114a7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611511826114cf565b61151b81856114d9565b935061152b8185602086016114e9565b611534816114f7565b840191505092915050565b5f6020820190508181035f8301526115578184611507565b905092915050565b5f819050919050565b6115718161155f565b811461157b575f5ffd5b50565b5f8135905061158c81611568565b92915050565b5f602082840312156115a7576115a6611414565b5b5f6115b48482850161157e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115e6826115bd565b9050919050565b6115f6816115dc565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b61161e816115dc565b8114611628575f5ffd5b50565b5f8135905061163981611615565b92915050565b5f5f6040838503121561165557611654611414565b5b5f6116628582860161162b565b92505060206116738582860161157e565b9150509250929050565b5f5f5f6060848603121561169457611693611414565b5b5f6116a18682870161162b565b93505060206116b28682870161162b565b92505060406116c38682870161157e565b9150509250925092565b5f602082840312156116e2576116e1611414565b5b5f6116ef8482850161162b565b91505092915050565b6117018161155f565b82525050565b5f60208201905061171a5f8301846116f8565b92915050565b6117298161149c565b8114611733575f5ffd5b50565b5f8135905061174481611720565b92915050565b5f5f604083850312156117605761175f611414565b5b5f61176d8582860161162b565b925050602061177e85828601611736565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6117c6826114f7565b810181811067ffffffffffffffff821117156117e5576117e4611790565b5b80604052505050565b5f6117f761140b565b905061180382826117bd565b919050565b5f67ffffffffffffffff82111561182257611821611790565b5b61182b826114f7565b9050602081019050919050565b828183375f83830152505050565b5f61185861185384611808565b6117ee565b9050828152602081018484840111156118745761187361178c565b5b61187f848285611838565b509392505050565b5f82601f83011261189b5761189a611788565b5b81356118ab848260208601611846565b91505092915050565b5f5f5f5f608085870312156118cc576118cb611414565b5b5f6118d98782880161162b565b94505060206118ea8782880161162b565b93505060406118fb8782880161157e565b925050606085013567ffffffffffffffff81111561191c5761191b611418565b5b61192887828801611887565b91505092959194509250565b5f5f6040838503121561194a57611949611414565b5b5f6119578582860161162b565b92505060206119688582860161162b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119b657607f821691505b6020821081036119c9576119c8611972565b5b50919050565b5f6060820190506119e25f8301866115ed565b6119ef60208301856116f8565b6119fc60408301846115ed565b949350505050565b5f81905092915050565b5f611a18826114cf565b611a228185611a04565b9350611a328185602086016114e9565b80840191505092915050565b5f611a498285611a0e565b9150611a558284611a0e565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f611a8582611a61565b611a8f8185611a6b565b9350611a9f8185602086016114e9565b611aa8816114f7565b840191505092915050565b5f608082019050611ac65f8301876115ed565b611ad360208301866115ed565b611ae060408301856116f8565b8181036060830152611af28184611a7b565b905095945050505050565b5f81519050611b0b81611447565b92915050565b5f60208284031215611b2657611b25611414565b5b5f611b3384828501611afd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050611b7c5f8301856115ed565b611b8960208301846116f8565b939250505056fea2646970667358221220027113139486392ef42efe356885bb848cdfc20ba039e421064d7b4f14b179bb64736f6c634300081e0033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x259 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x289 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD1 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16B JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x187 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0x1471 JUMP JUMPDEST PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH2 0x39A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x139 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x429 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x169 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x163F JUMP JUMPDEST PUSH2 0x444 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x185 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x180 SWAP2 SWAP1 PUSH2 0x167D JUMP JUMPDEST PUSH2 0x45A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19C SWAP2 SWAP1 PUSH2 0x167D JUMP JUMPDEST PUSH2 0x559 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x578 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0x16CD JUMP JUMPDEST PUSH2 0x589 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x63F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x174A JUMP JUMPDEST PUSH2 0x6CF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x257 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x252 SWAP2 SWAP1 PUSH2 0x18B4 JUMP JUMPDEST PUSH2 0x6E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x273 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26E SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x70A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x280 SWAP2 SWAP1 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29E SWAP2 SWAP1 PUSH2 0x1934 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B0 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x383 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x393 JUMPI POP PUSH2 0x392 DUP3 PUSH2 0x7FE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3D4 SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x41F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3F6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x41F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x402 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x433 DUP3 PUSH2 0x867 JUMP JUMPDEST POP PUSH2 0x43D DUP3 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x456 DUP3 DUP3 PUSH2 0x451 PUSH2 0x926 JUMP JUMPDEST PUSH2 0x92D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x4CA JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4DD DUP4 DUP4 PUSH2 0x4D8 PUSH2 0x926 JUMP JUMPDEST PUSH2 0x93F JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x553 JUMPI DUP4 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH32 0x64283D7B00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x54A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x573 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x6E5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x582 DUP3 PUSH2 0x867 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x5FA JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x89C62B6400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5F1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x64E SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x67A SWAP1 PUSH2 0x199F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6C5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x69C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6C5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6A8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x6E1 PUSH2 0x6DA PUSH2 0x926 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xB4A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x6F0 DUP5 DUP5 DUP5 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x704 PUSH2 0x6FB PUSH2 0x926 JUMP JUMPDEST DUP6 DUP6 DUP6 DUP6 PUSH2 0xCB3 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x715 DUP3 PUSH2 0x867 JUMP JUMPDEST POP PUSH0 PUSH2 0x71F PUSH2 0xE5F JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x73D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x768 JUMP JUMPDEST DUP1 PUSH2 0x747 DUP5 PUSH2 0xE75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x758 SWAP3 SWAP2 SWAP1 PUSH2 0x1A3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x872 DUP4 PUSH2 0xF3F JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8E4 JUMPI DUP3 PUSH1 0x40 MLOAD PUSH32 0x7E27328900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8DB SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x4 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x93A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xF78 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x94A DUP5 PUSH2 0xF3F JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x98B JUMPI PUSH2 0x98A DUP2 DUP5 DUP7 PUSH2 0x1137 JUMP JUMPDEST JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA16 JUMPI PUSH2 0x9CA PUSH0 DUP6 PUSH0 PUSH0 PUSH2 0xF78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA95 JUMPI PUSH1 0x1 PUSH1 0x3 PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP5 PUSH1 0x2 PUSH0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBBA JUMPI DUP2 PUSH1 0x40 MLOAD PUSH32 0x5B08BA1800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBB1 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0xCA6 SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT ISZERO PUSH2 0xE58 JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 DUP7 DUP7 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD11 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1AB3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xD4C JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD49 SWAP2 SWAP1 PUSH2 0x1B11 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xDCD JUMPI RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD7A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD7F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH0 DUP2 MLOAD SUB PUSH2 0xDC5 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDBC SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0xE56 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x64A0AE9200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE4D SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH1 0x1 PUSH2 0xE83 DUP5 PUSH2 0x11FA JUMP JUMPDEST ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEA1 JUMPI PUSH2 0xEA0 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xED3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0xF34 JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0xF29 JUMPI PUSH2 0xF28 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH0 DUP6 SUB PUSH2 0xEE0 JUMPI JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP1 PUSH2 0xFB0 JUMPI POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x10E2 JUMPI PUSH0 PUSH2 0xFBF DUP5 PUSH2 0x867 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x1029 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x103C JUMPI POP PUSH2 0x103A DUP2 DUP5 PUSH2 0x770 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x107E JUMPI DUP3 PUSH1 0x40 MLOAD PUSH32 0xA9FBF51F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1075 SWAP2 SWAP1 PUSH2 0x15FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 ISZERO PUSH2 0x10E0 JUMPI DUP4 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST DUP4 PUSH1 0x4 PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1142 DUP4 DUP4 DUP4 PUSH2 0x134B JUMP JUMPDEST PUSH2 0x11F5 JUMPI PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x11B6 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0x7E27328900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AD SWAP2 SWAP1 PUSH2 0x1707 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH1 0x40 MLOAD PUSH32 0x177E802F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11EC SWAP3 SWAP2 SWAP1 PUSH2 0x1B69 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x1256 JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x124C JUMPI PUSH2 0x124B PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x1293 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x1289 JUMPI PUSH2 0x1288 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x12C2 JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x12B8 JUMPI PUSH2 0x12B7 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x12EB JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x12E1 JUMPI PUSH2 0x12E0 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1310 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x1306 JUMPI PUSH2 0x1305 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x1333 JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x1329 JUMPI PUSH2 0x1328 PUSH2 0x1B3C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x1342 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x1402 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x13C3 JUMPI POP PUSH2 0x13C2 DUP5 DUP5 PUSH2 0x770 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0x1401 JUMPI POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x13E9 DUP4 PUSH2 0x8ED JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1450 DUP2 PUSH2 0x141C JUMP JUMPDEST DUP2 EQ PUSH2 0x145A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x146B DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1486 JUMPI PUSH2 0x1485 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1493 DUP5 DUP3 DUP6 ADD PUSH2 0x145D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14B0 DUP2 PUSH2 0x149C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14C9 PUSH0 DUP4 ADD DUP5 PUSH2 0x14A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1511 DUP3 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x151B DUP2 DUP6 PUSH2 0x14D9 JUMP JUMPDEST SWAP4 POP PUSH2 0x152B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST PUSH2 0x1534 DUP2 PUSH2 0x14F7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1557 DUP2 DUP5 PUSH2 0x1507 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1571 DUP2 PUSH2 0x155F JUMP JUMPDEST DUP2 EQ PUSH2 0x157B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x158C DUP2 PUSH2 0x1568 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15A7 JUMPI PUSH2 0x15A6 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x15B4 DUP5 DUP3 DUP6 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x15E6 DUP3 PUSH2 0x15BD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x15F6 DUP2 PUSH2 0x15DC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x160F PUSH0 DUP4 ADD DUP5 PUSH2 0x15ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x161E DUP2 PUSH2 0x15DC JUMP JUMPDEST DUP2 EQ PUSH2 0x1628 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1639 DUP2 PUSH2 0x1615 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1655 JUMPI PUSH2 0x1654 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1662 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1673 DUP6 DUP3 DUP7 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1694 JUMPI PUSH2 0x1693 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x16A1 DUP7 DUP3 DUP8 ADD PUSH2 0x162B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x16B2 DUP7 DUP3 DUP8 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x16C3 DUP7 DUP3 DUP8 ADD PUSH2 0x157E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16E2 JUMPI PUSH2 0x16E1 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x16EF DUP5 DUP3 DUP6 ADD PUSH2 0x162B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1701 DUP2 PUSH2 0x155F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x171A PUSH0 DUP4 ADD DUP5 PUSH2 0x16F8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1729 DUP2 PUSH2 0x149C JUMP JUMPDEST DUP2 EQ PUSH2 0x1733 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1744 DUP2 PUSH2 0x1720 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1760 JUMPI PUSH2 0x175F PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x176D DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x177E DUP6 DUP3 DUP7 ADD PUSH2 0x1736 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x17C6 DUP3 PUSH2 0x14F7 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x17E5 JUMPI PUSH2 0x17E4 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x17F7 PUSH2 0x140B JUMP JUMPDEST SWAP1 POP PUSH2 0x1803 DUP3 DUP3 PUSH2 0x17BD JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1822 JUMPI PUSH2 0x1821 PUSH2 0x1790 JUMP JUMPDEST JUMPDEST PUSH2 0x182B DUP3 PUSH2 0x14F7 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1858 PUSH2 0x1853 DUP5 PUSH2 0x1808 JUMP JUMPDEST PUSH2 0x17EE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1874 JUMPI PUSH2 0x1873 PUSH2 0x178C JUMP JUMPDEST JUMPDEST PUSH2 0x187F DUP5 DUP3 DUP6 PUSH2 0x1838 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x1788 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x18AB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1846 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x18CC JUMPI PUSH2 0x18CB PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x18D9 DUP8 DUP3 DUP9 ADD PUSH2 0x162B JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x18EA DUP8 DUP3 DUP9 ADD PUSH2 0x162B JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x18FB DUP8 DUP3 DUP9 ADD PUSH2 0x157E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x191C JUMPI PUSH2 0x191B PUSH2 0x1418 JUMP JUMPDEST JUMPDEST PUSH2 0x1928 DUP8 DUP3 DUP9 ADD PUSH2 0x1887 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x194A JUMPI PUSH2 0x1949 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1957 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1968 DUP6 DUP3 DUP7 ADD PUSH2 0x162B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x19B6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x19C9 JUMPI PUSH2 0x19C8 PUSH2 0x1972 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x19E2 PUSH0 DUP4 ADD DUP7 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x19EF PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x16F8 JUMP JUMPDEST PUSH2 0x19FC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x15ED JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP3 PUSH2 0x14CF JUMP JUMPDEST PUSH2 0x1A22 DUP2 DUP6 PUSH2 0x1A04 JUMP JUMPDEST SWAP4 POP PUSH2 0x1A32 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A49 DUP3 DUP6 PUSH2 0x1A0E JUMP JUMPDEST SWAP2 POP PUSH2 0x1A55 DUP3 DUP5 PUSH2 0x1A0E JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A85 DUP3 PUSH2 0x1A61 JUMP JUMPDEST PUSH2 0x1A8F DUP2 DUP6 PUSH2 0x1A6B JUMP JUMPDEST SWAP4 POP PUSH2 0x1A9F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x14E9 JUMP JUMPDEST PUSH2 0x1AA8 DUP2 PUSH2 0x14F7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1AC6 PUSH0 DUP4 ADD DUP8 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1AD3 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1AE0 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x16F8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1AF2 DUP2 DUP5 PUSH2 0x1A7B JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x1B0B DUP2 PUSH2 0x1447 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B26 JUMPI PUSH2 0x1B25 PUSH2 0x1414 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1B33 DUP5 DUP3 DUP6 ADD PUSH2 0x1AFD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1B7C PUSH0 DUP4 ADD DUP6 PUSH2 0x15ED JUMP JUMPDEST PUSH2 0x1B89 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x16F8 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MUL PUSH18 0x13139486392EF42EFE356885BB848CDFC20B LOG0 CODECOPY RETF 0x21 MOD 0x4D PUSH28 0x4F14B179BB64736F6C634300081E0033000000000000000000000000 ", | |
| "sourceMap": "117:76:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1560:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2364:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3496:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3322:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4142:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4786:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2184:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1919:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2517:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3717:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4984:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2676:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3927:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1560:300;1662:4;1712:25;1697:40;;;:11;:40;;;;:104;;;;1768:33;1753:48;;;:11;:48;;;;1697:104;:156;;;;1817:36;1841:11;1817:23;:36::i;:::-;1697:156;1678:175;;1560:300;;;:::o;2364:89::-;2409:13;2441:5;2434:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2364:89;:::o;3496:154::-;3563:7;3582:22;3596:7;3582:13;:22::i;:::-;;3622:21;3635:7;3622:12;:21::i;:::-;3615:28;;3496:154;;;:::o;3322:113::-;3393:35;3402:2;3406:7;3415:12;:10;:12::i;:::-;3393:8;:35::i;:::-;3322:113;;:::o;4142:578::-;4250:1;4236:16;;:2;:16;;;4232:87;;4305:1;4275:33;;;;;;;;;;;:::i;:::-;;;;;;;;4232:87;4537:21;4561:34;4569:2;4573:7;4582:12;:10;:12::i;:::-;4561:7;:34::i;:::-;4537:58;;4626:4;4609:21;;:13;:21;;;4605:109;;4674:4;4680:7;4689:13;4653:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;4605:109;4222:498;4142:578;;;:::o;4786:132::-;4872:39;4889:4;4895:2;4899:7;4872:39;;;;;;;;;;;;:16;:39::i;:::-;4786:132;;;:::o;2184:118::-;2247:7;2273:22;2287:7;2273:13;:22::i;:::-;2266:29;;2184:118;;;:::o;1919:208::-;1982:7;2022:1;2005:19;;:5;:19;;;2001:87;;2074:1;2047:30;;;;;;;;;;;:::i;:::-;;;;;;;;2001:87;2104:9;:16;2114:5;2104:16;;;;;;;;;;;;;;;;2097:23;;1919:208;;;:::o;2517:93::-;2564:13;2596:7;2589:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:93;:::o;3717:144::-;3802:52;3821:12;:10;:12::i;:::-;3835:8;3845;3802:18;:52::i;:::-;3717:144;;:::o;4984:233::-;5097:31;5110:4;5116:2;5120:7;5097:12;:31::i;:::-;5138:72;5172:12;:10;:12::i;:::-;5186:4;5192:2;5196:7;5205:4;5138:33;:72::i;:::-;4984:233;;;;:::o;2676:255::-;2740:13;2765:22;2779:7;2765:13;:22::i;:::-;;2798:21;2822:10;:8;:10::i;:::-;2798:34;;2873:1;2855:7;2849:21;:25;:75;;;;;;;;;;;;;;;;;2891:7;2900:18;:7;:16;:18::i;:::-;2877:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2849:75;2842:82;;;2676:255;;;:::o;3927:153::-;4015:4;4038:18;:25;4057:5;4038:25;;;;;;;;;;;;;;;:35;4064:8;4038:35;;;;;;;;;;;;;;;;;;;;;;;;;4031:42;;3927:153;;;;:::o;763:146:9:-;839:4;877:25;862:40;;;:11;:40;;;;855:47;;763:146;;;:::o;16212:241:1:-;16275:7;16294:13;16310:17;16319:7;16310:8;:17::i;:::-;16294:33;;16358:1;16341:19;;:5;:19;;;16337:88;;16406:7;16383:31;;;;;;;;;;;:::i;:::-;;;;;;;;16337:88;16441:5;16434:12;;;16212:241;;;:::o;5963:127::-;6033:7;6059:15;:24;6075:7;6059:24;;;;;;;;;;;;;;;;;;;;;6052:31;;5963:127;;;:::o;656:96:6:-;709:7;735:10;728:17;;656:96;:::o;14492:120:1:-;14572:33;14581:2;14585:7;14594:4;14600;14572:8;:33::i;:::-;14492:120;;;:::o;8861:795::-;8947:7;8966:12;8981:17;8990:7;8981:8;:17::i;:::-;8966:32;;9074:1;9058:18;;:4;:18;;;9054:86;;9092:37;9109:4;9115;9121:7;9092:16;:37::i;:::-;9054:86;9200:1;9184:18;;:4;:18;;;9180:256;;9300:48;9317:1;9321:7;9338:1;9342:5;9300:8;:48::i;:::-;9410:1;9391:9;:15;9401:4;9391:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;9180:256;9464:1;9450:16;;:2;:16;;;9446:107;;9527:1;9510:9;:13;9520:2;9510:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;9446:107;9582:2;9563:7;:16;9571:7;9563:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9619:7;9615:2;9600:27;;9609:4;9600:27;;;;;;;;;;;;9645:4;9638:11;;;8861:795;;;;;:::o;15665:312::-;15792:1;15772:22;;:8;:22;;;15768:91;;15839:8;15817:31;;;;;;;;;;;:::i;:::-;;;;;;;;15768:91;15906:8;15868:18;:25;15887:5;15868:25;;;;;;;;;;;;;;;:35;15894:8;15868:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;15951:8;15929:41;;15944:5;15929:41;;;15961:8;15929:41;;;;;;:::i;:::-;;;;;;;;15665:312;;;:::o;993:924:5:-;1190:1;1173:2;:14;;;:18;1169:742;;;1227:2;1211:36;;;1248:8;1258:4;1264:7;1273:4;1211:67;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;1207:694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585:1;1568:6;:13;:18;1564:323;;1708:2;1672:39;;;;;;;;;;;:::i;:::-;;;;;;;;1564:323;1839:6;1833:13;1824:6;1820:2;1816:15;1809:38;1207:694;1335:41;;;1325:51;;;:6;:51;;;;1321:182;;1481:2;1445:39;;;;;;;;;;;:::i;:::-;;;;;;;;1321:182;1279:238;1169:742;993:924;;;;;:::o;3173:92:1:-;3224:13;3249:9;;;;;;;;;;;;;;3173:92;:::o;1308:632:8:-;1364:13;1413:14;1450:1;1430:17;1441:5;1430:10;:17::i;:::-;:21;1413:38;;1465:20;1499:6;1488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465:41;;1520:11;1615:6;1611:2;1607:15;1599:6;1595:28;1588:35;;1650:247;1657:4;1650:247;;;1681:5;;;;;;;;1785:10;1780:2;1773:5;1769:14;1764:32;1759:3;1751:46;1841:2;1832:11;;;;;;:::i;:::-;;;;;1874:1;1865:5;:10;1650:247;1861:21;1650:247;1917:6;1910:13;;;;;1308:632;;;:::o;5732:115:1:-;5798:7;5824;:16;5832:7;5824:16;;;;;;;;;;;;;;;;;;;;;5817:23;;5732:115;;;:::o;14794:662::-;14954:9;:31;;;;14983:1;14967:18;;:4;:18;;;;14954:31;14950:460;;;15001:13;15017:22;15031:7;15017:13;:22::i;:::-;15001:38;;15183:1;15167:18;;:4;:18;;;;:35;;;;;15198:4;15189:13;;:5;:13;;;;15167:35;:69;;;;;15207:29;15224:5;15231:4;15207:16;:29::i;:::-;15206:30;15167:69;15163:142;;;15285:4;15263:27;;;;;;;;;;;:::i;:::-;;;;;;;;15163:142;15323:9;15319:81;;;15377:7;15373:2;15357:28;;15366:5;15357:28;;;;;;;;;;;;15319:81;14987:423;14950:460;15447:2;15420:15;:24;15436:7;15420:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;14794:662;;;;:::o;7105:368::-;7217:38;7231:5;7238:7;7247;7217:13;:38::i;:::-;7212:255;;7292:1;7275:19;;:5;:19;;;7271:186;;7344:7;7321:31;;;;;;;;;;;:::i;:::-;;;;;;;;7271:186;7425:7;7434;7398:44;;;;;;;;;;;;:::i;:::-;;;;;;;;7212:255;7105:368;;;:::o;29154:916:11:-;29207:7;29226:14;29243:1;29226:18;;29291:8;29282:5;:17;29278:103;;29328:8;29319:17;;;;;;:::i;:::-;;;;;29364:2;29354:12;;;;29278:103;29407:8;29398:5;:17;29394:103;;29444:8;29435:17;;;;;;:::i;:::-;;;;;29480:2;29470:12;;;;29394:103;29523:8;29514:5;:17;29510:103;;29560:8;29551:17;;;;;;:::i;:::-;;;;;29596:2;29586:12;;;;29510:103;29639:7;29630:5;:16;29626:100;;29675:7;29666:16;;;;;;:::i;:::-;;;;;29710:1;29700:11;;;;29626:100;29752:7;29743:5;:16;29739:100;;29788:7;29779:16;;;;;;:::i;:::-;;;;;29823:1;29813:11;;;;29739:100;29865:7;29856:5;:16;29852:100;;29901:7;29892:16;;;;;;:::i;:::-;;;;;29936:1;29926:11;;;;29852:100;29978:7;29969:5;:16;29965:66;;30015:1;30005:11;;;;29965:66;30057:6;30050:13;;;29154:916;;;:::o;6401:272:1:-;6504:4;6558:1;6539:21;;:7;:21;;;;:127;;;;;6586:7;6577:16;;:5;:16;;;:52;;;;6597:32;6614:5;6621:7;6597:16;:32::i;:::-;6577:52;:88;;;;6658:7;6633:32;;:21;6646:7;6633:12;:21::i;:::-;:32;;;6577:88;6539:127;6520:146;;6401:272;;;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:619::-;4860:6;4868;4876;4925:2;4913:9;4904:7;4900:23;4896:32;4893:119;;;4931:79;;:::i;:::-;4893:119;5051:1;5076:53;5121:7;5112:6;5101:9;5097:22;5076:53;:::i;:::-;5066:63;;5022:117;5178:2;5204:53;5249:7;5240:6;5229:9;5225:22;5204:53;:::i;:::-;5194:63;;5149:118;5306:2;5332:53;5377:7;5368:6;5357:9;5353:22;5332:53;:::i;:::-;5322:63;;5277:118;4783:619;;;;;:::o;5408:329::-;5467:6;5516:2;5504:9;5495:7;5491:23;5487:32;5484:119;;;5522:79;;:::i;:::-;5484:119;5642:1;5667:53;5712:7;5703:6;5692:9;5688:22;5667:53;:::i;:::-;5657:63;;5613:117;5408:329;;;;:::o;5743:118::-;5830:24;5848:5;5830:24;:::i;:::-;5825:3;5818:37;5743:118;;:::o;5867:222::-;5960:4;5998:2;5987:9;5983:18;5975:26;;6011:71;6079:1;6068:9;6064:17;6055:6;6011:71;:::i;:::-;5867:222;;;;:::o;6095:116::-;6165:21;6180:5;6165:21;:::i;:::-;6158:5;6155:32;6145:60;;6201:1;6198;6191:12;6145:60;6095:116;:::o;6217:133::-;6260:5;6298:6;6285:20;6276:29;;6314:30;6338:5;6314:30;:::i;:::-;6217:133;;;;:::o;6356:468::-;6421:6;6429;6478:2;6466:9;6457:7;6453:23;6449:32;6446:119;;;6484:79;;:::i;:::-;6446:119;6604:1;6629:53;6674:7;6665:6;6654:9;6650:22;6629:53;:::i;:::-;6619:63;;6575:117;6731:2;6757:50;6799:7;6790:6;6779:9;6775:22;6757:50;:::i;:::-;6747:60;;6702:115;6356:468;;;;;:::o;6830:117::-;6939:1;6936;6929:12;6953:117;7062:1;7059;7052:12;7076:180;7124:77;7121:1;7114:88;7221:4;7218:1;7211:15;7245:4;7242:1;7235:15;7262:281;7345:27;7367:4;7345:27;:::i;:::-;7337:6;7333:40;7475:6;7463:10;7460:22;7439:18;7427:10;7424:34;7421:62;7418:88;;;7486:18;;:::i;:::-;7418:88;7526:10;7522:2;7515:22;7305:238;7262:281;;:::o;7549:129::-;7583:6;7610:20;;:::i;:::-;7600:30;;7639:33;7667:4;7659:6;7639:33;:::i;:::-;7549:129;;;:::o;7684:307::-;7745:4;7835:18;7827:6;7824:30;7821:56;;;7857:18;;:::i;:::-;7821:56;7895:29;7917:6;7895:29;:::i;:::-;7887:37;;7979:4;7973;7969:15;7961:23;;7684:307;;;:::o;7997:148::-;8095:6;8090:3;8085;8072:30;8136:1;8127:6;8122:3;8118:16;8111:27;7997:148;;;:::o;8151:423::-;8228:5;8253:65;8269:48;8310:6;8269:48;:::i;:::-;8253:65;:::i;:::-;8244:74;;8341:6;8334:5;8327:21;8379:4;8372:5;8368:16;8417:3;8408:6;8403:3;8399:16;8396:25;8393:112;;;8424:79;;:::i;:::-;8393:112;8514:54;8561:6;8556:3;8551;8514:54;:::i;:::-;8234:340;8151:423;;;;;:::o;8593:338::-;8648:5;8697:3;8690:4;8682:6;8678:17;8674:27;8664:122;;8705:79;;:::i;:::-;8664:122;8822:6;8809:20;8847:78;8921:3;8913:6;8906:4;8898:6;8894:17;8847:78;:::i;:::-;8838:87;;8654:277;8593:338;;;;:::o;8937:943::-;9032:6;9040;9048;9056;9105:3;9093:9;9084:7;9080:23;9076:33;9073:120;;;9112:79;;:::i;:::-;9073:120;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;9487:2;9513:53;9558:7;9549:6;9538:9;9534:22;9513:53;:::i;:::-;9503:63;;9458:118;9643:2;9632:9;9628:18;9615:32;9674:18;9666:6;9663:30;9660:117;;;9696:79;;:::i;:::-;9660:117;9801:62;9855:7;9846:6;9835:9;9831:22;9801:62;:::i;:::-;9791:72;;9586:287;8937:943;;;;;;;:::o;9886:474::-;9954:6;9962;10011:2;9999:9;9990:7;9986:23;9982:32;9979:119;;;10017:79;;:::i;:::-;9979:119;10137:1;10162:53;10207:7;10198:6;10187:9;10183:22;10162:53;:::i;:::-;10152:63;;10108:117;10264:2;10290:53;10335:7;10326:6;10315:9;10311:22;10290:53;:::i;:::-;10280:63;;10235:118;9886:474;;;;;:::o;10366:180::-;10414:77;10411:1;10404:88;10511:4;10508:1;10501:15;10535:4;10532:1;10525:15;10552:320;10596:6;10633:1;10627:4;10623:12;10613:22;;10680:1;10674:4;10670:12;10701:18;10691:81;;10757:4;10749:6;10745:17;10735:27;;10691:81;10819:2;10811:6;10808:14;10788:18;10785:38;10782:84;;10838:18;;:::i;:::-;10782:84;10603:269;10552:320;;;:::o;10878:442::-;11027:4;11065:2;11054:9;11050:18;11042:26;;11078:71;11146:1;11135:9;11131:17;11122:6;11078:71;:::i;:::-;11159:72;11227:2;11216:9;11212:18;11203:6;11159:72;:::i;:::-;11241;11309:2;11298:9;11294:18;11285:6;11241:72;:::i;:::-;10878:442;;;;;;:::o;11326:148::-;11428:11;11465:3;11450:18;;11326:148;;;;:::o;11480:390::-;11586:3;11614:39;11647:5;11614:39;:::i;:::-;11669:89;11751:6;11746:3;11669:89;:::i;:::-;11662:96;;11767:65;11825:6;11820:3;11813:4;11806:5;11802:16;11767:65;:::i;:::-;11857:6;11852:3;11848:16;11841:23;;11590:280;11480:390;;;;:::o;11876:435::-;12056:3;12078:95;12169:3;12160:6;12078:95;:::i;:::-;12071:102;;12190:95;12281:3;12272:6;12190:95;:::i;:::-;12183:102;;12302:3;12295:10;;11876:435;;;;;:::o;12317:98::-;12368:6;12402:5;12396:12;12386:22;;12317:98;;;:::o;12421:168::-;12504:11;12538:6;12533:3;12526:19;12578:4;12573:3;12569:14;12554:29;;12421:168;;;;:::o;12595:373::-;12681:3;12709:38;12741:5;12709:38;:::i;:::-;12763:70;12826:6;12821:3;12763:70;:::i;:::-;12756:77;;12842:65;12900:6;12895:3;12888:4;12881:5;12877:16;12842:65;:::i;:::-;12932:29;12954:6;12932:29;:::i;:::-;12927:3;12923:39;12916:46;;12685:283;12595:373;;;;:::o;12974:640::-;13169:4;13207:3;13196:9;13192:19;13184:27;;13221:71;13289:1;13278:9;13274:17;13265:6;13221:71;:::i;:::-;13302:72;13370:2;13359:9;13355:18;13346:6;13302:72;:::i;:::-;13384;13452:2;13441:9;13437:18;13428:6;13384:72;:::i;:::-;13503:9;13497:4;13493:20;13488:2;13477:9;13473:18;13466:48;13531:76;13602:4;13593:6;13531:76;:::i;:::-;13523:84;;12974:640;;;;;;;:::o;13620:141::-;13676:5;13707:6;13701:13;13692:22;;13723:32;13749:5;13723:32;:::i;:::-;13620:141;;;;:::o;13767:349::-;13836:6;13885:2;13873:9;13864:7;13860:23;13856:32;13853:119;;;13891:79;;:::i;:::-;13853:119;14011:1;14036:63;14091:7;14082:6;14071:9;14067:22;14036:63;:::i;:::-;14026:73;;13982:127;13767:349;;;;:::o;14122:180::-;14170:77;14167:1;14160:88;14267:4;14264:1;14257:15;14291:4;14288:1;14281:15;14308:332;14429:4;14467:2;14456:9;14452:18;14444:26;;14480:71;14548:1;14537:9;14533:17;14524:6;14480:71;:::i;:::-;14561:72;14629:2;14618:9;14614:18;14605:6;14561:72;:::i;:::-;14308:332;;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "1422000", | |
| "executionCost": "infinite", | |
| "totalCost": "infinite" | |
| }, | |
| "external": { | |
| "approve(address,uint256)": "infinite", | |
| "balanceOf(address)": "infinite", | |
| "getApproved(uint256)": "infinite", | |
| "isApprovedForAll(address,address)": "infinite", | |
| "name()": "infinite", | |
| "ownerOf(uint256)": "infinite", | |
| "safeTransferFrom(address,address,uint256)": "infinite", | |
| "safeTransferFrom(address,address,uint256,bytes)": "infinite", | |
| "setApprovalForAll(address,bool)": "infinite", | |
| "supportsInterface(bytes4)": "764", | |
| "symbol()": "infinite", | |
| "tokenURI(uint256)": "infinite", | |
| "transferFrom(address,address,uint256)": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "approve(address,uint256)": "095ea7b3", | |
| "balanceOf(address)": "70a08231", | |
| "getApproved(uint256)": "081812fc", | |
| "isApprovedForAll(address,address)": "e985e9c5", | |
| "name()": "06fdde03", | |
| "ownerOf(uint256)": "6352211e", | |
| "safeTransferFrom(address,address,uint256)": "42842e0e", | |
| "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde", | |
| "setApprovalForAll(address,bool)": "a22cb465", | |
| "supportsInterface(bytes4)": "01ffc9a7", | |
| "symbol()": "95d89b41", | |
| "tokenURI(uint256)": "c87b56dd", | |
| "transferFrom(address,address,uint256)": "23b872dd" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "constructor" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721IncorrectOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721InsufficientApproval", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOperator", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721NonexistentToken", | |
| "type": "error" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "approved", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Approval", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": false, | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "ApprovalForAll", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Transfer", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "approve", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "balanceOf", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "getApproved", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "isApprovedForAll", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "name", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ownerOf", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "bytes", | |
| "name": "data", | |
| "type": "bytes" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "setApprovalForAll", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "bytes4", | |
| "name": "interfaceId", | |
| "type": "bytes4" | |
| } | |
| ], | |
| "name": "supportsInterface", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "symbol", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "tokenURI", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "transferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ] | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "compiler": { | |
| "version": "0.8.30+commit.73712a01" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "constructor" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721IncorrectOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721InsufficientApproval", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOperator", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721NonexistentToken", | |
| "type": "error" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "approved", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Approval", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": false, | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "ApprovalForAll", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Transfer", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "approve", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "balanceOf", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "getApproved", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "isApprovedForAll", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "name", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ownerOf", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "bytes", | |
| "name": "data", | |
| "type": "bytes" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "setApprovalForAll", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "bytes4", | |
| "name": "interfaceId", | |
| "type": "bytes4" | |
| } | |
| ], | |
| "name": "supportsInterface", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "symbol", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "tokenURI", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "transferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "errors": { | |
| "ERC721IncorrectOwner(address,uint256,address)": [ | |
| { | |
| "details": "Indicates an error related to the ownership over a particular token. Used in transfers.", | |
| "params": { | |
| "owner": "Address of the current owner of a token.", | |
| "sender": "Address whose tokens are being transferred.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InsufficientApproval(address,uint256)": [ | |
| { | |
| "details": "Indicates a failure with the `operator`’s approval. Used in transfers.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidApprover(address)": [ | |
| { | |
| "details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.", | |
| "params": { | |
| "approver": "Address initiating an approval operation." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOperator(address)": [ | |
| { | |
| "details": "Indicates a failure with the `operator` to be approved. Used in approvals.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOwner(address)": [ | |
| { | |
| "details": "Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.", | |
| "params": { | |
| "owner": "Address of the current owner of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidReceiver(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `receiver`. Used in transfers.", | |
| "params": { | |
| "receiver": "Address to which tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidSender(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `sender`. Used in transfers.", | |
| "params": { | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721NonexistentToken(uint256)": [ | |
| { | |
| "details": "Indicates a `tokenId` whose `owner` is the zero address.", | |
| "params": { | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ] | |
| }, | |
| "events": { | |
| "Approval(address,address,uint256)": { | |
| "details": "Emitted when `owner` enables `approved` to manage the `tokenId` token." | |
| }, | |
| "ApprovalForAll(address,address,bool)": { | |
| "details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets." | |
| }, | |
| "Transfer(address,address,uint256)": { | |
| "details": "Emitted when `tokenId` token is transferred from `from` to `to`." | |
| } | |
| }, | |
| "kind": "dev", | |
| "methods": { | |
| "approve(address,uint256)": { | |
| "details": "See {IERC721-approve}." | |
| }, | |
| "balanceOf(address)": { | |
| "details": "See {IERC721-balanceOf}." | |
| }, | |
| "getApproved(uint256)": { | |
| "details": "See {IERC721-getApproved}." | |
| }, | |
| "isApprovedForAll(address,address)": { | |
| "details": "See {IERC721-isApprovedForAll}." | |
| }, | |
| "name()": { | |
| "details": "See {IERC721Metadata-name}." | |
| }, | |
| "ownerOf(uint256)": { | |
| "details": "See {IERC721-ownerOf}." | |
| }, | |
| "safeTransferFrom(address,address,uint256)": { | |
| "details": "See {IERC721-safeTransferFrom}." | |
| }, | |
| "safeTransferFrom(address,address,uint256,bytes)": { | |
| "details": "See {IERC721-safeTransferFrom}." | |
| }, | |
| "setApprovalForAll(address,bool)": { | |
| "details": "See {IERC721-setApprovalForAll}." | |
| }, | |
| "supportsInterface(bytes4)": { | |
| "details": "See {IERC165-supportsInterface}." | |
| }, | |
| "symbol()": { | |
| "details": "See {IERC721Metadata-symbol}." | |
| }, | |
| "tokenURI(uint256)": { | |
| "details": "See {IERC721Metadata-tokenURI}." | |
| }, | |
| "transferFrom(address,address,uint256)": { | |
| "details": "See {IERC721-transferFrom}." | |
| } | |
| }, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/MyToken.sol": "MyToken" | |
| }, | |
| "evmVersion": "prague", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "@openzeppelin/contracts/interfaces/draft-IERC6093.sol": { | |
| "keccak256": "0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b", | |
| "dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
| "keccak256": "0x39ed367e54765186281efcfe83e47cf0ad62cc879f10e191360712507125f29a", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://2c5ae6d85bd48cca8d6d2fcec8c63efd86f56f8a5832577a47e403ce0e65cb09", | |
| "dweb:/ipfs/QmUtcS8AbRSWhuc61puYet58os8FvSqm329ChoW8wwZXZk" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/IERC721.sol": { | |
| "keccak256": "0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11", | |
| "dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": { | |
| "keccak256": "0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34", | |
| "dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": { | |
| "keccak256": "0x37d1aaaa5a2908a09e9dcf56a26ddf762ecf295afb5964695937344fc6802ce1", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://ed0bfc1b92153c5000e50f4021367b931bbe96372ac6facec3c4961b72053d02", | |
| "dweb:/ipfs/Qmbwp8VDerjS5SV1quwHH1oMXxPQ93fzfLVqJ2RCqbowGE" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol": { | |
| "keccak256": "0xddab643169f47a2c5291afafcbfdca045d9e6835553307d090bc048b6dabd0ac", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://d0ffbacfee42977167b3c75bd4787f8b72a7ab1176abd544f3dff662c6528e24", | |
| "dweb:/ipfs/QmUprM1cWCyaQ3LDjHA2DhwiPs3wekQ6MWXHFZdMMxpcyX" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/Context.sol": { | |
| "keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12", | |
| "dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/Panic.sol": { | |
| "keccak256": "0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a", | |
| "dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/Strings.sol": { | |
| "keccak256": "0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6", | |
| "dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/introspection/ERC165.sol": { | |
| "keccak256": "0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287", | |
| "dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/introspection/IERC165.sol": { | |
| "keccak256": "0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621", | |
| "dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/math/Math.sol": { | |
| "keccak256": "0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3", | |
| "dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/math/SafeCast.sol": { | |
| "keccak256": "0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8", | |
| "dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy" | |
| ] | |
| }, | |
| "@openzeppelin/contracts/utils/math/SignedMath.sol": { | |
| "keccak256": "0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03", | |
| "dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ" | |
| ] | |
| }, | |
| "contracts/MyToken.sol": { | |
| "keccak256": "0x26883e7c1eef95943dd4742e997fe1931cb0cbc63d5683a26610b9de55e75953", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://25154dd0f65fddf695ba9563319e13f9ae771606bea778bbcfeb29ce5efc3d5f", | |
| "dweb:/ipfs/Qmb2JDMSBMKkHkpH3VMJqVjUsZ86xEL4YodXf7MpCm3ydK" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.20; | |
| import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
| contract MyToken is ERC721 { | |
| constructor() ERC721("MyToken", "MTK") {} | |
| } | 
      This file has been truncated, but you can view the full file.
    
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "id": "073687067e34c8edd6266040ee0ac69e", | |
| "_format": "hh-sol-build-info-1", | |
| "solcVersion": "0.8.30", | |
| "solcLongVersion": "0.8.30+commit.73712a01", | |
| "input": { | |
| "language": "Solidity", | |
| "sources": { | |
| "contracts/MyToken.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\n\ncontract MyToken is ERC721 {\n constructor() ERC721(\"MyToken\", \"MTK\") {}\n}\n" | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721} from \"./IERC721.sol\";\nimport {IERC721Metadata} from \"./extensions/IERC721Metadata.sol\";\nimport {ERC721Utils} from \"./utils/ERC721Utils.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Strings} from \"../../utils/Strings.sol\";\nimport {IERC165, ERC165} from \"../../utils/introspection/ERC165.sol\";\nimport {IERC721Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\nabstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n mapping(uint256 tokenId => address) private _owners;\n\n mapping(address owner => uint256) private _balances;\n\n mapping(uint256 tokenId => address) private _tokenApprovals;\n\n mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual returns (uint256) {\n if (owner == address(0)) {\n revert ERC721InvalidOwner(address(0));\n }\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual returns (address) {\n return _requireOwned(tokenId);\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual returns (string memory) {\n _requireOwned(tokenId);\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual {\n _approve(to, tokenId, _msgSender());\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual returns (address) {\n _requireOwned(tokenId);\n\n return _getApproved(tokenId);\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(address from, address to, uint256 tokenId) public virtual {\n if (to == address(0)) {\n revert ERC721InvalidReceiver(address(0));\n }\n // Setting an \"auth\" arguments enables the `_isAuthorized` check which verifies that the token exists\n // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.\n address previousOwner = _update(to, tokenId, _msgSender());\n if (previousOwner != from) {\n revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n }\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId) public {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {\n transferFrom(from, to, tokenId);\n ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n }\n\n /**\n * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n *\n * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the\n * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances\n * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by\n * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.\n */\n function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n return _owners[tokenId];\n }\n\n /**\n * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.\n */\n function _getApproved(uint256 tokenId) internal view virtual returns (address) {\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in\n * particular (ignoring whether it is owned by `owner`).\n *\n * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n * assumption.\n */\n function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {\n return\n spender != address(0) &&\n (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.\n * Reverts if:\n * - `spender` does not have approval from `owner` for `tokenId`.\n * - `spender` does not have approval to manage all of `owner`'s assets.\n *\n * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n * assumption.\n */\n function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {\n if (!_isAuthorized(owner, spender, tokenId)) {\n if (owner == address(0)) {\n revert ERC721NonexistentToken(tokenId);\n } else {\n revert ERC721InsufficientApproval(spender, tokenId);\n }\n }\n }\n\n /**\n * @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n *\n * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that\n * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.\n *\n * WARNING: Increasing an account's balance using this function tends to be paired with an override of the\n * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership\n * remain consistent with one another.\n */\n function _increaseBalance(address account, uint128 value) internal virtual {\n unchecked {\n _balances[account] += value;\n }\n }\n\n /**\n * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner\n * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.\n *\n * The `auth` argument is optional. If the value passed is non 0, then this function will check that\n * `auth` is either the owner of the token, or approved to operate on the token (by the owner).\n *\n * Emits a {Transfer} event.\n *\n * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.\n */\n function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {\n address from = _ownerOf(tokenId);\n\n // Perform (optional) operator check\n if (auth != address(0)) {\n _checkAuthorized(from, auth, tokenId);\n }\n\n // Execute the update\n if (from != address(0)) {\n // Clear approval. No need to re-authorize or emit the Approval event\n _approve(address(0), tokenId, address(0), false);\n\n unchecked {\n _balances[from] -= 1;\n }\n }\n\n if (to != address(0)) {\n unchecked {\n _balances[to] += 1;\n }\n }\n\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n return from;\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal {\n if (to == address(0)) {\n revert ERC721InvalidReceiver(address(0));\n }\n address previousOwner = _update(to, tokenId, address(0));\n if (previousOwner != address(0)) {\n revert ERC721InvalidSender(address(0));\n }\n }\n\n /**\n * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {\n _mint(to, tokenId);\n ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n * This is an internal function that does not check if the sender is authorized to operate on the token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal {\n address previousOwner = _update(address(0), tokenId, address(0));\n if (previousOwner == address(0)) {\n revert ERC721NonexistentToken(tokenId);\n }\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(address from, address to, uint256 tokenId) internal {\n if (to == address(0)) {\n revert ERC721InvalidReceiver(address(0));\n }\n address previousOwner = _update(to, tokenId, address(0));\n if (previousOwner == address(0)) {\n revert ERC721NonexistentToken(tokenId);\n } else if (previousOwner != from) {\n revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n }\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients\n * are aware of the ERC-721 standard to prevent tokens from being forever locked.\n *\n * `data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is like {safeTransferFrom} in the sense that it invokes\n * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `tokenId` token must exist and be owned by `from`.\n * - `to` cannot be the zero address.\n * - `from` cannot be the zero address.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(address from, address to, uint256 tokenId) internal {\n _safeTransfer(from, to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {\n _transfer(from, to, tokenId);\n ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is\n * either the owner of the token, or approved to operate on all tokens held by this owner.\n *\n * Emits an {Approval} event.\n *\n * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address to, uint256 tokenId, address auth) internal {\n _approve(to, tokenId, auth, true);\n }\n\n /**\n * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not\n * emitted in the context of transfers.\n */\n function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {\n // Avoid reading the owner unless necessary\n if (emitEvent || auth != address(0)) {\n address owner = _requireOwned(tokenId);\n\n // We do not use _isAuthorized because single-token approvals should not be able to call approve\n if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {\n revert ERC721InvalidApprover(auth);\n }\n\n if (emitEvent) {\n emit Approval(owner, to, tokenId);\n }\n }\n\n _tokenApprovals[tokenId] = to;\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Requirements:\n * - operator can't be the address zero.\n *\n * Emits an {ApprovalForAll} event.\n */\n function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {\n if (operator == address(0)) {\n revert ERC721InvalidOperator(operator);\n }\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).\n * Returns the owner.\n *\n * Overrides to ownership logic should be done to {_ownerOf}.\n */\n function _requireOwned(uint256 tokenId) internal view returns (address) {\n address owner = _ownerOf(tokenId);\n if (owner == address(0)) {\n revert ERC721NonexistentToken(tokenId);\n }\n return owner;\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/interfaces/draft-IERC6093.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/introspection/ERC165.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/Strings.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n using SafeCast for *;\n\n bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n uint8 private constant ADDRESS_LENGTH = 20;\n uint256 private constant SPECIAL_CHARS_LOOKUP =\n (1 << 0x08) | // backspace\n (1 << 0x09) | // tab\n (1 << 0x0a) | // newline\n (1 << 0x0c) | // form feed\n (1 << 0x0d) | // carriage return\n (1 << 0x22) | // double quote\n (1 << 0x5c); // backslash\n\n /**\n * @dev The `value` string doesn't fit in the specified `length`.\n */\n error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n /**\n * @dev The string being parsed contains characters that are not in scope of the given base.\n */\n error StringsInvalidChar();\n\n /**\n * @dev The string being parsed is not a properly formatted address.\n */\n error StringsInvalidAddressFormat();\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n assembly (\"memory-safe\") {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n assembly (\"memory-safe\") {\n mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toStringSigned(int256 value) internal pure returns (string memory) {\n return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n uint256 localValue = value;\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = HEX_DIGITS[localValue & 0xf];\n localValue >>= 4;\n }\n if (localValue != 0) {\n revert StringsInsufficientHexLength(value, length);\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n * representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n * representation, according to EIP-55.\n */\n function toChecksumHexString(address addr) internal pure returns (string memory) {\n bytes memory buffer = bytes(toHexString(addr));\n\n // hash the hex part of buffer (skip length + 2 bytes, length 40)\n uint256 hashValue;\n assembly (\"memory-safe\") {\n hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n }\n\n for (uint256 i = 41; i > 1; --i) {\n // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n // case shift by xoring with 0x20\n buffer[i] ^= 0x20;\n }\n hashValue >>= 4;\n }\n return string(buffer);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input) internal pure returns (uint256) {\n return parseUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n uint256 result = 0;\n for (uint256 i = begin; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 9) return (false, 0);\n result *= 10;\n result += chr;\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `int256`.\n *\n * Requirements:\n * - The string must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input) internal pure returns (int256) {\n return parseInt(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n (bool success, int256 value) = tryParseInt(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n * the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n }\n\n uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n /**\n * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character or if the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, int256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseIntUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseIntUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, int256 value) {\n bytes memory buffer = bytes(input);\n\n // Check presence of a negative sign.\n bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n bool positiveSign = sign == bytes1(\"+\");\n bool negativeSign = sign == bytes1(\"-\");\n uint256 offset = (positiveSign || negativeSign).toUint();\n\n (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n if (absSuccess && absValue < ABS_MIN_INT256) {\n return (true, negativeSign ? -int256(absValue) : int256(absValue));\n } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n return (true, type(int256).min);\n } else return (false, 0);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input) internal pure returns (uint256) {\n return parseHexUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n * invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseHexUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseHexUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n // skip 0x prefix if present\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 offset = hasPrefix.toUint() * 2;\n\n uint256 result = 0;\n for (uint256 i = begin + offset; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 15) return (false, 0);\n result *= 16;\n unchecked {\n // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked.\n result += chr;\n }\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input) internal pure returns (address) {\n return parseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n (bool success, address value) = tryParseAddress(input, begin, end);\n if (!success) revert StringsInvalidAddressFormat();\n return value;\n }\n\n /**\n * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n * formatted address. See {parseAddress-string} requirements.\n */\n function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n return tryParseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n * formatted address. See {parseAddress-string-uint256-uint256} requirements.\n */\n function tryParseAddress(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, address value) {\n if (end > bytes(input).length || begin > end) return (false, address(0));\n\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n // check that input is the correct length\n if (end - begin == expectedLength) {\n // length guarantees that this does not overflow, and value is at most type(uint160).max\n (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n return (s, address(uint160(v)));\n } else {\n return (false, address(0));\n }\n }\n\n function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n uint8 value = uint8(chr);\n\n // Try to parse `chr`:\n // - Case 1: [0-9]\n // - Case 2: [a-f]\n // - Case 3: [A-F]\n // - otherwise not supported\n unchecked {\n if (value > 47 && value < 58) value -= 48;\n else if (value > 96 && value < 103) value -= 87;\n else if (value > 64 && value < 71) value -= 55;\n else return type(uint8).max;\n }\n\n return value;\n }\n\n /**\n * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n *\n * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n *\n * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n * characters that are not in this range, but other tooling may provide different results.\n */\n function escapeJSON(string memory input) internal pure returns (string memory) {\n bytes memory buffer = bytes(input);\n bytes memory output = new bytes(2 * buffer.length); // worst case scenario\n uint256 outputLength = 0;\n\n for (uint256 i; i < buffer.length; ++i) {\n bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));\n if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {\n output[outputLength++] = \"\\\\\";\n if (char == 0x08) output[outputLength++] = \"b\";\n else if (char == 0x09) output[outputLength++] = \"t\";\n else if (char == 0x0a) output[outputLength++] = \"n\";\n else if (char == 0x0c) output[outputLength++] = \"f\";\n else if (char == 0x0d) output[outputLength++] = \"r\";\n else if (char == 0x5c) output[outputLength++] = \"\\\\\";\n else if (char == 0x22) {\n // solhint-disable-next-line quotes\n output[outputLength++] = '\"';\n }\n } else {\n output[outputLength++] = char;\n }\n }\n // write the actual length and deallocate unused memory\n assembly (\"memory-safe\") {\n mstore(output, outputLength)\n mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))\n }\n\n return string(output);\n }\n\n /**\n * @dev Reads a bytes32 from a bytes array without bounds checking.\n *\n * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n * assembly block as such would prevent some optimizations.\n */\n function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n // This is not memory safe in the general case, but all calls to this private function are within bounds.\n assembly (\"memory-safe\") {\n value := mload(add(buffer, add(0x20, offset)))\n }\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/Context.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC721/utils/ERC721Utils.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../IERC721Receiver.sol\";\nimport {IERC721Errors} from \"../../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Library that provide common ERC-721 utility functions.\n *\n * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].\n *\n * _Available since v5.1._\n */\nlibrary ERC721Utils {\n /**\n * @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}\n * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).\n *\n * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).\n * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept\n * the transfer.\n */\n function checkOnERC721Received(\n address operator,\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal {\n if (to.code.length > 0) {\n try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {\n if (retval != IERC721Receiver.onERC721Received.selector) {\n // Token rejected\n revert IERC721Errors.ERC721InvalidReceiver(to);\n }\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n // non-IERC721Receiver implementer\n revert IERC721Errors.ERC721InvalidReceiver(to);\n } else {\n assembly (\"memory-safe\") {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n }\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721} from \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n" | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/IERC721.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC-721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n * a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n * {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n * a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n * understand this adds an external call which potentially creates a reentrancy vulnerability.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 tokenId) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the address zero.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/introspection/IERC165.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/math/SignedMath.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n }\n }\n\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n int256 mask = n >> 255;\n\n // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n return uint256((n + mask) ^ mask);\n }\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/math/SafeCast.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n */\nlibrary SafeCast {\n /**\n * @dev Value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n /**\n * @dev An int value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedIntToUint(int256 value);\n\n /**\n * @dev Value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n /**\n * @dev An uint value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedUintToInt(uint256 value);\n\n /**\n * @dev Returns the downcasted uint248 from uint256, reverting on\n * overflow (when the input is greater than largest uint248).\n *\n * Counterpart to Solidity's `uint248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toUint248(uint256 value) internal pure returns (uint248) {\n if (value > type(uint248).max) {\n revert SafeCastOverflowedUintDowncast(248, value);\n }\n return uint248(value);\n }\n\n /**\n * @dev Returns the downcasted uint240 from uint256, reverting on\n * overflow (when the input is greater than largest uint240).\n *\n * Counterpart to Solidity's `uint240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toUint240(uint256 value) internal pure returns (uint240) {\n if (value > type(uint240).max) {\n revert SafeCastOverflowedUintDowncast(240, value);\n }\n return uint240(value);\n }\n\n /**\n * @dev Returns the downcasted uint232 from uint256, reverting on\n * overflow (when the input is greater than largest uint232).\n *\n * Counterpart to Solidity's `uint232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toUint232(uint256 value) internal pure returns (uint232) {\n if (value > type(uint232).max) {\n revert SafeCastOverflowedUintDowncast(232, value);\n }\n return uint232(value);\n }\n\n /**\n * @dev Returns the downcasted uint224 from uint256, reverting on\n * overflow (when the input is greater than largest uint224).\n *\n * Counterpart to Solidity's `uint224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toUint224(uint256 value) internal pure returns (uint224) {\n if (value > type(uint224).max) {\n revert SafeCastOverflowedUintDowncast(224, value);\n }\n return uint224(value);\n }\n\n /**\n * @dev Returns the downcasted uint216 from uint256, reverting on\n * overflow (when the input is greater than largest uint216).\n *\n * Counterpart to Solidity's `uint216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toUint216(uint256 value) internal pure returns (uint216) {\n if (value > type(uint216).max) {\n revert SafeCastOverflowedUintDowncast(216, value);\n }\n return uint216(value);\n }\n\n /**\n * @dev Returns the downcasted uint208 from uint256, reverting on\n * overflow (when the input is greater than largest uint208).\n *\n * Counterpart to Solidity's `uint208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toUint208(uint256 value) internal pure returns (uint208) {\n if (value > type(uint208).max) {\n revert SafeCastOverflowedUintDowncast(208, value);\n }\n return uint208(value);\n }\n\n /**\n * @dev Returns the downcasted uint200 from uint256, reverting on\n * overflow (when the input is greater than largest uint200).\n *\n * Counterpart to Solidity's `uint200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toUint200(uint256 value) internal pure returns (uint200) {\n if (value > type(uint200).max) {\n revert SafeCastOverflowedUintDowncast(200, value);\n }\n return uint200(value);\n }\n\n /**\n * @dev Returns the downcasted uint192 from uint256, reverting on\n * overflow (when the input is greater than largest uint192).\n *\n * Counterpart to Solidity's `uint192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toUint192(uint256 value) internal pure returns (uint192) {\n if (value > type(uint192).max) {\n revert SafeCastOverflowedUintDowncast(192, value);\n }\n return uint192(value);\n }\n\n /**\n * @dev Returns the downcasted uint184 from uint256, reverting on\n * overflow (when the input is greater than largest uint184).\n *\n * Counterpart to Solidity's `uint184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toUint184(uint256 value) internal pure returns (uint184) {\n if (value > type(uint184).max) {\n revert SafeCastOverflowedUintDowncast(184, value);\n }\n return uint184(value);\n }\n\n /**\n * @dev Returns the downcasted uint176 from uint256, reverting on\n * overflow (when the input is greater than largest uint176).\n *\n * Counterpart to Solidity's `uint176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toUint176(uint256 value) internal pure returns (uint176) {\n if (value > type(uint176).max) {\n revert SafeCastOverflowedUintDowncast(176, value);\n }\n return uint176(value);\n }\n\n /**\n * @dev Returns the downcasted uint168 from uint256, reverting on\n * overflow (when the input is greater than largest uint168).\n *\n * Counterpart to Solidity's `uint168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toUint168(uint256 value) internal pure returns (uint168) {\n if (value > type(uint168).max) {\n revert SafeCastOverflowedUintDowncast(168, value);\n }\n return uint168(value);\n }\n\n /**\n * @dev Returns the downcasted uint160 from uint256, reverting on\n * overflow (when the input is greater than largest uint160).\n *\n * Counterpart to Solidity's `uint160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toUint160(uint256 value) internal pure returns (uint160) {\n if (value > type(uint160).max) {\n revert SafeCastOverflowedUintDowncast(160, value);\n }\n return uint160(value);\n }\n\n /**\n * @dev Returns the downcasted uint152 from uint256, reverting on\n * overflow (when the input is greater than largest uint152).\n *\n * Counterpart to Solidity's `uint152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toUint152(uint256 value) internal pure returns (uint152) {\n if (value > type(uint152).max) {\n revert SafeCastOverflowedUintDowncast(152, value);\n }\n return uint152(value);\n }\n\n /**\n * @dev Returns the downcasted uint144 from uint256, reverting on\n * overflow (when the input is greater than largest uint144).\n *\n * Counterpart to Solidity's `uint144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toUint144(uint256 value) internal pure returns (uint144) {\n if (value > type(uint144).max) {\n revert SafeCastOverflowedUintDowncast(144, value);\n }\n return uint144(value);\n }\n\n /**\n * @dev Returns the downcasted uint136 from uint256, reverting on\n * overflow (when the input is greater than largest uint136).\n *\n * Counterpart to Solidity's `uint136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toUint136(uint256 value) internal pure returns (uint136) {\n if (value > type(uint136).max) {\n revert SafeCastOverflowedUintDowncast(136, value);\n }\n return uint136(value);\n }\n\n /**\n * @dev Returns the downcasted uint128 from uint256, reverting on\n * overflow (when the input is greater than largest uint128).\n *\n * Counterpart to Solidity's `uint128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toUint128(uint256 value) internal pure returns (uint128) {\n if (value > type(uint128).max) {\n revert SafeCastOverflowedUintDowncast(128, value);\n }\n return uint128(value);\n }\n\n /**\n * @dev Returns the downcasted uint120 from uint256, reverting on\n * overflow (when the input is greater than largest uint120).\n *\n * Counterpart to Solidity's `uint120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toUint120(uint256 value) internal pure returns (uint120) {\n if (value > type(uint120).max) {\n revert SafeCastOverflowedUintDowncast(120, value);\n }\n return uint120(value);\n }\n\n /**\n * @dev Returns the downcasted uint112 from uint256, reverting on\n * overflow (when the input is greater than largest uint112).\n *\n * Counterpart to Solidity's `uint112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toUint112(uint256 value) internal pure returns (uint112) {\n if (value > type(uint112).max) {\n revert SafeCastOverflowedUintDowncast(112, value);\n }\n return uint112(value);\n }\n\n /**\n * @dev Returns the downcasted uint104 from uint256, reverting on\n * overflow (when the input is greater than largest uint104).\n *\n * Counterpart to Solidity's `uint104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toUint104(uint256 value) internal pure returns (uint104) {\n if (value > type(uint104).max) {\n revert SafeCastOverflowedUintDowncast(104, value);\n }\n return uint104(value);\n }\n\n /**\n * @dev Returns the downcasted uint96 from uint256, reverting on\n * overflow (when the input is greater than largest uint96).\n *\n * Counterpart to Solidity's `uint96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toUint96(uint256 value) internal pure returns (uint96) {\n if (value > type(uint96).max) {\n revert SafeCastOverflowedUintDowncast(96, value);\n }\n return uint96(value);\n }\n\n /**\n * @dev Returns the downcasted uint88 from uint256, reverting on\n * overflow (when the input is greater than largest uint88).\n *\n * Counterpart to Solidity's `uint88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toUint88(uint256 value) internal pure returns (uint88) {\n if (value > type(uint88).max) {\n revert SafeCastOverflowedUintDowncast(88, value);\n }\n return uint88(value);\n }\n\n /**\n * @dev Returns the downcasted uint80 from uint256, reverting on\n * overflow (when the input is greater than largest uint80).\n *\n * Counterpart to Solidity's `uint80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toUint80(uint256 value) internal pure returns (uint80) {\n if (value > type(uint80).max) {\n revert SafeCastOverflowedUintDowncast(80, value);\n }\n return uint80(value);\n }\n\n /**\n * @dev Returns the downcasted uint72 from uint256, reverting on\n * overflow (when the input is greater than largest uint72).\n *\n * Counterpart to Solidity's `uint72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toUint72(uint256 value) internal pure returns (uint72) {\n if (value > type(uint72).max) {\n revert SafeCastOverflowedUintDowncast(72, value);\n }\n return uint72(value);\n }\n\n /**\n * @dev Returns the downcasted uint64 from uint256, reverting on\n * overflow (when the input is greater than largest uint64).\n *\n * Counterpart to Solidity's `uint64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toUint64(uint256 value) internal pure returns (uint64) {\n if (value > type(uint64).max) {\n revert SafeCastOverflowedUintDowncast(64, value);\n }\n return uint64(value);\n }\n\n /**\n * @dev Returns the downcasted uint56 from uint256, reverting on\n * overflow (when the input is greater than largest uint56).\n *\n * Counterpart to Solidity's `uint56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toUint56(uint256 value) internal pure returns (uint56) {\n if (value > type(uint56).max) {\n revert SafeCastOverflowedUintDowncast(56, value);\n }\n return uint56(value);\n }\n\n /**\n * @dev Returns the downcasted uint48 from uint256, reverting on\n * overflow (when the input is greater than largest uint48).\n *\n * Counterpart to Solidity's `uint48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toUint48(uint256 value) internal pure returns (uint48) {\n if (value > type(uint48).max) {\n revert SafeCastOverflowedUintDowncast(48, value);\n }\n return uint48(value);\n }\n\n /**\n * @dev Returns the downcasted uint40 from uint256, reverting on\n * overflow (when the input is greater than largest uint40).\n *\n * Counterpart to Solidity's `uint40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toUint40(uint256 value) internal pure returns (uint40) {\n if (value > type(uint40).max) {\n revert SafeCastOverflowedUintDowncast(40, value);\n }\n return uint40(value);\n }\n\n /**\n * @dev Returns the downcasted uint32 from uint256, reverting on\n * overflow (when the input is greater than largest uint32).\n *\n * Counterpart to Solidity's `uint32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toUint32(uint256 value) internal pure returns (uint32) {\n if (value > type(uint32).max) {\n revert SafeCastOverflowedUintDowncast(32, value);\n }\n return uint32(value);\n }\n\n /**\n * @dev Returns the downcasted uint24 from uint256, reverting on\n * overflow (when the input is greater than largest uint24).\n *\n * Counterpart to Solidity's `uint24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toUint24(uint256 value) internal pure returns (uint24) {\n if (value > type(uint24).max) {\n revert SafeCastOverflowedUintDowncast(24, value);\n }\n return uint24(value);\n }\n\n /**\n * @dev Returns the downcasted uint16 from uint256, reverting on\n * overflow (when the input is greater than largest uint16).\n *\n * Counterpart to Solidity's `uint16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toUint16(uint256 value) internal pure returns (uint16) {\n if (value > type(uint16).max) {\n revert SafeCastOverflowedUintDowncast(16, value);\n }\n return uint16(value);\n }\n\n /**\n * @dev Returns the downcasted uint8 from uint256, reverting on\n * overflow (when the input is greater than largest uint8).\n *\n * Counterpart to Solidity's `uint8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toUint8(uint256 value) internal pure returns (uint8) {\n if (value > type(uint8).max) {\n revert SafeCastOverflowedUintDowncast(8, value);\n }\n return uint8(value);\n }\n\n /**\n * @dev Converts a signed int256 into an unsigned uint256.\n *\n * Requirements:\n *\n * - input must be greater than or equal to 0.\n */\n function toUint256(int256 value) internal pure returns (uint256) {\n if (value < 0) {\n revert SafeCastOverflowedIntToUint(value);\n }\n return uint256(value);\n }\n\n /**\n * @dev Returns the downcasted int248 from int256, reverting on\n * overflow (when the input is less than smallest int248 or\n * greater than largest int248).\n *\n * Counterpart to Solidity's `int248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toInt248(int256 value) internal pure returns (int248 downcasted) {\n downcasted = int248(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(248, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int240 from int256, reverting on\n * overflow (when the input is less than smallest int240 or\n * greater than largest int240).\n *\n * Counterpart to Solidity's `int240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toInt240(int256 value) internal pure returns (int240 downcasted) {\n downcasted = int240(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(240, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int232 from int256, reverting on\n * overflow (when the input is less than smallest int232 or\n * greater than largest int232).\n *\n * Counterpart to Solidity's `int232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toInt232(int256 value) internal pure returns (int232 downcasted) {\n downcasted = int232(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(232, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int224 from int256, reverting on\n * overflow (when the input is less than smallest int224 or\n * greater than largest int224).\n *\n * Counterpart to Solidity's `int224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toInt224(int256 value) internal pure returns (int224 downcasted) {\n downcasted = int224(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(224, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int216 from int256, reverting on\n * overflow (when the input is less than smallest int216 or\n * greater than largest int216).\n *\n * Counterpart to Solidity's `int216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toInt216(int256 value) internal pure returns (int216 downcasted) {\n downcasted = int216(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(216, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int208 from int256, reverting on\n * overflow (when the input is less than smallest int208 or\n * greater than largest int208).\n *\n * Counterpart to Solidity's `int208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toInt208(int256 value) internal pure returns (int208 downcasted) {\n downcasted = int208(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(208, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int200 from int256, reverting on\n * overflow (when the input is less than smallest int200 or\n * greater than largest int200).\n *\n * Counterpart to Solidity's `int200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toInt200(int256 value) internal pure returns (int200 downcasted) {\n downcasted = int200(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(200, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int192 from int256, reverting on\n * overflow (when the input is less than smallest int192 or\n * greater than largest int192).\n *\n * Counterpart to Solidity's `int192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toInt192(int256 value) internal pure returns (int192 downcasted) {\n downcasted = int192(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(192, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int184 from int256, reverting on\n * overflow (when the input is less than smallest int184 or\n * greater than largest int184).\n *\n * Counterpart to Solidity's `int184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toInt184(int256 value) internal pure returns (int184 downcasted) {\n downcasted = int184(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(184, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int176 from int256, reverting on\n * overflow (when the input is less than smallest int176 or\n * greater than largest int176).\n *\n * Counterpart to Solidity's `int176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toInt176(int256 value) internal pure returns (int176 downcasted) {\n downcasted = int176(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(176, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int168 from int256, reverting on\n * overflow (when the input is less than smallest int168 or\n * greater than largest int168).\n *\n * Counterpart to Solidity's `int168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toInt168(int256 value) internal pure returns (int168 downcasted) {\n downcasted = int168(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(168, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int160 from int256, reverting on\n * overflow (when the input is less than smallest int160 or\n * greater than largest int160).\n *\n * Counterpart to Solidity's `int160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toInt160(int256 value) internal pure returns (int160 downcasted) {\n downcasted = int160(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(160, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int152 from int256, reverting on\n * overflow (when the input is less than smallest int152 or\n * greater than largest int152).\n *\n * Counterpart to Solidity's `int152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toInt152(int256 value) internal pure returns (int152 downcasted) {\n downcasted = int152(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(152, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int144 from int256, reverting on\n * overflow (when the input is less than smallest int144 or\n * greater than largest int144).\n *\n * Counterpart to Solidity's `int144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toInt144(int256 value) internal pure returns (int144 downcasted) {\n downcasted = int144(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(144, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int136 from int256, reverting on\n * overflow (when the input is less than smallest int136 or\n * greater than largest int136).\n *\n * Counterpart to Solidity's `int136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toInt136(int256 value) internal pure returns (int136 downcasted) {\n downcasted = int136(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(136, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int128 from int256, reverting on\n * overflow (when the input is less than smallest int128 or\n * greater than largest int128).\n *\n * Counterpart to Solidity's `int128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toInt128(int256 value) internal pure returns (int128 downcasted) {\n downcasted = int128(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(128, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int120 from int256, reverting on\n * overflow (when the input is less than smallest int120 or\n * greater than largest int120).\n *\n * Counterpart to Solidity's `int120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toInt120(int256 value) internal pure returns (int120 downcasted) {\n downcasted = int120(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(120, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int112 from int256, reverting on\n * overflow (when the input is less than smallest int112 or\n * greater than largest int112).\n *\n * Counterpart to Solidity's `int112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toInt112(int256 value) internal pure returns (int112 downcasted) {\n downcasted = int112(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(112, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int104 from int256, reverting on\n * overflow (when the input is less than smallest int104 or\n * greater than largest int104).\n *\n * Counterpart to Solidity's `int104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toInt104(int256 value) internal pure returns (int104 downcasted) {\n downcasted = int104(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(104, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int96 from int256, reverting on\n * overflow (when the input is less than smallest int96 or\n * greater than largest int96).\n *\n * Counterpart to Solidity's `int96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toInt96(int256 value) internal pure returns (int96 downcasted) {\n downcasted = int96(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(96, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int88 from int256, reverting on\n * overflow (when the input is less than smallest int88 or\n * greater than largest int88).\n *\n * Counterpart to Solidity's `int88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toInt88(int256 value) internal pure returns (int88 downcasted) {\n downcasted = int88(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(88, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int80 from int256, reverting on\n * overflow (when the input is less than smallest int80 or\n * greater than largest int80).\n *\n * Counterpart to Solidity's `int80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toInt80(int256 value) internal pure returns (int80 downcasted) {\n downcasted = int80(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(80, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int72 from int256, reverting on\n * overflow (when the input is less than smallest int72 or\n * greater than largest int72).\n *\n * Counterpart to Solidity's `int72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toInt72(int256 value) internal pure returns (int72 downcasted) {\n downcasted = int72(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(72, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int64 from int256, reverting on\n * overflow (when the input is less than smallest int64 or\n * greater than largest int64).\n *\n * Counterpart to Solidity's `int64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toInt64(int256 value) internal pure returns (int64 downcasted) {\n downcasted = int64(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(64, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int56 from int256, reverting on\n * overflow (when the input is less than smallest int56 or\n * greater than largest int56).\n *\n * Counterpart to Solidity's `int56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toInt56(int256 value) internal pure returns (int56 downcasted) {\n downcasted = int56(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(56, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int48 from int256, reverting on\n * overflow (when the input is less than smallest int48 or\n * greater than largest int48).\n *\n * Counterpart to Solidity's `int48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toInt48(int256 value) internal pure returns (int48 downcasted) {\n downcasted = int48(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(48, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int40 from int256, reverting on\n * overflow (when the input is less than smallest int40 or\n * greater than largest int40).\n *\n * Counterpart to Solidity's `int40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toInt40(int256 value) internal pure returns (int40 downcasted) {\n downcasted = int40(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(40, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int32 from int256, reverting on\n * overflow (when the input is less than smallest int32 or\n * greater than largest int32).\n *\n * Counterpart to Solidity's `int32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toInt32(int256 value) internal pure returns (int32 downcasted) {\n downcasted = int32(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(32, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int24 from int256, reverting on\n * overflow (when the input is less than smallest int24 or\n * greater than largest int24).\n *\n * Counterpart to Solidity's `int24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toInt24(int256 value) internal pure returns (int24 downcasted) {\n downcasted = int24(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(24, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int16 from int256, reverting on\n * overflow (when the input is less than smallest int16 or\n * greater than largest int16).\n *\n * Counterpart to Solidity's `int16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toInt16(int256 value) internal pure returns (int16 downcasted) {\n downcasted = int16(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(16, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int8 from int256, reverting on\n * overflow (when the input is less than smallest int8 or\n * greater than largest int8).\n *\n * Counterpart to Solidity's `int8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toInt8(int256 value) internal pure returns (int8 downcasted) {\n downcasted = int8(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(8, value);\n }\n }\n\n /**\n * @dev Converts an unsigned uint256 into a signed int256.\n *\n * Requirements:\n *\n * - input must be less than or equal to maxInt256.\n */\n function toInt256(uint256 value) internal pure returns (int256) {\n // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n if (value > uint256(type(int256).max)) {\n revert SafeCastOverflowedUintToInt(value);\n }\n return int256(value);\n }\n\n /**\n * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n */\n function toUint(bool b) internal pure returns (uint256 u) {\n assembly (\"memory-safe\") {\n u := iszero(iszero(b))\n }\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/math/Math.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Floor, // Toward negative infinity\n Ceil, // Toward positive infinity\n Trunc, // Toward zero\n Expand // Away from zero\n }\n\n /**\n * @dev Return the 512-bit addition of two uint256.\n *\n * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.\n */\n function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n assembly (\"memory-safe\") {\n low := add(a, b)\n high := lt(low, a)\n }\n }\n\n /**\n * @dev Return the 512-bit multiplication of two uint256.\n *\n * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.\n */\n function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = high * 2²⁵⁶ + low.\n assembly (\"memory-safe\") {\n let mm := mulmod(a, b, not(0))\n low := mul(a, b)\n high := sub(sub(mm, low), lt(mm, low))\n }\n }\n\n /**\n * @dev Returns the addition of two unsigned integers, with a success flag (no overflow).\n */\n function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a + b;\n success = c >= a;\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).\n */\n function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a - b;\n success = c <= a;\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).\n */\n function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a * b;\n assembly (\"memory-safe\") {\n // Only true when the multiplication doesn't overflow\n // (c / a == b) || (a == 0)\n success := or(eq(div(c, a), b), iszero(a))\n }\n // equivalent to: success ? c : 0\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n */\n function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n success = b > 0;\n assembly (\"memory-safe\") {\n // The `DIV` opcode returns zero when the denominator is 0.\n result := div(a, b)\n }\n }\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n */\n function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n success = b > 0;\n assembly (\"memory-safe\") {\n // The `MOD` opcode returns zero when the denominator is 0.\n result := mod(a, b)\n }\n }\n }\n\n /**\n * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.\n */\n function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {\n (bool success, uint256 result) = tryAdd(a, b);\n return ternary(success, result, type(uint256).max);\n }\n\n /**\n * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.\n */\n function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {\n (, uint256 result) = trySub(a, b);\n return result;\n }\n\n /**\n * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.\n */\n function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {\n (bool success, uint256 result) = tryMul(a, b);\n return ternary(success, result, type(uint256).max);\n }\n\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * SafeCast.toUint(condition));\n }\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds towards infinity instead\n * of rounding towards zero.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n if (b == 0) {\n // Guarantee the same behavior as in a regular Solidity division.\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n\n // The following calculation ensures accurate ceiling division without overflow.\n // Since a is non-zero, (a - 1) / b will not overflow.\n // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n // but the largest value we can obtain is type(uint256).max - 1, which happens\n // when a = type(uint256).max and b = 1.\n unchecked {\n return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n }\n }\n\n /**\n * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n * denominator == 0.\n *\n * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n * Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n (uint256 high, uint256 low) = mul512(x, y);\n\n // Handle non-overflow cases, 256 by 256 division.\n if (high == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return low / denominator;\n }\n\n // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n if (denominator <= high) {\n Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n }\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [high low].\n uint256 remainder;\n assembly (\"memory-safe\") {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n high := sub(high, gt(remainder, low))\n low := sub(low, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n uint256 twos = denominator & (0 - denominator);\n assembly (\"memory-safe\") {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [high low] by twos.\n low := div(low, twos)\n\n // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from high into low.\n low |= high * twos;\n\n // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n // works in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n inverse *= 2 - denominator * inverse; // inverse mod 2³²\n inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high\n // is no longer required.\n result = low * inverse;\n return result;\n }\n }\n\n /**\n * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n }\n\n /**\n * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.\n */\n function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {\n unchecked {\n (uint256 high, uint256 low) = mul512(x, y);\n if (high >= 1 << n) {\n Panic.panic(Panic.UNDER_OVERFLOW);\n }\n return (high << (256 - n)) | (low >> n);\n }\n }\n\n /**\n * @dev Calculates x * y >> n with full precision, following the selected rounding direction.\n */\n function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {\n return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);\n }\n\n /**\n * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n *\n * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n *\n * If the input value is not inversible, 0 is returned.\n *\n * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n */\n function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n unchecked {\n if (n == 0) return 0;\n\n // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n // ax + ny = 1\n // ax = 1 + (-y)n\n // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n // If the remainder is 0 the gcd is n right away.\n uint256 remainder = a % n;\n uint256 gcd = n;\n\n // Therefore the initial coefficients are:\n // ax + ny = gcd(a, n) = n\n // 0a + 1n = n\n int256 x = 0;\n int256 y = 1;\n\n while (remainder != 0) {\n uint256 quotient = gcd / remainder;\n\n (gcd, remainder) = (\n // The old remainder is the next gcd to try.\n remainder,\n // Compute the next remainder.\n // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n // where gcd is at most n (capped to type(uint256).max)\n gcd - remainder * quotient\n );\n\n (x, y) = (\n // Increment the coefficient of a.\n y,\n // Decrement the coefficient of n.\n // Can overflow, but the result is casted to uint256 so that the\n // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n x - y * int256(quotient)\n );\n }\n\n if (gcd != 1) return 0; // No inverse exists.\n return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n }\n }\n\n /**\n * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n *\n * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n *\n * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n */\n function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n unchecked {\n return Math.modExp(a, p - 2, p);\n }\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n *\n * Requirements:\n * - modulus can't be zero\n * - underlying staticcall to precompile must succeed\n *\n * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n * interpreted as 0.\n */\n function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n (bool success, uint256 result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n * to operate modulo 0 or if the underlying precompile reverted.\n *\n * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n * of a revert, but the result may be incorrectly interpreted as 0.\n */\n function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n if (m == 0) return (false, 0);\n assembly (\"memory-safe\") {\n let ptr := mload(0x40)\n // | Offset | Content | Content (Hex) |\n // |-----------|------------|--------------------------------------------------------------------|\n // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n mstore(ptr, 0x20)\n mstore(add(ptr, 0x20), 0x20)\n mstore(add(ptr, 0x40), 0x20)\n mstore(add(ptr, 0x60), b)\n mstore(add(ptr, 0x80), e)\n mstore(add(ptr, 0xa0), m)\n\n // Given the result < m, it's guaranteed to fit in 32 bytes,\n // so we can use the memory scratch space located at offset 0.\n success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n result := mload(0x00)\n }\n }\n\n /**\n * @dev Variant of {modExp} that supports inputs of arbitrary length.\n */\n function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n (bool success, bytes memory result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n */\n function tryModExp(\n bytes memory b,\n bytes memory e,\n bytes memory m\n ) internal view returns (bool success, bytes memory result) {\n if (_zeroBytes(m)) return (false, new bytes(0));\n\n uint256 mLen = m.length;\n\n // Encode call args in result and move the free memory pointer\n result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n assembly (\"memory-safe\") {\n let dataPtr := add(result, 0x20)\n // Write result on top of args to avoid allocating extra memory.\n success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n // Overwrite the length.\n // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n mstore(result, mLen)\n // Set the memory pointer after the returned data.\n mstore(0x40, add(dataPtr, mLen))\n }\n }\n\n /**\n * @dev Returns whether the provided byte array is zero.\n */\n function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n for (uint256 i = 0; i < byteArray.length; ++i) {\n if (byteArray[i] != 0) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n * towards zero.\n *\n * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n * using integer operations.\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n unchecked {\n // Take care of easy edge cases when a == 0 or a == 1\n if (a <= 1) {\n return a;\n }\n\n // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n // the current value as `ε_n = | x_n - sqrt(a) |`.\n //\n // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n // bigger than any uint256.\n //\n // By noticing that\n // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n // to the msb function.\n uint256 aa = a;\n uint256 xn = 1;\n\n if (aa >= (1 << 128)) {\n aa >>= 128;\n xn <<= 64;\n }\n if (aa >= (1 << 64)) {\n aa >>= 64;\n xn <<= 32;\n }\n if (aa >= (1 << 32)) {\n aa >>= 32;\n xn <<= 16;\n }\n if (aa >= (1 << 16)) {\n aa >>= 16;\n xn <<= 8;\n }\n if (aa >= (1 << 8)) {\n aa >>= 8;\n xn <<= 4;\n }\n if (aa >= (1 << 4)) {\n aa >>= 4;\n xn <<= 2;\n }\n if (aa >= (1 << 2)) {\n xn <<= 1;\n }\n\n // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n //\n // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n // This is going to be our x_0 (and ε_0)\n xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n // From here, Newton's method give us:\n // x_{n+1} = (x_n + a / x_n) / 2\n //\n // One should note that:\n // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n // = ((x_n² + a) / (2 * x_n))² - a\n // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n // = (x_n² - a)² / (2 * x_n)²\n // = ((x_n² - a) / (2 * x_n))²\n // ≥ 0\n // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n //\n // This gives us the proof of quadratic convergence of the sequence:\n // ε_{n+1} = | x_{n+1} - sqrt(a) |\n // = | (x_n + a / x_n) / 2 - sqrt(a) |\n // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n // = | (x_n - sqrt(a))² / (2 * x_n) |\n // = | ε_n² / (2 * x_n) |\n // = ε_n² / | (2 * x_n) |\n //\n // For the first iteration, we have a special case where x_0 is known:\n // ε_1 = ε_0² / | (2 * x_0) |\n // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n // ≤ 2**(2*e-4) / (3 * 2**(e-1))\n // ≤ 2**(e-3) / 3\n // ≤ 2**(e-3-log2(3))\n // ≤ 2**(e-4.5)\n //\n // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n // ε_{n+1} = ε_n² / | (2 * x_n) |\n // ≤ (2**(e-k))² / (2 * 2**(e-1))\n // ≤ 2**(2*e-2*k) / 2**e\n // ≤ 2**(e-2*k)\n xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above\n xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5\n xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9\n xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18\n xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36\n xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72\n\n // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n // sqrt(a) or sqrt(a) + 1.\n return xn - SafeCast.toUint(xn > a / xn);\n }\n }\n\n /**\n * @dev Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n }\n }\n\n /**\n * @dev Return the log in base 2 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log2(uint256 x) internal pure returns (uint256 r) {\n // If value has upper 128 bits set, log2 result is at least 128\n r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n // If upper 64 bits of 128-bit half set, add 64 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n // If upper 32 bits of 64-bit half set, add 32 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n // If upper 16 bits of 32-bit half set, add 16 to result\n r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n // If upper 8 bits of 16-bit half set, add 8 to result\n r |= SafeCast.toUint((x >> r) > 0xff) << 3;\n // If upper 4 bits of 8-bit half set, add 4 to result\n r |= SafeCast.toUint((x >> r) > 0xf) << 2;\n\n // Shifts value right by the current result and use it as an index into this lookup table:\n //\n // | x (4 bits) | index | table[index] = MSB position |\n // |------------|---------|-----------------------------|\n // | 0000 | 0 | table[0] = 0 |\n // | 0001 | 1 | table[1] = 0 |\n // | 0010 | 2 | table[2] = 1 |\n // | 0011 | 3 | table[3] = 1 |\n // | 0100 | 4 | table[4] = 2 |\n // | 0101 | 5 | table[5] = 2 |\n // | 0110 | 6 | table[6] = 2 |\n // | 0111 | 7 | table[7] = 2 |\n // | 1000 | 8 | table[8] = 3 |\n // | 1001 | 9 | table[9] = 3 |\n // | 1010 | 10 | table[10] = 3 |\n // | 1011 | 11 | table[11] = 3 |\n // | 1100 | 12 | table[12] = 3 |\n // | 1101 | 13 | table[13] = 3 |\n // | 1110 | 14 | table[14] = 3 |\n // | 1111 | 15 | table[15] = 3 |\n //\n // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.\n assembly (\"memory-safe\") {\n r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))\n }\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n }\n }\n\n /**\n * @dev Return the log in base 10 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n }\n }\n\n /**\n * @dev Return the log in base 256 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 x) internal pure returns (uint256 r) {\n // If value has upper 128 bits set, log2 result is at least 128\n r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n // If upper 64 bits of 128-bit half set, add 64 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n // If upper 32 bits of 64-bit half set, add 32 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n // If upper 16 bits of 32-bit half set, add 16 to result\n r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8\n return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n }\n }\n\n /**\n * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n */\n function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n return uint8(rounding) % 2 == 1;\n }\n}\n" | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @title ERC-721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC-721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n * reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n" | |
| }, | |
| "@openzeppelin/contracts/utils/Panic.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n * using Panic for uint256;\n *\n * // Use any of the declared internal constants\n * function foo() { Panic.GENERIC.panic(); }\n *\n * // Alternatively\n * function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n /// @dev generic / unspecified error\n uint256 internal constant GENERIC = 0x00;\n /// @dev used by the assert() builtin\n uint256 internal constant ASSERT = 0x01;\n /// @dev arithmetic underflow or overflow\n uint256 internal constant UNDER_OVERFLOW = 0x11;\n /// @dev division or modulo by zero\n uint256 internal constant DIVISION_BY_ZERO = 0x12;\n /// @dev enum conversion error\n uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n /// @dev invalid encoding in storage\n uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n /// @dev empty array pop\n uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n /// @dev array out of bounds access\n uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n /// @dev resource error (too large allocation or too large array)\n uint256 internal constant RESOURCE_ERROR = 0x41;\n /// @dev calling invalid internal function\n uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n /// @dev Reverts with a panic code. Recommended to use with\n /// the internal constants with predefined codes.\n function panic(uint256 code) internal pure {\n assembly (\"memory-safe\") {\n mstore(0x00, 0x4e487b71)\n mstore(0x20, code)\n revert(0x1c, 0x24)\n }\n }\n}\n" | |
| } | |
| }, | |
| "settings": { | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "outputSelection": { | |
| "*": { | |
| "": [ | |
| "ast" | |
| ], | |
| "*": [ | |
| "abi", | |
| "metadata", | |
| "devdoc", | |
| "userdoc", | |
| "storageLayout", | |
| "evm.legacyAssembly", | |
| "evm.bytecode", | |
| "evm.deployedBytecode", | |
| "evm.methodIdentifiers", | |
| "evm.gasEstimates", | |
| "evm.assembly" | |
| ] | |
| } | |
| }, | |
| "remappings": [] | |
| } | |
| }, | |
| "output": { | |
| "contracts": { | |
| "@openzeppelin/contracts/interfaces/draft-IERC6093.sol": { | |
| "IERC1155Errors": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "balance", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "needed", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC1155InsufficientBalance", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC1155InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "idsLength", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "valuesLength", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC1155InvalidArrayLength", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC1155InvalidOperator", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC1155InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC1155InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC1155MissingApprovalForAll", | |
| "type": "error" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.", | |
| "errors": { | |
| "ERC1155InsufficientBalance(address,uint256,uint256,uint256)": [ | |
| { | |
| "details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.", | |
| "params": { | |
| "balance": "Current balance for the interacting account.", | |
| "needed": "Minimum amount required to perform a transfer.", | |
| "sender": "Address whose tokens are being transferred.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC1155InvalidApprover(address)": [ | |
| { | |
| "details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.", | |
| "params": { | |
| "approver": "Address initiating an approval operation." | |
| } | |
| } | |
| ], | |
| "ERC1155InvalidArrayLength(uint256,uint256)": [ | |
| { | |
| "details": "Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.", | |
| "params": { | |
| "idsLength": "Length of the array of token identifiers", | |
| "valuesLength": "Length of the array of token amounts" | |
| } | |
| } | |
| ], | |
| "ERC1155InvalidOperator(address)": [ | |
| { | |
| "details": "Indicates a failure with the `operator` to be approved. Used in approvals.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ], | |
| "ERC1155InvalidReceiver(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `receiver`. Used in transfers.", | |
| "params": { | |
| "receiver": "Address to which tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC1155InvalidSender(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `sender`. Used in transfers.", | |
| "params": { | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC1155MissingApprovalForAll(address,address)": [ | |
| { | |
| "details": "Indicates a failure with the `operator`’s approval. Used in transfers.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner.", | |
| "owner": "Address of the current owner of a token." | |
| } | |
| } | |
| ] | |
| }, | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": "", | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "gasEstimates": null, | |
| "legacyAssembly": null, | |
| "methodIdentifiers": {} | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}", | |
| "storageLayout": { | |
| "storage": [], | |
| "types": null | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "IERC20Errors": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "spender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "allowance", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "needed", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC20InsufficientAllowance", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "balance", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "needed", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC20InsufficientBalance", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC20InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC20InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC20InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "spender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC20InvalidSpender", | |
| "type": "error" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.", | |
| "errors": { | |
| "ERC20InsufficientAllowance(address,uint256,uint256)": [ | |
| { | |
| "details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.", | |
| "params": { | |
| "allowance": "Amount of tokens a `spender` is allowed to operate with.", | |
| "needed": "Minimum amount required to perform a transfer.", | |
| "spender": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ], | |
| "ERC20InsufficientBalance(address,uint256,uint256)": [ | |
| { | |
| "details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.", | |
| "params": { | |
| "balance": "Current balance for the interacting account.", | |
| "needed": "Minimum amount required to perform a transfer.", | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC20InvalidApprover(address)": [ | |
| { | |
| "details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.", | |
| "params": { | |
| "approver": "Address initiating an approval operation." | |
| } | |
| } | |
| ], | |
| "ERC20InvalidReceiver(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `receiver`. Used in transfers.", | |
| "params": { | |
| "receiver": "Address to which tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC20InvalidSender(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `sender`. Used in transfers.", | |
| "params": { | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC20InvalidSpender(address)": [ | |
| { | |
| "details": "Indicates a failure with the `spender` to be approved. Used in approvals.", | |
| "params": { | |
| "spender": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ] | |
| }, | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": "", | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "gasEstimates": null, | |
| "legacyAssembly": null, | |
| "methodIdentifiers": {} | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}", | |
| "storageLayout": { | |
| "storage": [], | |
| "types": null | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "IERC721Errors": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721IncorrectOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721InsufficientApproval", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOperator", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721NonexistentToken", | |
| "type": "error" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.", | |
| "errors": { | |
| "ERC721IncorrectOwner(address,uint256,address)": [ | |
| { | |
| "details": "Indicates an error related to the ownership over a particular token. Used in transfers.", | |
| "params": { | |
| "owner": "Address of the current owner of a token.", | |
| "sender": "Address whose tokens are being transferred.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InsufficientApproval(address,uint256)": [ | |
| { | |
| "details": "Indicates a failure with the `operator`’s approval. Used in transfers.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidApprover(address)": [ | |
| { | |
| "details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.", | |
| "params": { | |
| "approver": "Address initiating an approval operation." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOperator(address)": [ | |
| { | |
| "details": "Indicates a failure with the `operator` to be approved. Used in approvals.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOwner(address)": [ | |
| { | |
| "details": "Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.", | |
| "params": { | |
| "owner": "Address of the current owner of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidReceiver(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `receiver`. Used in transfers.", | |
| "params": { | |
| "receiver": "Address to which tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidSender(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `sender`. Used in transfers.", | |
| "params": { | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721NonexistentToken(uint256)": [ | |
| { | |
| "details": "Indicates a `tokenId` whose `owner` is the zero address.", | |
| "params": { | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ] | |
| }, | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": "", | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "gasEstimates": null, | |
| "legacyAssembly": null, | |
| "methodIdentifiers": {} | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}", | |
| "storageLayout": { | |
| "storage": [], | |
| "types": null | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| } | |
| }, | |
| "@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
| "ERC721": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721IncorrectOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721InsufficientApproval", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "approver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidApprover", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOperator", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidOwner", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "receiver", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidReceiver", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "sender", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "ERC721InvalidSender", | |
| "type": "error" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ERC721NonexistentToken", | |
| "type": "error" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "approved", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Approval", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": false, | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "ApprovalForAll", | |
| "type": "event" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "Transfer", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "approve", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "balanceOf", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "getApproved", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "owner", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "isApprovedForAll", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "name", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "ownerOf", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "bytes", | |
| "name": "data", | |
| "type": "bytes" | |
| } | |
| ], | |
| "name": "safeTransferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "operator", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "bool", | |
| "name": "approved", | |
| "type": "bool" | |
| } | |
| ], | |
| "name": "setApprovalForAll", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "bytes4", | |
| "name": "interfaceId", | |
| "type": "bytes4" | |
| } | |
| ], | |
| "name": "supportsInterface", | |
| "outputs": [ | |
| { | |
| "internalType": "bool", | |
| "name": "", | |
| "type": "bool" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "symbol", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "tokenURI", | |
| "outputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "from", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "address", | |
| "name": "to", | |
| "type": "address" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "tokenId", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "transferFrom", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.", | |
| "errors": { | |
| "ERC721IncorrectOwner(address,uint256,address)": [ | |
| { | |
| "details": "Indicates an error related to the ownership over a particular token. Used in transfers.", | |
| "params": { | |
| "owner": "Address of the current owner of a token.", | |
| "sender": "Address whose tokens are being transferred.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InsufficientApproval(address,uint256)": [ | |
| { | |
| "details": "Indicates a failure with the `operator`’s approval. Used in transfers.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner.", | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidApprover(address)": [ | |
| { | |
| "details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.", | |
| "params": { | |
| "approver": "Address initiating an approval operation." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOperator(address)": [ | |
| { | |
| "details": "Indicates a failure with the `operator` to be approved. Used in approvals.", | |
| "params": { | |
| "operator": "Address that may be allowed to operate on tokens without being their owner." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidOwner(address)": [ | |
| { | |
| "details": "Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.", | |
| "params": { | |
| "owner": "Address of the current owner of a token." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidReceiver(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `receiver`. Used in transfers.", | |
| "params": { | |
| "receiver": "Address to which tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721InvalidSender(address)": [ | |
| { | |
| "details": "Indicates a failure with the token `sender`. Used in transfers.", | |
| "params": { | |
| "sender": "Address whose tokens are being transferred." | |
| } | |
| } | |
| ], | |
| "ERC721NonexistentToken(uint256)": [ | |
| { | |
| "details": "Indicates a `tokenId` whose `owner` is the zero address.", | |
| "params": { | |
| "tokenId": "Identifier number of a token." | |
| } | |
| } | |
| ] | |
| }, | |
| "events": { | |
| "Approval(address,address,uint256)": { | |
| "details": "Emitted when `owner` enables `approved` to manage the `tokenId` token." | |
| }, | |
| "ApprovalForAll(address,address,bool)": { | |
| "details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets." | |
| }, | |
| "Transfer(address,address,uint256)": { | |
| "details": "Emitted when `tokenId` token is transferred from `from` to `to`." | |
| } | |
| }, | |
| "kind": "dev", | |
| "methods": { | |
| "approve(address,uint256)": { | |
| "details": "See {IERC721-approve}." | |
| }, | |
| "balanceOf(address)": { | |
| "details": "See {IERC721-balanceOf}." | |
| }, | |
| "constructor": { | |
| "details": "Initializes the contract by setting a `name` and a `symbol` to the token collection." | |
| }, | |
| "getApproved(uint256)": { | |
| "details": "See {IERC721-getApproved}." | |
| }, | |
| "isApprovedForAll(address,address)": { | |
| "details": "See {IERC721-isApprovedForAll}." | |
| }, | |
| "name()": { | |
| "details": "See {IERC721Metadata-name}." | |
| }, | |
| "ownerOf(uint256)": { | |
| "details": "See {IERC721-ownerOf}." | |
| }, | |
| "safeTransferFrom(address,address,uint256)": { | |
| "details": "See {IERC721-safeTransferFrom}." | |
| }, | |
| "safeTransferFrom(address,address,uint256,bytes)": { | |
| "details": "See {IERC721-safeTransferFrom}." | |
| }, | |
| "setApprovalForAll(address,bool)": { | |
| "details": "See {IERC721-setApprovalForAll}." | |
| }, | |
| "supportsInterface(bytes4)": { | |
| "details": "See {IERC165-supportsInterface}." | |
| }, | |
| "symbol()": { | |
| "details": "See {IERC721Metadata-symbol}." | |
| }, | |
| "tokenURI(uint256)": { | |
| "details": "See {IERC721Metadata-tokenURI}." | |
| }, | |
| "transferFrom(address,address,uint256)": { | |
| "details": "See {IERC721-transferFrom}." | |
| } | |
| }, | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": "", | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "gasEstimates": null, | |
| "legacyAssembly": null, | |
| "methodIdentifiers": { | |
| "approve(address,uint256)": "095ea7b3", | |
| "balanceOf(address)": "70a08231", | |
| "getApproved(uint256)": "081812fc", | |
| "isApprovedForAll(address,address)": "e985e9c5", | |
| "name()": "06fdde03", | |
| "ownerOf(uint256)": "6352211e", | |
| "safeTransferFrom(address,address,uint256)": "42842e0e", | |
| "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde", | |
| "setApprovalForAll(address,bool)": "a22cb465", | |
| "supportsInterface(bytes4)": "01ffc9a7", | |
| "symbol()": "95d89b41", | |
| "tokenURI(uint256)": "c87b56dd", | |
| "transferFrom(address,address,uint256)": "23b872dd" | |
| } | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with t | 
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
            View raw
              
    (Sorry about that, but we can’t show files that are this big right now.)
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment