Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kennym/312a7902c7f0d1087a8cd43e7cf10310 to your computer and use it in GitHub Desktop.
Save kennym/312a7902c7f0d1087a8cd43e7cf10310 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.0+commit.c7dfd78e.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev The contract has an owner address, and provides basic authorization control whitch
* simplifies the implementation of user permissions. This contract is based on the source code at:
* https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/ownership/Ownable.sol
*/
contract Ownable
{
/**
* @dev Error constants.
*/
string public constant NOT_CURRENT_OWNER = "018001";
string public constant CANNOT_TRANSFER_TO_ZERO_ADDRESS = "018002";
/**
* @dev Current owner address.
*/
address public owner;
/**
* @dev An event which is triggered when the owner is changed.
* @param previousOwner The address of the previous owner.
* @param newOwner The address of the new owner.
*/
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The constructor sets the original `owner` of the contract to the sender account.
*/
constructor()
{
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner()
{
require(msg.sender == owner, NOT_CURRENT_OWNER);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(
address _newOwner
)
public
onlyOwner
{
require(_newOwner != address(0), CANNOT_TRANSFER_TO_ZERO_ADDRESS);
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Optional metadata extension for ERC-721 non-fungible token standard.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721Metadata
{
/**
* @dev Returns a descriptive name for a collection of NFTs in this contract.
* @return _name Representing name.
*/
function name()
external
view
returns (string memory _name);
/**
* @dev Returns a abbreviated name for a collection of NFTs in this contract.
* @return _symbol Representing symbol.
*/
function symbol()
external
view
returns (string memory _symbol);
/**
* @dev Returns a distinct Uniform Resource Identifier (URI) for a given asset. It Throws if
* `_tokenId` is not a valid NFT. URIs are defined in RFC3986. The URI may point to a JSON file
* that conforms to the "ERC721 Metadata JSON Schema".
* @return URI of _tokenId.
*/
function tokenURI(uint256 _tokenId)
external
view
returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev ERC-721 interface for accepting safe transfers.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721TokenReceiver
{
/**
* @notice The contract address is always the message sender. A wallet/broker/auction application
* MUST implement the wallet interface if it will accept safe transfers.
* @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the
* recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return
* of other than the magic value MUST result in the transaction being reverted.
* Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` unless throwing.
* @param _operator The address which called `safeTransferFrom` function.
* @param _from The address which previously owned the token.
* @param _tokenId The NFT identifier which is being transferred.
* @param _data Additional data with no specified format.
* @return Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
*/
function onERC721Received(
address _operator,
address _from,
uint256 _tokenId,
bytes calldata _data
)
external
returns(bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev ERC-721 non-fungible token standard.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721
{
/**
* @dev Emits when ownership of any NFT changes by any mechanism. This event emits when NFTs are
* created (`from` == 0) and destroyed (`to` == 0). Exception: during contract creation, any
* number of NFTs may be created and assigned without emitting Transfer. At the time of any
* transfer, the approved address for that NFT (if any) is reset to none.
*/
event Transfer(
address indexed _from,
address indexed _to,
uint256 indexed _tokenId
);
/**
* @dev This emits when the approved address for an NFT is changed or reaffirmed. The zero
* address indicates there is no approved address. When a Transfer event emits, this also
* indicates that the approved address for that NFT (if any) is reset to none.
*/
event Approval(
address indexed _owner,
address indexed _approved,
uint256 indexed _tokenId
);
/**
* @dev This emits when an operator is enabled or disabled for an owner. The operator can manage
* all NFTs of the owner.
*/
event ApprovalForAll(
address indexed _owner,
address indexed _operator,
bool _approved
);
/**
* @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
* approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
* the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
* function checks if `_to` is a smart contract (code size > 0). If so, it calls
* `onERC721Received` on `_to` and throws if the return value is not
* `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes calldata _data
)
external;
/**
* @notice This works identically to the other function with an extra data parameter, except this
* function just sets data to ""
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId
)
external;
/**
* @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
* they may be permanently lost.
* @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
* address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
* address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function transferFrom(
address _from,
address _to,
uint256 _tokenId
)
external;
/**
* @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
* the current NFT owner, or an authorized operator of the current owner.
* @param _approved The new approved NFT controller.
* @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable.
* @param _tokenId The NFT to approve.
*/
function approve(
address _approved,
uint256 _tokenId
)
external;
/**
* @notice The contract MUST allow multiple operators per owner.
* @dev Enables or disables approval for a third party ("operator") to manage all of
* `msg.sender`'s assets. It also emits the ApprovalForAll event.
* @param _operator Address to add to the set of authorized operators.
* @param _approved True if the operators is approved, false to revoke approval.
*/
function setApprovalForAll(
address _operator,
bool _approved
)
external;
/**
* @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
* considered invalid, and this function throws for queries about the zero address.
* @notice Count all NFTs assigned to an owner.
* @param _owner Address for whom to query the balance.
* @return Balance of _owner.
*/
function balanceOf(
address _owner
)
external
view
returns (uint256);
/**
* @notice Find the owner of an NFT.
* @dev Returns the address of the owner of the NFT. NFTs assigned to the zero address are
* considered invalid, and queries about them do throw.
* @param _tokenId The identifier for an NFT.
* @return Address of _tokenId owner.
*/
function ownerOf(
uint256 _tokenId
)
external
view
returns (address);
/**
* @notice Throws if `_tokenId` is not a valid NFT.
* @dev Get the approved address for a single NFT.
* @param _tokenId The NFT to find the approved address for.
* @return Address that _tokenId is approved for.
*/
function getApproved(
uint256 _tokenId
)
external
view
returns (address);
/**
* @notice Query if an address is an authorized operator for another address.
* @dev Returns true if `_operator` is an approved operator for `_owner`, false otherwise.
* @param _owner The address that owns the NFTs.
* @param _operator The address that acts on behalf of the owner.
* @return True if approved for all, false otherwise.
*/
function isApprovedForAll(
address _owner,
address _operator
)
external
view
returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./nf-token.sol";
import "./erc721-metadata.sol";
/**
* @dev Optional metadata implementation for ERC-721 non-fungible token standard.
*/
contract NFTokenMetadata is
NFToken,
ERC721Metadata
{
/**
* @dev A descriptive name for a collection of NFTs.
*/
string internal nftName;
/**
* @dev An abbreviated name for NFTokens.
*/
string internal nftSymbol;
/**
* @dev Mapping from NFT ID to metadata uri.
*/
mapping (uint256 => string) internal idToUri;
/**
* @notice When implementing this contract don't forget to set nftName and nftSymbol.
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x5b5e139f] = true; // ERC721Metadata
}
/**
* @dev Returns a descriptive name for a collection of NFTokens.
* @return _name Representing name.
*/
function name()
external
override
view
returns (string memory _name)
{
_name = nftName;
}
/**
* @dev Returns an abbreviated name for NFTokens.
* @return _symbol Representing symbol.
*/
function symbol()
external
override
view
returns (string memory _symbol)
{
_symbol = nftSymbol;
}
/**
* @dev A distinct URI (RFC 3986) for a given NFT.
* @param _tokenId Id for which we want uri.
* @return URI of _tokenId.
*/
function tokenURI(
uint256 _tokenId
)
external
override
view
validNFToken(_tokenId)
returns (string memory)
{
return _tokenURI(_tokenId);
}
/**
* @notice This is an internal function that can be overriden if you want to implement a different
* way to generate token URI.
* @param _tokenId Id for which we want uri.
* @return URI of _tokenId.
*/
function _tokenURI(
uint256 _tokenId
)
internal
virtual
view
returns (string memory)
{
return idToUri[_tokenId];
}
/**
* @notice This is an internal function which should be called from user-implemented external
* burn function. Its purpose is to show and properly initialize data structures when using this
* implementation. Also, note that this burn implementation allows the minter to re-mint a burned
* NFT.
* @dev Burns a NFT.
* @param _tokenId ID of the NFT to be burned.
*/
function _burn(
uint256 _tokenId
)
internal
override
virtual
{
super._burn(_tokenId);
delete idToUri[_tokenId];
}
/**
* @notice This is an internal function which should be called from user-implemented external
* function. Its purpose is to show and properly initialize data structures when using this
* implementation.
* @dev Set a distinct URI (RFC 3986) for a given NFT ID.
* @param _tokenId Id for which we want URI.
* @param _uri String representing RFC 3986 URI.
*/
function _setTokenUri(
uint256 _tokenId,
string memory _uri
)
internal
validNFToken(_tokenId)
{
idToUri[_tokenId] = _uri;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./erc721.sol";
import "./erc721-token-receiver.sol";
import "../utils/supports-interface.sol";
import "../utils/address-utils.sol";
/**
* @dev Implementation of ERC-721 non-fungible token standard.
*/
contract NFToken is
ERC721,
SupportsInterface
{
using AddressUtils for address;
/**
* @dev List of revert message codes. Implementing dApp should handle showing the correct message.
* Based on 0xcert framework error codes.
*/
string constant ZERO_ADDRESS = "003001";
string constant NOT_VALID_NFT = "003002";
string constant NOT_OWNER_OR_OPERATOR = "003003";
string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
string constant NFT_ALREADY_EXISTS = "003006";
string constant NOT_OWNER = "003007";
string constant IS_OWNER = "003008";
/**
* @dev Magic value of a smart contract that can receive NFT.
* Equal to: bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")).
*/
bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02;
/**
* @dev A mapping from NFT ID to the address that owns it.
*/
mapping (uint256 => address) internal idToOwner;
/**
* @dev Mapping from NFT ID to approved address.
*/
mapping (uint256 => address) internal idToApproval;
/**
* @dev Mapping from owner address to count of their tokens.
*/
mapping (address => uint256) private ownerToNFTokenCount;
/**
* @dev Mapping from owner address to mapping of operator addresses.
*/
mapping (address => mapping (address => bool)) internal ownerToOperators;
/**
* @dev Guarantees that the msg.sender is an owner or operator of the given NFT.
* @param _tokenId ID of the NFT to validate.
*/
modifier canOperate(
uint256 _tokenId
)
{
address tokenOwner = idToOwner[_tokenId];
require(
tokenOwner == msg.sender || ownerToOperators[tokenOwner][msg.sender],
NOT_OWNER_OR_OPERATOR
);
_;
}
/**
* @dev Guarantees that the msg.sender is allowed to transfer NFT.
* @param _tokenId ID of the NFT to transfer.
*/
modifier canTransfer(
uint256 _tokenId
)
{
address tokenOwner = idToOwner[_tokenId];
require(
tokenOwner == msg.sender
|| idToApproval[_tokenId] == msg.sender
|| ownerToOperators[tokenOwner][msg.sender],
NOT_OWNER_APPROVED_OR_OPERATOR
);
_;
}
/**
* @dev Guarantees that _tokenId is a valid Token.
* @param _tokenId ID of the NFT to validate.
*/
modifier validNFToken(
uint256 _tokenId
)
{
require(idToOwner[_tokenId] != address(0), NOT_VALID_NFT);
_;
}
/**
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x80ac58cd] = true; // ERC721
}
/**
* @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
* approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
* the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
* function checks if `_to` is a smart contract (code size > 0). If so, it calls
* `onERC721Received` on `_to` and throws if the return value is not
* `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes calldata _data
)
external
override
{
_safeTransferFrom(_from, _to, _tokenId, _data);
}
/**
* @notice This works identically to the other function with an extra data parameter, except this
* function just sets data to "".
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId
)
external
override
{
_safeTransferFrom(_from, _to, _tokenId, "");
}
/**
* @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
* they may be permanently lost.
* @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
* address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
* address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function transferFrom(
address _from,
address _to,
uint256 _tokenId
)
external
override
canTransfer(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(tokenOwner == _from, NOT_OWNER);
require(_to != address(0), ZERO_ADDRESS);
_transfer(_to, _tokenId);
}
/**
* @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
* the current NFT owner, or an authorized operator of the current owner.
* @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable.
* @param _approved Address to be approved for the given NFT ID.
* @param _tokenId ID of the token to be approved.
*/
function approve(
address _approved,
uint256 _tokenId
)
external
override
canOperate(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(_approved != tokenOwner, IS_OWNER);
idToApproval[_tokenId] = _approved;
emit Approval(tokenOwner, _approved, _tokenId);
}
/**
* @notice This works even if sender doesn't own any tokens at the time.
* @dev Enables or disables approval for a third party ("operator") to manage all of
* `msg.sender`'s assets. It also emits the ApprovalForAll event.
* @param _operator Address to add to the set of authorized operators.
* @param _approved True if the operators is approved, false to revoke approval.
*/
function setApprovalForAll(
address _operator,
bool _approved
)
external
override
{
ownerToOperators[msg.sender][_operator] = _approved;
emit ApprovalForAll(msg.sender, _operator, _approved);
}
/**
* @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
* considered invalid, and this function throws for queries about the zero address.
* @param _owner Address for whom to query the balance.
* @return Balance of _owner.
*/
function balanceOf(
address _owner
)
external
override
view
returns (uint256)
{
require(_owner != address(0), ZERO_ADDRESS);
return _getOwnerNFTCount(_owner);
}
/**
* @dev Returns the address of the owner of the NFT. NFTs assigned to the zero address are
* considered invalid, and queries about them do throw.
* @param _tokenId The identifier for an NFT.
* @return _owner Address of _tokenId owner.
*/
function ownerOf(
uint256 _tokenId
)
external
override
view
returns (address _owner)
{
_owner = idToOwner[_tokenId];
require(_owner != address(0), NOT_VALID_NFT);
}
/**
* @notice Throws if `_tokenId` is not a valid NFT.
* @dev Get the approved address for a single NFT.
* @param _tokenId ID of the NFT to query the approval of.
* @return Address that _tokenId is approved for.
*/
function getApproved(
uint256 _tokenId
)
external
override
view
validNFToken(_tokenId)
returns (address)
{
return idToApproval[_tokenId];
}
/**
* @dev Checks if `_operator` is an approved operator for `_owner`.
* @param _owner The address that owns the NFTs.
* @param _operator The address that acts on behalf of the owner.
* @return True if approved for all, false otherwise.
*/
function isApprovedForAll(
address _owner,
address _operator
)
external
override
view
returns (bool)
{
return ownerToOperators[_owner][_operator];
}
/**
* @notice Does NO checks.
* @dev Actually performs the transfer.
* @param _to Address of a new owner.
* @param _tokenId The NFT that is being transferred.
*/
function _transfer(
address _to,
uint256 _tokenId
)
internal
virtual
{
address from = idToOwner[_tokenId];
_clearApproval(_tokenId);
_removeNFToken(from, _tokenId);
_addNFToken(_to, _tokenId);
emit Transfer(from, _to, _tokenId);
}
/**
* @notice This is an internal function which should be called from user-implemented external
* mint function. Its purpose is to show and properly initialize data structures when using this
* implementation.
* @dev Mints a new NFT.
* @param _to The address that will own the minted NFT.
* @param _tokenId of the NFT to be minted by the msg.sender.
*/
function _mint(
address _to,
uint256 _tokenId
)
internal
virtual
{
require(_to != address(0), ZERO_ADDRESS);
require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);
_addNFToken(_to, _tokenId);
emit Transfer(address(0), _to, _tokenId);
}
/**
* @notice This is an internal function which should be called from user-implemented external burn
* function. Its purpose is to show and properly initialize data structures when using this
* implementation. Also, note that this burn implementation allows the minter to re-mint a burned
* NFT.
* @dev Burns a NFT.
* @param _tokenId ID of the NFT to be burned.
*/
function _burn(
uint256 _tokenId
)
internal
virtual
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
_clearApproval(_tokenId);
_removeNFToken(tokenOwner, _tokenId);
emit Transfer(tokenOwner, address(0), _tokenId);
}
/**
* @notice Use and override this function with caution. Wrong usage can have serious consequences.
* @dev Removes a NFT from owner.
* @param _from Address from which we want to remove the NFT.
* @param _tokenId Which NFT we want to remove.
*/
function _removeNFToken(
address _from,
uint256 _tokenId
)
internal
virtual
{
require(idToOwner[_tokenId] == _from, NOT_OWNER);
ownerToNFTokenCount[_from] -= 1;
delete idToOwner[_tokenId];
}
/**
* @notice Use and override this function with caution. Wrong usage can have serious consequences.
* @dev Assigns a new NFT to owner.
* @param _to Address to which we want to add the NFT.
* @param _tokenId Which NFT we want to add.
*/
function _addNFToken(
address _to,
uint256 _tokenId
)
internal
virtual
{
require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);
idToOwner[_tokenId] = _to;
ownerToNFTokenCount[_to] += 1;
}
/**
* @dev Helper function that gets NFT count of owner. This is needed for overriding in enumerable
* extension to remove double storage (gas optimization) of owner NFT count.
* @param _owner Address for whom to query the count.
* @return Number of _owner NFTs.
*/
function _getOwnerNFTCount(
address _owner
)
internal
virtual
view
returns (uint256)
{
return ownerToNFTokenCount[_owner];
}
/**
* @dev Actually perform the safeTransferFrom.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function _safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes memory _data
)
private
canTransfer(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(tokenOwner == _from, NOT_OWNER);
require(_to != address(0), ZERO_ADDRESS);
_transfer(_to, _tokenId);
if (_to.isContract())
{
bytes4 retval = ERC721TokenReceiver(_to).onERC721Received(msg.sender, _from, _tokenId, _data);
require(retval == MAGIC_ON_ERC721_RECEIVED, NOT_ABLE_TO_RECEIVE_NFT);
}
}
/**
* @dev Clears the current approval of a given NFT ID.
* @param _tokenId ID of the NFT to be transferred.
*/
function _clearApproval(
uint256 _tokenId
)
private
{
delete idToApproval[_tokenId];
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @notice Based on:
* https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
* Requires EIP-1052.
* @dev Utility library of inline functions on addresses.
*/
library AddressUtils
{
/**
* @dev Returns whether the target address is a contract.
* @param _addr Address to check.
* @return addressCheck True if _addr is a contract, false if not.
*/
function isContract(
address _addr
)
internal
view
returns (bool addressCheck)
{
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
assembly { codehash := extcodehash(_addr) } // solhint-disable-line
addressCheck = (codehash != 0x0 && codehash != accountHash);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev A standard for detecting smart contract interfaces.
* See: https://eips.ethereum.org/EIPS/eip-165.
*/
interface ERC165
{
/**
* @dev Checks if the smart contract includes a specific interface.
* This function uses less than 30,000 gas.
* @param _interfaceID The interface identifier, as specified in ERC-165.
* @return True if _interfaceID is supported, false otherwise.
*/
function supportsInterface(
bytes4 _interfaceID
)
external
view
returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./erc165.sol";
/**
* @dev Implementation of standard for detect smart contract interfaces.
*/
contract SupportsInterface is
ERC165
{
/**
* @dev Mapping of supported intefraces. You must not set element 0xffffffff to true.
*/
mapping(bytes4 => bool) internal supportedInterfaces;
/**
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x01ffc9a7] = true; // ERC165
}
/**
* @dev Function to check which interfaces are suported by this contract.
* @param _interfaceID Id of the interface.
* @return True if _interfaceID is supported, false otherwise.
*/
function supportsInterface(
bytes4 _interfaceID
)
external
override
view
returns (bool)
{
return supportedInterfaces[_interfaceID];
}
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220f4b4efa573d645f204d8f007ad1b9f9709ff3975c5627d049e7fd75bc81a8b5b64736f6c63430008000033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DELEGATECALL 0xB4 0xEF 0xA5 PUSH20 0xD645F204D8F007AD1B9F9709FF3975C5627D049E PUSH32 0xD75BC81A8B5B64736F6C63430008000033000000000000000000000000000000 ",
"sourceMap": "3119:968:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;3119:968:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220f4b4efa573d645f204d8f007ad1b9f9709ff3975c5627d049e7fd75bc81a8b5b64736f6c63430008000033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DELEGATECALL 0xB4 0xEF 0xA5 PUSH20 0xD645F204D8F007AD1B9F9709FF3975C5627D049E PUSH32 0xD75BC81A8B5B64736F6C63430008000033000000000000000000000000000000 ",
"sourceMap": "3119:968:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"isContract(address)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Utility library of inline functions on addresses.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"notice": "Based on: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol Requires EIP-1052.",
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "AddressUtils"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "_interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "_interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "A standard for detecting smart contract interfaces. See: https://eips.ethereum.org/EIPS/eip-165.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "Checks if the smart contract includes a specific interface. This function uses less than 30,000 gas.",
"params": {
"_interfaceID": "The interface identifier, as specified in ERC-165."
},
"returns": {
"_0": "True if _interfaceID is supported, false otherwise."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "ERC165"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": "_approved",
"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": [
{
"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": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": "_approved",
"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": [
{
"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": "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": "ERC-721 non-fungible token standard. See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.",
"events": {
"Approval(address,address,uint256)": {
"details": "This emits when the approved address for an NFT is changed or reaffirmed. The zero address indicates there is no approved address. When a Transfer event emits, this also indicates that the approved address for that NFT (if any) is reset to none."
},
"ApprovalForAll(address,address,bool)": {
"details": "This emits when an operator is enabled or disabled for an owner. The operator can manage all NFTs of the owner."
},
"Transfer(address,address,uint256)": {
"details": "Emits when ownership of any NFT changes by any mechanism. This event emits when NFTs are created (`from` == 0) and destroyed (`to` == 0). Exception: during contract creation, any number of NFTs may be created and assigned without emitting Transfer. At the time of any transfer, the approved address for that NFT (if any) is reset to none."
}
},
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Set or reaffirm the approved address for an NFT. This function can be changed to payable.",
"params": {
"_approved": "The new approved NFT controller.",
"_tokenId": "The NFT to approve."
}
},
"balanceOf(address)": {
"details": "Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are considered invalid, and this function throws for queries about the zero address.",
"params": {
"_owner": "Address for whom to query the balance."
},
"returns": {
"_0": "Balance of _owner."
}
},
"getApproved(uint256)": {
"details": "Get the approved address for a single NFT.",
"params": {
"_tokenId": "The NFT to find the approved address for."
},
"returns": {
"_0": "Address that _tokenId is approved for."
}
},
"isApprovedForAll(address,address)": {
"details": "Returns true if `_operator` is an approved operator for `_owner`, false otherwise.",
"params": {
"_operator": "The address that acts on behalf of the owner.",
"_owner": "The address that owns the NFTs."
},
"returns": {
"_0": "True if approved for all, false otherwise."
}
},
"ownerOf(uint256)": {
"details": "Returns the address of the owner of the NFT. NFTs assigned to the zero address are considered invalid, and queries about them do throw.",
"params": {
"_tokenId": "The identifier for an NFT."
},
"returns": {
"_0": "Address of _tokenId owner."
}
},
"safeTransferFrom(address,address,uint256)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_data": "Additional data with no specified format, sent in call to `_to`.",
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"setApprovalForAll(address,bool)": {
"details": "Enables or disables approval for a third party (\"operator\") to manage all of `msg.sender`'s assets. It also emits the ApprovalForAll event.",
"params": {
"_approved": "True if the operators is approved, false to revoke approval.",
"_operator": "Address to add to the set of authorized operators."
}
},
"transferFrom(address,address,uint256)": {
"details": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"approve(address,uint256)": {
"notice": "The zero address indicates there is no approved address. Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner."
},
"balanceOf(address)": {
"notice": "Count all NFTs assigned to an owner."
},
"getApproved(uint256)": {
"notice": "Throws if `_tokenId` is not a valid NFT."
},
"isApprovedForAll(address,address)": {
"notice": "Query if an address is an authorized operator for another address."
},
"ownerOf(uint256)": {
"notice": "Find the owner of an NFT."
},
"safeTransferFrom(address,address,uint256)": {
"notice": "This works identically to the other function with an extra data parameter, except this function just sets data to \"\""
},
"safeTransferFrom(address,address,uint256,bytes)": {
"notice": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this function checks if `_to` is a smart contract (code size > 0). If so, it calls `onERC721Received` on `_to` and throws if the return value is not `bytes4(keccak256(\"onERC721Received(address,uint256,bytes)\"))`."
},
"setApprovalForAll(address,bool)": {
"notice": "The contract MUST allow multiple operators per owner."
},
"transferFrom(address,address,uint256)": {
"notice": "The caller is responsible to confirm that `_to` is capable of receiving NFTs or else they may be permanently lost."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "ERC721"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"name()": "06fdde03",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd"
}
},
"abi": [
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "_symbol",
"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"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "_symbol",
"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"
}
],
"devdoc": {
"details": "Optional metadata extension for ERC-721 non-fungible token standard. See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.",
"kind": "dev",
"methods": {
"name()": {
"details": "Returns a descriptive name for a collection of NFTs in this contract.",
"returns": {
"_name": "Representing name."
}
},
"symbol()": {
"details": "Returns a abbreviated name for a collection of NFTs in this contract.",
"returns": {
"_symbol": "Representing symbol."
}
},
"tokenURI(uint256)": {
"details": "Returns a distinct Uniform Resource Identifier (URI) for a given asset. It Throws if `_tokenId` is not a valid NFT. URIs are defined in RFC3986. The URI may point to a JSON file that conforms to the \"ERC721 Metadata JSON Schema\".",
"returns": {
"_0": "URI of _tokenId."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "ERC721Metadata"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"onERC721Received(address,address,uint256,bytes)": "150b7a02"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_operator",
"type": "address"
},
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_operator",
"type": "address"
},
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "ERC-721 interface for accepting safe transfers. See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.",
"kind": "dev",
"methods": {
"onERC721Received(address,address,uint256,bytes)": {
"details": "Handle the receipt of a NFT. The ERC721 smart contract calls this function on the recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return of other than the magic value MUST result in the transaction being reverted. Returns `bytes4(keccak256(\"onERC721Received(address,address,uint256,bytes)\"))` unless throwing.",
"params": {
"_data": "Additional data with no specified format.",
"_from": "The address which previously owned the token.",
"_operator": "The address which called `safeTransferFrom` function.",
"_tokenId": "The NFT identifier which is being transferred."
},
"returns": {
"_0": "Returns `bytes4(keccak256(\"onERC721Received(address,address,uint256,bytes)\"))`."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"onERC721Received(address,address,uint256,bytes)": {
"notice": "The contract address is always the message sender. A wallet/broker/auction application MUST implement the wallet interface if it will accept safe transfers."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "ERC721TokenReceiver"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600060208190527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1990811660019081179092556380ac58cd60e01b9092527ff7815fccbf112960a73756e185887fedcb9fc64ca0a16cc5923b7960ed7808008054909216179055610f7e8061008c6000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80636352211e116100665780636352211e1461012757806370a082311461013a578063a22cb4651461015a578063b88d4fde1461016d578063e985e9c5146101805761009e565b806301ffc9a7146100a3578063081812fc146100cc578063095ea7b3146100ec57806323b872dd1461010157806342842e0e14610114575b600080fd5b6100b66100b1366004610dd7565b610193565b6040516100c39190610ec3565b60405180910390f35b6100df6100da366004610e0f565b6101b6565b6040516100c39190610e72565b6100ff6100fa366004610dae565b610238565b005b6100ff61010f366004610ca3565b6103da565b6100ff610122366004610ca3565b610595565b6100df610135366004610e0f565b6105b5565b61014d610148366004610c50565b61060d565b6040516100c39190610ee1565b6100ff610168366004610d74565b610664565b6100ff61017b366004610cde565b6106d3565b6100b661018e366004610c71565b61071c565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b03166102165760405162461bcd60e51b815260040161020d9190610ece565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b03163381148061028357506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906102c05760405162461bcd60e51b815260040161020d9190610ece565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b031661031a5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b039081169190871682141561037a5760405162461bcd60e51b815260040161020d9190610ece565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061041857506000828152600260205260409020546001600160a01b031633145b8061044657506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906104835760405162461bcd60e51b815260040161020d9190610ece565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166104dd5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b0390811691908816821461053c5760405162461bcd60e51b815260040161020d9190610ece565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166105815760405162461bcd60e51b815260040161020d9190610ece565b5061058c868661074a565b50505050505050565b6105b0838383604051806020016040528060008152506107c5565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816102325760405162461bcd60e51b815260040161020d9190610ece565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166106545760405162461bcd60e51b815260040161020d9190610ece565b5061065e82610a73565b92915050565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906106c7908590610ec3565b60405180910390a35050565b61071585858585858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c592505050565b5050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000818152600160205260409020546001600160a01b031661076b82610a8e565b6107758183610aac565b61077f8383610b55565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b03163381148061080357506000828152600260205260409020546001600160a01b031633145b8061083157506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b8152509061086e5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b03166108c85760405162461bcd60e51b815260040161020d9190610ece565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b039081169190891682146109275760405162461bcd60e51b815260040161020d9190610ece565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b03881661096c5760405162461bcd60e51b815260040161020d9190610ece565b50610977878761074a565b610989876001600160a01b0316610bfd565b15610a6957604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a02906109c39033908d908c908c90600401610e86565b602060405180830381600087803b1580156109dd57600080fd5b505af11580156109f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a159190610df3565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610a665760405162461bcd60e51b815260040161020d9190610ece565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03848116911614610b075760405162461bcd60e51b815260040161020d9190610ece565b506001600160a01b0382166000908152600360205260408120805460019290610b31908490610f02565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610bac5760405162461bcd60e51b815260040161020d9190610ece565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b038816908117909155845260039091528220805491929091610bf4908490610eea565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610c315750808214155b949350505050565b80356001600160a01b03811681146101b157600080fd5b600060208284031215610c61578081fd5b610c6a82610c39565b9392505050565b60008060408385031215610c83578081fd5b610c8c83610c39565b9150610c9a60208401610c39565b90509250929050565b600080600060608486031215610cb7578081fd5b610cc084610c39565b9250610cce60208501610c39565b9150604084013590509250925092565b600080600080600060808688031215610cf5578081fd5b610cfe86610c39565b9450610d0c60208701610c39565b935060408601359250606086013567ffffffffffffffff80821115610d2f578283fd5b818801915088601f830112610d42578283fd5b813581811115610d50578384fd5b896020828501011115610d61578384fd5b9699959850939650602001949392505050565b60008060408385031215610d86578182fd5b610d8f83610c39565b915060208301358015158114610da3578182fd5b809150509250929050565b60008060408385031215610dc0578182fd5b610dc983610c39565b946020939093013593505050565b600060208284031215610de8578081fd5b8135610c6a81610f2f565b600060208284031215610e04578081fd5b8151610c6a81610f2f565b600060208284031215610e20578081fd5b5035919050565b60008151808452815b81811015610e4c57602081850181015186830182015201610e30565b81811115610e5d5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090610eb990830184610e27565b9695505050505050565b901515815260200190565b600060208252610c6a6020830184610e27565b90815260200190565b60008219821115610efd57610efd610f19565b500190565b600082821015610f1457610f14610f19565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160e01b031981168114610f4557600080fd5b5056fea26469706673582212201b72b57ab4e523bff7276736f5d2abfd27d47a2b0cc8b9ed40247d0a71c698d864736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH32 0x67BE87C3FF9960CA1E9CFAC5CAB2FF4747269CF9ED20C9B7306235AC35A491C5 DUP1 SLOAD PUSH1 0xFF NOT SWAP1 DUP2 AND PUSH1 0x1 SWAP1 DUP2 OR SWAP1 SWAP3 SSTORE PUSH4 0x80AC58CD PUSH1 0xE0 SHL SWAP1 SWAP3 MSTORE PUSH32 0xF7815FCCBF112960A73756E185887FEDCB9FC64CA0A16CC5923B7960ED780800 DUP1 SLOAD SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0xF7E DUP1 PUSH2 0x8C PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x13A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x180 JUMPI PUSH2 0x9E JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0xDD7 JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xE72 JUMP JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x238 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0xCA3 JUMP JUMPDEST PUSH2 0x3DA JUMP JUMPDEST PUSH2 0xFF PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0xCA3 JUMP JUMPDEST PUSH2 0x595 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x5B5 JUMP JUMPDEST PUSH2 0x14D PUSH2 0x148 CALLDATASIZE PUSH1 0x4 PUSH2 0xC50 JUMP JUMPDEST PUSH2 0x60D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xD74 JUMP JUMPDEST PUSH2 0x664 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0xCDE JUMP JUMPDEST PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x216 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x283 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x2C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x31A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x418 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x446 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x483 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x53C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x581 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x58C DUP7 DUP7 PUSH2 0x74A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5B0 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7C5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x232 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x654 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x65E DUP3 PUSH2 0xA73 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x6C7 SWAP1 DUP6 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x715 DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x7C5 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x76B DUP3 PUSH2 0xA8E JUMP JUMPDEST PUSH2 0x775 DUP2 DUP4 PUSH2 0xAAC JUMP JUMPDEST PUSH2 0x77F DUP4 DUP4 PUSH2 0xB55 JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x803 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x831 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8C8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0x927 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0x96C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x977 DUP8 DUP8 PUSH2 0x74A JUMP JUMPDEST PUSH2 0x989 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBFD JUMP JUMPDEST ISZERO PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x9C3 SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0xE86 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA15 SWAP2 SWAP1 PUSH2 0xDF3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xA66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0xB07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xB31 SWAP1 DUP5 SWAP1 PUSH2 0xF02 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xBAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0xBF4 SWAP1 DUP5 SWAP1 PUSH2 0xEEA JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0xC31 JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC61 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xC6A DUP3 PUSH2 0xC39 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC83 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xC8C DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH2 0xC9A PUSH1 0x20 DUP5 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xCB7 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xCC0 DUP5 PUSH2 0xC39 JUMP JUMPDEST SWAP3 POP PUSH2 0xCCE PUSH1 0x20 DUP6 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xCF5 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xCFE DUP7 PUSH2 0xC39 JUMP JUMPDEST SWAP5 POP PUSH2 0xD0C PUSH1 0x20 DUP8 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD2F JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD42 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xD50 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD61 JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD86 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xD8F DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xDA3 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC0 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xDC9 DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDE8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xC6A DUP2 PUSH2 0xF2F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE04 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xC6A DUP2 PUSH2 0xF2F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE20 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE4C JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xE30 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xE5D JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xEB9 SWAP1 DUP4 ADD DUP5 PUSH2 0xE27 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0xC6A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE27 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xEFD JUMPI PUSH2 0xEFD PUSH2 0xF19 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xF14 JUMPI PUSH2 0xF14 PUSH2 0xF19 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xF45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL PUSH19 0xB57AB4E523BFF7276736F5D2ABFD27D47A2B0C 0xC8 0xB9 0xED BLOCKHASH 0x24 PUSH30 0xA71C698D864736F6C634300080000330000000000000000000000000000 ",
"sourceMap": "13277:12537:0:-:0;;;15762:75;;;;;;;;;-1:-1:-1;5194:19:0;:31;;;;;:38;;-1:-1:-1;;5194:38:0;;;5228:4;5194:38;;;;;;-1:-1:-1;;;15784:31:0;;;;:38;;;;;;;;13277:12537;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5573:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "65:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "75:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "97:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "84:12:1"
},
"nodeType": "YulFunctionCall",
"src": "84:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "75:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "167:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "179:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "169:6:1"
},
"nodeType": "YulFunctionCall",
"src": "169:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "169:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "126:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "137:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "148:3:1"
},
"nodeType": "YulFunctionCall",
"src": "148:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "161:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "144:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "133:3:1"
},
"nodeType": "YulFunctionCall",
"src": "133:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "123:2:1"
},
"nodeType": "YulFunctionCall",
"src": "123:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "116:6:1"
},
"nodeType": "YulFunctionCall",
"src": "116:50:1"
},
"nodeType": "YulIf",
"src": "113:2:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "44:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "55:5:1",
"type": ""
}
],
"src": "14:175:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "264:128:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "310:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "319:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "327:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "312:6:1"
},
"nodeType": "YulFunctionCall",
"src": "312:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "312:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "285:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "294:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "281:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "277:3:1"
},
"nodeType": "YulFunctionCall",
"src": "277:32:1"
},
"nodeType": "YulIf",
"src": "274:2:1"
},
{
"nodeType": "YulAssignment",
"src": "345:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "376:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "355:20:1"
},
"nodeType": "YulFunctionCall",
"src": "355:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "345:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "230:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "241:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "253:6:1",
"type": ""
}
],
"src": "194:198:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "484:187:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "530:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "539:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "547:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "532:6:1"
},
"nodeType": "YulFunctionCall",
"src": "532:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "532:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "505:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "501:3:1"
},
"nodeType": "YulFunctionCall",
"src": "501:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "497:3:1"
},
"nodeType": "YulFunctionCall",
"src": "497:32:1"
},
"nodeType": "YulIf",
"src": "494:2:1"
},
{
"nodeType": "YulAssignment",
"src": "565:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "596:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "575:20:1"
},
"nodeType": "YulFunctionCall",
"src": "575:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "565:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "615:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "650:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "661:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "646:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "625:20:1"
},
"nodeType": "YulFunctionCall",
"src": "625:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "615:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "442:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "453:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "465:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "473:6:1",
"type": ""
}
],
"src": "397:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "780:238:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "826:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "835:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "843:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "828:6:1"
},
"nodeType": "YulFunctionCall",
"src": "828:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "828:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "801:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "810:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "797:3:1"
},
"nodeType": "YulFunctionCall",
"src": "797:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "822:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "793:3:1"
},
"nodeType": "YulFunctionCall",
"src": "793:32:1"
},
"nodeType": "YulIf",
"src": "790:2:1"
},
{
"nodeType": "YulAssignment",
"src": "861:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "892:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "871:20:1"
},
"nodeType": "YulFunctionCall",
"src": "871:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "861:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "911:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "946:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "957:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "942:3:1"
},
"nodeType": "YulFunctionCall",
"src": "942:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "921:20:1"
},
"nodeType": "YulFunctionCall",
"src": "921:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "911:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "970:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "997:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1008:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "993:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "980:12:1"
},
"nodeType": "YulFunctionCall",
"src": "980:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "970:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "730:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "741:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "753:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "761:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "769:6:1",
"type": ""
}
],
"src": "676:342:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1163:722:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1210:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1219:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1227:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1212:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1212:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1184:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1193:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1180:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1205:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1176:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1176:33:1"
},
"nodeType": "YulIf",
"src": "1173:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1245:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1276:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1255:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1255:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1245:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1295:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1330:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1326:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1326:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1305:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1295:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1354:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1381:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1392:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1377:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1364:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1364:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1354:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1405:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1436:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1447:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1432:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1419:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1419:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1409:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1460:28:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1470:18:1",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1464:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1515:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1524:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1532:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1517:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1517:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1517:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1503:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1511:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1500:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1500:14:1"
},
"nodeType": "YulIf",
"src": "1497:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1550:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1564:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1575:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1560:22:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "1554:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1630:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1639:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1647:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1632:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1632:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1632:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1609:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1613:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1605:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1605:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1620:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1601:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1601:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1594:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1594:35:1"
},
"nodeType": "YulIf",
"src": "1591:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1665:30:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1692:2:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1679:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1679:16:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1669:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1722:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1731:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1739:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1724:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1724:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1724:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1710:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1718:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1707:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1707:14:1"
},
"nodeType": "YulIf",
"src": "1704:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1798:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1807:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1815:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1800:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1800:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1800:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1771:2:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1775:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1767:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1767:15:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1763:24:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1789:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1760:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1760:37:1"
},
"nodeType": "YulIf",
"src": "1757:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1833:21:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1847:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1851:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1843:11:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1833:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:16:1",
"value": {
"name": "length",
"nodeType": "YulIdentifier",
"src": "1873:6:1"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1863:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1097:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1108:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1120:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1128:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1136:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1144:6:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1152:6:1",
"type": ""
}
],
"src": "1023:862:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1974:285:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2020:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2037:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2022:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2022:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2022:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1995:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2004:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1991:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1991:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2016:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1987:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1987:32:1"
},
"nodeType": "YulIf",
"src": "1984:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2055:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2086:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2065:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2065:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2055:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2105:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2135:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2146:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2131:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2131:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2118:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2118:32:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2109:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2203:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2212:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2220:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2205:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2205:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2205:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2172:5:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2193:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2186:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2186:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2179:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2179:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2169:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2169:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2162:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2162:40:1"
},
"nodeType": "YulIf",
"src": "2159:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2238:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2248:5:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2238:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1932:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1943:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1955:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1963:6:1",
"type": ""
}
],
"src": "1890:369:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2351:179:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2397:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2406:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2414:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2399:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2399:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2372:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2381:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2368:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2368:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2393:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2364:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2364:32:1"
},
"nodeType": "YulIf",
"src": "2361:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2432:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2463:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2442:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2442:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2432:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2482:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2509:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2520:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2505:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2492:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2492:32:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2482:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2309:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2320:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2332:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2340:6:1",
"type": ""
}
],
"src": "2264:266:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:188:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2650:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2659:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2667:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2652:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2652:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2625:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2634:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2621:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2617:32:1"
},
"nodeType": "YulIf",
"src": "2614:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2685:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2711:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2698:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2698:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2689:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2756:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2730:25:1"
},
"nodeType": "YulFunctionCall",
"src": "2730:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "2730:32:1"
},
{
"nodeType": "YulAssignment",
"src": "2771:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2781:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2771:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2570:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2581:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2593:6:1",
"type": ""
}
],
"src": "2535:257:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2877:181:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2923:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2932:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2940:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2925:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2925:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2925:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2898:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2907:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2894:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2919:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2890:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2890:32:1"
},
"nodeType": "YulIf",
"src": "2887:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2958:29:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2977:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2971:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2971:16:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2962:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3022:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2996:25:1"
},
"nodeType": "YulFunctionCall",
"src": "2996:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "2996:32:1"
},
{
"nodeType": "YulAssignment",
"src": "3037:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3047:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3037:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2843:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2854:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2866:6:1",
"type": ""
}
],
"src": "2797:261:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3133:120:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3179:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3188:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3196:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3181:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3181:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3181:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3154:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3163:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3175:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3146:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3146:32:1"
},
"nodeType": "YulIf",
"src": "3143:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3214:33:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3237:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3224:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3224:23:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3214:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3099:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3110:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3122:6:1",
"type": ""
}
],
"src": "3063:190:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3309:426:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3319:26:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3339:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3333:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3333:12:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3323:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3361:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3366:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3354:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3354:19:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3382:12:1",
"value": {
"name": "end",
"nodeType": "YulIdentifier",
"src": "3391:3:1"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3386:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3455:110:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3469:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3479:4:1",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3473:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3511:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3516:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3507:11:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3520:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3503:20:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3539:5:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3546:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3535:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3535:13:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3550:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3531:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3531:22:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3525:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3525:29:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3496:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3496:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "3496:59:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3414:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3417:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3411:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3411:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3425:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3427:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3436:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3439:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3432:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3427:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3407:3:1",
"statements": []
},
"src": "3403:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3599:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3628:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3633:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3624:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3624:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3642:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3620:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3620:27:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3649:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3613:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3613:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "3613:40:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3580:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3583:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3577:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3577:13:1"
},
"nodeType": "YulIf",
"src": "3574:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3672:57:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3687:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3700:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3708:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3696:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3696:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3717:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3713:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3692:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3683:39:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3724:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3679:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3679:50:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3672:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3286:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3293:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3301:3:1",
"type": ""
}
],
"src": "3258:477:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3841:102:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3851:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3863:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3874:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3859:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3859:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3851:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3893:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3908:6:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3929:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3920:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3920:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3933:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3916:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3904:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3904:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3886:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3886:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "3886:51:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3810:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3821:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3832:4:1",
"type": ""
}
],
"src": "3740:203:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4151:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4161:29:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4179:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4184:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4175:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4188:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4171:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4171:19:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4165:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4206:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4221:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4229:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4217:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4217:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4199:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4199:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "4199:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4253:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4264:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4249:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4249:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4273:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4281:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4269:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4269:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4242:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "4242:43:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4305:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4316:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4301:18:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4321:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4294:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4294:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "4294:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4348:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4359:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4344:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4364:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4337:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4337:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "4337:31:1"
},
{
"nodeType": "YulAssignment",
"src": "4377:55:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4404:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4427:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4412:19:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "4385:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4385:47:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4377:4:1"
}
]
}
]
},
"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",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4096:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4107:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4115:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4123:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4131:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4142:4:1",
"type": ""
}
],
"src": "3948:490:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4538:92:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4548:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4560:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4571:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4556:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4548:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4590:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4615:6:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4608:14:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4601:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4583:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4583:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "4583:41:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4507:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4518:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4529:4:1",
"type": ""
}
],
"src": "4443:187:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4756:100:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4773:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4784:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4766:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4766:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "4766:21:1"
},
{
"nodeType": "YulAssignment",
"src": "4796:54:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4823:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4835:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4846:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4831:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4831:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "4804:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4804:46:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4796:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4725:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4736:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4747:4:1",
"type": ""
}
],
"src": "4635:221:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4962:76:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4972:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4984:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4995:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4980:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4980:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4972:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5014:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5025:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5007:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5007:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "5007:25:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4931:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4942:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4953:4:1",
"type": ""
}
],
"src": "4861:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5091:80:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5118:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5120:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5120:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5120:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5107:1:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5114:1:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5110:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5110:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5104:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5104:13:1"
},
"nodeType": "YulIf",
"src": "5101:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5149:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5160:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5163:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5156:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5156:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5149:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5074:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5077:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5083:3:1",
"type": ""
}
],
"src": "5043:128:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5225:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5247:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5249:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5249:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5249:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5241:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5244:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5238:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5238:8:1"
},
"nodeType": "YulIf",
"src": "5235:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5278:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5290:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5293:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5286:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5286:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5278:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5207:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5210:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5216:4:1",
"type": ""
}
],
"src": "5176:125:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5338:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5355:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5362:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5367:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5358:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5358:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5348:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5348:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "5348:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5395:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5398:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5388:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5388:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5388:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5419:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5422:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5412:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5412:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5412:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5306:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5484:87:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5549:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5558:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5561:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5551:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5551:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5551:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5507:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5518:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5529:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5534:10:1",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5525:20:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5514:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5514:32:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5504:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5504:43:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5497:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5497:51:1"
},
"nodeType": "YulIf",
"src": "5494:2:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5473:5:1",
"type": ""
}
],
"src": "5438:133:1"
}
]
},
"contents": "{\n { }\n function abi_decode_t_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value2, value2) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 128) { revert(value4, value4) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(value4, value4) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value4, value4) }\n let length := calldataload(_2)\n if gt(length, _1) { revert(value4, value4) }\n if gt(add(add(_2, length), 32), dataEnd) { revert(value4, value4) }\n value3 := add(_2, 32)\n value4 := length\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(value1, value1) }\n value1 := value\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := mload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_t_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n let i := end\n for { } lt(i, length) { i := add(i, 0x20) }\n {\n let _1 := 0x20\n mstore(add(add(pos, i), _1), mload(add(add(value, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(pos, length), 0x20), end)\n }\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_t_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_t_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function validator_revert_t_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061009e5760003560e01c80636352211e116100665780636352211e1461012757806370a082311461013a578063a22cb4651461015a578063b88d4fde1461016d578063e985e9c5146101805761009e565b806301ffc9a7146100a3578063081812fc146100cc578063095ea7b3146100ec57806323b872dd1461010157806342842e0e14610114575b600080fd5b6100b66100b1366004610dd7565b610193565b6040516100c39190610ec3565b60405180910390f35b6100df6100da366004610e0f565b6101b6565b6040516100c39190610e72565b6100ff6100fa366004610dae565b610238565b005b6100ff61010f366004610ca3565b6103da565b6100ff610122366004610ca3565b610595565b6100df610135366004610e0f565b6105b5565b61014d610148366004610c50565b61060d565b6040516100c39190610ee1565b6100ff610168366004610d74565b610664565b6100ff61017b366004610cde565b6106d3565b6100b661018e366004610c71565b61071c565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b03166102165760405162461bcd60e51b815260040161020d9190610ece565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b03163381148061028357506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906102c05760405162461bcd60e51b815260040161020d9190610ece565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b031661031a5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b039081169190871682141561037a5760405162461bcd60e51b815260040161020d9190610ece565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061041857506000828152600260205260409020546001600160a01b031633145b8061044657506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906104835760405162461bcd60e51b815260040161020d9190610ece565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166104dd5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b0390811691908816821461053c5760405162461bcd60e51b815260040161020d9190610ece565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166105815760405162461bcd60e51b815260040161020d9190610ece565b5061058c868661074a565b50505050505050565b6105b0838383604051806020016040528060008152506107c5565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816102325760405162461bcd60e51b815260040161020d9190610ece565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166106545760405162461bcd60e51b815260040161020d9190610ece565b5061065e82610a73565b92915050565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906106c7908590610ec3565b60405180910390a35050565b61071585858585858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506107c592505050565b5050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000818152600160205260409020546001600160a01b031661076b82610a8e565b6107758183610aac565b61077f8383610b55565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b03163381148061080357506000828152600260205260409020546001600160a01b031633145b8061083157506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b8152509061086e5760405162461bcd60e51b815260040161020d9190610ece565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b03166108c85760405162461bcd60e51b815260040161020d9190610ece565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b039081169190891682146109275760405162461bcd60e51b815260040161020d9190610ece565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b03881661096c5760405162461bcd60e51b815260040161020d9190610ece565b50610977878761074a565b610989876001600160a01b0316610bfd565b15610a6957604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a02906109c39033908d908c908c90600401610e86565b602060405180830381600087803b1580156109dd57600080fd5b505af11580156109f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a159190610df3565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610a665760405162461bcd60e51b815260040161020d9190610ece565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03848116911614610b075760405162461bcd60e51b815260040161020d9190610ece565b506001600160a01b0382166000908152600360205260408120805460019290610b31908490610f02565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610bac5760405162461bcd60e51b815260040161020d9190610ece565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b038816908117909155845260039091528220805491929091610bf4908490610eea565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610c315750808214155b949350505050565b80356001600160a01b03811681146101b157600080fd5b600060208284031215610c61578081fd5b610c6a82610c39565b9392505050565b60008060408385031215610c83578081fd5b610c8c83610c39565b9150610c9a60208401610c39565b90509250929050565b600080600060608486031215610cb7578081fd5b610cc084610c39565b9250610cce60208501610c39565b9150604084013590509250925092565b600080600080600060808688031215610cf5578081fd5b610cfe86610c39565b9450610d0c60208701610c39565b935060408601359250606086013567ffffffffffffffff80821115610d2f578283fd5b818801915088601f830112610d42578283fd5b813581811115610d50578384fd5b896020828501011115610d61578384fd5b9699959850939650602001949392505050565b60008060408385031215610d86578182fd5b610d8f83610c39565b915060208301358015158114610da3578182fd5b809150509250929050565b60008060408385031215610dc0578182fd5b610dc983610c39565b946020939093013593505050565b600060208284031215610de8578081fd5b8135610c6a81610f2f565b600060208284031215610e04578081fd5b8151610c6a81610f2f565b600060208284031215610e20578081fd5b5035919050565b60008151808452815b81811015610e4c57602081850181015186830182015201610e30565b81811115610e5d5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090610eb990830184610e27565b9695505050505050565b901515815260200190565b600060208252610c6a6020830184610e27565b90815260200190565b60008219821115610efd57610efd610f19565b500190565b600082821015610f1457610f14610f19565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160e01b031981168114610f4557600080fd5b5056fea26469706673582212201b72b57ab4e523bff7276736f5d2abfd27d47a2b0cc8b9ed40247d0a71c698d864736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x13A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x180 JUMPI PUSH2 0x9E JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0xDD7 JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xE72 JUMP JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x238 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0xCA3 JUMP JUMPDEST PUSH2 0x3DA JUMP JUMPDEST PUSH2 0xFF PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0xCA3 JUMP JUMPDEST PUSH2 0x595 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0xE0F JUMP JUMPDEST PUSH2 0x5B5 JUMP JUMPDEST PUSH2 0x14D PUSH2 0x148 CALLDATASIZE PUSH1 0x4 PUSH2 0xC50 JUMP JUMPDEST PUSH2 0x60D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xD74 JUMP JUMPDEST PUSH2 0x664 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0xCDE JUMP JUMPDEST PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x216 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x283 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x2C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x31A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x37A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x418 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x446 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x483 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x53C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x581 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x58C DUP7 DUP7 PUSH2 0x74A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5B0 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7C5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x232 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x654 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x65E DUP3 PUSH2 0xA73 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x6C7 SWAP1 DUP6 SWAP1 PUSH2 0xEC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x715 DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x7C5 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x76B DUP3 PUSH2 0xA8E JUMP JUMPDEST PUSH2 0x775 DUP2 DUP4 PUSH2 0xAAC JUMP JUMPDEST PUSH2 0x77F DUP4 DUP4 PUSH2 0xB55 JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x803 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x831 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8C8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0x927 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0x96C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH2 0x977 DUP8 DUP8 PUSH2 0x74A JUMP JUMPDEST PUSH2 0x989 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBFD JUMP JUMPDEST ISZERO PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x9C3 SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0xE86 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA15 SWAP2 SWAP1 PUSH2 0xDF3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xA66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0xB07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xB31 SWAP1 DUP5 SWAP1 PUSH2 0xF02 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xBAC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xECE JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0xBF4 SWAP1 DUP5 SWAP1 PUSH2 0xEEA JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0xC31 JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC61 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xC6A DUP3 PUSH2 0xC39 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC83 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xC8C DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH2 0xC9A PUSH1 0x20 DUP5 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xCB7 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xCC0 DUP5 PUSH2 0xC39 JUMP JUMPDEST SWAP3 POP PUSH2 0xCCE PUSH1 0x20 DUP6 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xCF5 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xCFE DUP7 PUSH2 0xC39 JUMP JUMPDEST SWAP5 POP PUSH2 0xD0C PUSH1 0x20 DUP8 ADD PUSH2 0xC39 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD2F JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD42 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xD50 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD61 JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD86 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xD8F DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xDA3 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC0 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xDC9 DUP4 PUSH2 0xC39 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDE8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xC6A DUP2 PUSH2 0xF2F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE04 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xC6A DUP2 PUSH2 0xF2F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE20 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE4C JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xE30 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xE5D JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xEB9 SWAP1 DUP4 ADD DUP5 PUSH2 0xE27 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0xC6A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE27 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xEFD JUMPI PUSH2 0xEFD PUSH2 0xF19 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xF14 JUMPI PUSH2 0xF14 PUSH2 0xF19 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xF45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL PUSH19 0xB57AB4E523BFF7276736F5D2ABFD27D47A2B0C 0xC8 0xB9 0xED BLOCKHASH 0x24 PUSH30 0xA71C698D864736F6C634300080000330000000000000000000000000000 ",
"sourceMap": "13277:12537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:163;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20917:173;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18778:338::-;;;;;;:::i;:::-;;:::i;:::-;;18028;;;;;;:::i;:::-;;:::i;17294:170::-;;;;;;:::i;:::-;;:::i;20483:198::-;;;;;;:::i;:::-;;:::i;20027:194::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19518:223::-;;;;;;:::i;:::-;;:::i;16695:199::-;;;;;;:::i;:::-;;:::i;21351:182::-;;;;;;:::i;:::-;;:::i;5450:163::-;-1:-1:-1;;;;;;5575:33:0;;5554:4;5575:33;;;;;;;;;;;;;5450:163;;;;:::o;20917:173::-;21039:7;15653:19;;;:9;:19;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;21016:8;;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;21063:22:0::1;::::0;;;:12:::1;:22;::::0;;;;;-1:-1:-1;;;;;21063:22:0::1;::::0;-1:-1:-1;15708:1:0::1;20917:173:::0;;;;:::o;18778:338::-;14871:18;14892:19;;;:9;:19;;;;;;18885:8;;-1:-1:-1;;;;;14892:19:0;14946:10;14932:24;;;:68;;-1:-1:-1;;;;;;14960:28:0;;;;;;:16;:28;;;;;;;;14989:10;14960:40;;;;;;;;;;14932:68;15008:21;;;;;;;;;;;;;-1:-1:-1;;;15008:21:0;;;14917:118;;;;;-1:-1:-1;;;14917:118:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18912:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18930:18:0::2;18951:19:::0;;;:9:::2;:19;::::0;;;;;;;;;19009:8;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;19009:8:0;;::::2;::::0;;;;-1:-1:-1;;;;;18951:19:0;;::::2;::::0;19009:8;18984:23;::::2;::::0;::::2;;18976:42;;;;-1:-1:-1::0;;;18976:42:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;19025:22:0::2;::::0;;;:12:::2;:22;::::0;;;;;:34;;-1:-1:-1;;;;;;19025:34:0::2;-1:-1:-1::0;;;;;19025:34:0;;::::2;::::0;;::::2;::::0;;;19070:41;;19025:22;;19070:41;;::::2;::::0;::::2;::::0;::::2;15708:1;15041::::1;18778:338:::0;;;;:::o;18028:::-;15235:18;15256:19;;;:9;:19;;;;;;18154:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18181:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18199:18:0::2;18220:19:::0;;;:9:::2;:19;::::0;;;;;;;;;18274:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18274:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;18220:19:0;;::::2;::::0;18274:9;18253:19;::::2;::::0;::::2;18245:39;;;;-1:-1:-1::0;;;18245:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;18317:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18317:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;18298:17:0;::::2;18290:40;;;;-1:-1:-1::0;;;18290:40:0::2;;;;;;;;:::i;:::-;;18337:24;18347:3;18352:8;18337:9;:24::i;:::-;15708:1;15466::::1;18028:338:::0;;;;;:::o;17294:170::-;17416:43;17434:5;17441:3;17446:8;17416:43;;;;;;;;;;;;:17;:43::i;:::-;17294:170;;;:::o;20483:198::-;20574:14;20607:19;;;:9;:19;;;;;;;;;;20662:13;;;;;;;;;;;-1:-1:-1;;;20662:13:0;;;;;;;-1:-1:-1;;;;;20607:19:0;;20640:20;20632:44;;;;-1:-1:-1;;;20632:44:0;;;;;;;;:::i;20027:194::-;20165:12;;;;;;;;;;;;-1:-1:-1;;;20165:12:0;;;;20118:7;;-1:-1:-1;;;;;20143:20:0;;20135:43;;;;-1:-1:-1;;;20135:43:0;;;;;;;;:::i;:::-;;20191:25;20209:6;20191:17;:25::i;:::-;20184:32;20027:194;-1:-1:-1;;20027:194:0:o;19518:223::-;19643:10;19626:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;19626:39:0;;;;;;;;;;;:51;;-1:-1:-1;;19626:51:0;;;;;;;19688:48;;19626:39;;19643:10;19688:48;;;;19626:51;;19688:48;:::i;:::-;;;;;;;;19518:223;;:::o;16695:199::-;16843:46;16861:5;16868:3;16873:8;16883:5;;16843:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16843:17:0;;-1:-1:-1;;;16843:46:0:i;:::-;16695:199;;;;;:::o;21351:182::-;-1:-1:-1;;;;;21493:24:0;;;21472:4;21493:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;21351:182::o;21716:274::-;21811:12;21826:19;;;:9;:19;;;;;;-1:-1:-1;;;;;21826:19:0;21851:24;21836:8;21851:14;:24::i;:::-;21882:30;21897:4;21903:8;21882:14;:30::i;:::-;21918:26;21930:3;21935:8;21918:11;:26::i;:::-;21976:8;21971:3;-1:-1:-1;;;;;21956:29:0;21965:4;-1:-1:-1;;;;;21956:29:0;;;;;;;;;;;21716:274;;;:::o;25011:569::-;15235:18;15256:19;;;:9;:19;;;;;;25152:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;25179:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;25197:18:0::2;25218:19:::0;;;:9:::2;:19;::::0;;;;;;;;;25272:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25272:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;25218:19:0;;::::2;::::0;25272:9;25251:19;::::2;::::0;::::2;25243:39;;;;-1:-1:-1::0;;;25243:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;25315:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25315:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;25296:17:0;::::2;25288:40;;;;-1:-1:-1::0;;;25288:40:0::2;;;;;;;;:::i;:::-;;25335:24;25345:3;25350:8;25335:9;:24::i;:::-;25370:16;:3;-1:-1:-1::0;;;;;25370:14:0::2;;:16::i;:::-;25366:210;;;25416:77;::::0;-1:-1:-1;;;25416:77:0;;25400:13:::2;::::0;-1:-1:-1;;;;;25416:41:0;::::2;::::0;::::2;::::0;:77:::2;::::0;25458:10:::2;::::0;25470:5;;25477:8;;25487:5;;25416:77:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25545:23;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25545:23:0::2;::::0;::::2;::::0;25400:93;;-1:-1:-1;;;;;;;25509:34:0;::::2;-1:-1:-1::0;;;25509:34:0::2;25501:68;;;;-1:-1:-1::0;;;25501:68:0::2;;;;;;;;:::i;:::-;;25366:210;;15708:1;15466::::1;25011:569:::0;;;;;;:::o;24588:154::-;-1:-1:-1;;;;;24710:27:0;24686:7;24710:27;;;:19;:27;;;;;;;24588:154::o;25707:104::-;25784:22;;;;:12;:22;;;;;25777:29;;-1:-1:-1;;;;;;25777:29:0;;;25707:104::o;23586:224::-;23696:19;;;;:9;:19;;;;;;;;;;23726:9;;;;;;;;;;;-1:-1:-1;;;23726:9:0;;;;;;;-1:-1:-1;;;;;23696:28:0;;;:19;;:28;23688:48;;;;-1:-1:-1;;;23688:48:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23742:26:0;;;;;;:19;:26;;;;;:31;;23772:1;;23742:26;:31;;23772:1;;23742:31;:::i;:::-;;;;-1:-1:-1;;23786:19:0;;;;:9;:19;;;;;23779:26;;-1:-1:-1;;;;;;23779:26:0;;;-1:-1:-1;23586:224:0:o;24069:231::-;24205:1;24174:19;;;:9;:19;;;;;;;;;;24209:18;;;;;;;;;;;-1:-1:-1;;;24209:18:0;;;;;;;-1:-1:-1;;;;;24174:19:0;:33;24166:62;;;;-1:-1:-1;;;24166:62:0;;;;;;;;:::i;:::-;-1:-1:-1;24235:19:0;;;;:9;:19;;;;;;;;:25;;-1:-1:-1;;;;;;24235:25:0;-1:-1:-1;;;;;24235:25:0;;;;;;;;24266:24;;:19;:24;;;;;:29;;24235:9;;24266:24;;:29;;24235:9;;24266:29;:::i;:::-;;;;-1:-1:-1;;;;24069:231:0:o;3322:762::-;3400:17;3971:18;;3876:66;4036:15;;;;;:42;;;4067:11;4055:8;:23;;4036:42;4020:59;3322:762;-1:-1:-1;;;;3322:762:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:862::-;;;;;;1205:3;1193:9;1184:7;1180:23;1176:33;1173:2;;;1227:6;1219;1212:22;1173:2;1255:31;1276:9;1255:31;:::i;:::-;1245:41;;1305:40;1341:2;1330:9;1326:18;1305:40;:::i;:::-;1295:50;;1392:2;1381:9;1377:18;1364:32;1354:42;;1447:2;1436:9;1432:18;1419:32;1470:18;1511:2;1503:6;1500:14;1497:2;;;1532:6;1524;1517:22;1497:2;1575:6;1564:9;1560:22;1550:32;;1620:7;1613:4;1609:2;1605:13;1601:27;1591:2;;1647:6;1639;1632:22;1591:2;1692;1679:16;1718:2;1710:6;1707:14;1704:2;;;1739:6;1731;1724:22;1704:2;1789:7;1784:2;1775:6;1771:2;1767:15;1763:24;1760:37;1757:2;;;1815:6;1807;1800:22;1757:2;1163:722;;;;-1:-1:-1;1163:722:1;;-1:-1:-1;1851:2:1;1843:11;;1873:6;1163:722;-1:-1:-1;;;1163:722:1:o;1890:369::-;;;2016:2;2004:9;1995:7;1991:23;1987:32;1984:2;;;2037:6;2029;2022:22;1984:2;2065:31;2086:9;2065:31;:::i;:::-;2055:41;;2146:2;2135:9;2131:18;2118:32;2193:5;2186:13;2179:21;2172:5;2169:32;2159:2;;2220:6;2212;2205:22;2159:2;2248:5;2238:15;;;1974:285;;;;;:::o;2264:266::-;;;2393:2;2381:9;2372:7;2368:23;2364:32;2361:2;;;2414:6;2406;2399:22;2361:2;2442:31;2463:9;2442:31;:::i;:::-;2432:41;2520:2;2505:18;;;;2492:32;;-1:-1:-1;;;2351:179:1:o;2535:257::-;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2667:6;2659;2652:22;2614:2;2711:9;2698:23;2730:32;2756:5;2730:32;:::i;2797:261::-;;2919:2;2907:9;2898:7;2894:23;2890:32;2887:2;;;2940:6;2932;2925:22;2887:2;2977:9;2971:16;2996:32;3022:5;2996:32;:::i;3063:190::-;;3175:2;3163:9;3154:7;3150:23;3146:32;3143:2;;;3196:6;3188;3181:22;3143:2;-1:-1:-1;3224:23:1;;3133:120;-1:-1:-1;3133:120:1:o;3258:477::-;;3339:5;3333:12;3366:6;3361:3;3354:19;3391:3;3403:162;3417:6;3414:1;3411:13;3403:162;;;3479:4;3535:13;;;3531:22;;3525:29;3507:11;;;3503:20;;3496:59;3432:12;3403:162;;;3583:6;3580:1;3577:13;3574:2;;;3649:3;3642:4;3633:6;3628:3;3624:16;3620:27;3613:40;3574:2;-1:-1:-1;3717:2:1;3696:15;-1:-1:-1;;3692:29:1;3683:39;;;;3724:4;3679:50;;3309:426;-1:-1:-1;;3309:426:1:o;3740:203::-;-1:-1:-1;;;;;3904:32:1;;;;3886:51;;3874:2;3859:18;;3841:102::o;3948:490::-;-1:-1:-1;;;;;4217:15:1;;;4199:34;;4269:15;;4264:2;4249:18;;4242:43;4316:2;4301:18;;4294:34;;;4364:3;4359:2;4344:18;;4337:31;;;3948:490;;4385:47;;4412:19;;4404:6;4385:47;:::i;:::-;4377:55;4151:287;-1:-1:-1;;;;;;4151:287:1:o;4443:187::-;4608:14;;4601:22;4583:41;;4571:2;4556:18;;4538:92::o;4635:221::-;;4784:2;4773:9;4766:21;4804:46;4846:2;4835:9;4831:18;4823:6;4804:46;:::i;4861:177::-;5007:25;;;4995:2;4980:18;;4962:76::o;5043:128::-;;5114:1;5110:6;5107:1;5104:13;5101:2;;;5120:18;;:::i;:::-;-1:-1:-1;5156:9:1;;5091:80::o;5176:125::-;;5244:1;5241;5238:8;5235:2;;;5249:18;;:::i;:::-;-1:-1:-1;5286:9:1;;5225:76::o;5306:127::-;5367:10;5362:3;5358:20;5355:1;5348:31;5398:4;5395:1;5388:15;5422:4;5419:1;5412:15;5438:133;-1:-1:-1;;;;;;5514:32:1;;5504:43;;5494:2;;5561:1;5558;5551:12;5494:2;5484:87;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "793200",
"executionCost": "42518",
"totalCost": "835718"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "infinite",
"getApproved(uint256)": "infinite",
"isApprovedForAll(address,address)": "infinite",
"ownerOf(uint256)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "23262",
"supportsInterface(bytes4)": "1295",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_addNFToken(address,uint256)": "infinite",
"_burn(uint256)": "infinite",
"_clearApproval(uint256)": "20911",
"_getOwnerNFTCount(address)": "905",
"_mint(address,uint256)": "infinite",
"_removeNFToken(address,uint256)": "infinite",
"_safeTransferFrom(address,address,uint256,bytes memory)": "infinite",
"_transfer(address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "_approved",
"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": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": [
{
"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"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "_approved",
"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": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": [
{
"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 ERC-721 non-fungible token standard.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Set or reaffirm the approved address for an NFT. This function can be changed to payable.",
"params": {
"_approved": "Address to be approved for the given NFT ID.",
"_tokenId": "ID of the token to be approved."
}
},
"balanceOf(address)": {
"details": "Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are considered invalid, and this function throws for queries about the zero address.",
"params": {
"_owner": "Address for whom to query the balance."
},
"returns": {
"_0": "Balance of _owner."
}
},
"constructor": {
"details": "Contract constructor."
},
"getApproved(uint256)": {
"details": "Get the approved address for a single NFT.",
"params": {
"_tokenId": "ID of the NFT to query the approval of."
},
"returns": {
"_0": "Address that _tokenId is approved for."
}
},
"isApprovedForAll(address,address)": {
"details": "Checks if `_operator` is an approved operator for `_owner`.",
"params": {
"_operator": "The address that acts on behalf of the owner.",
"_owner": "The address that owns the NFTs."
},
"returns": {
"_0": "True if approved for all, false otherwise."
}
},
"ownerOf(uint256)": {
"details": "Returns the address of the owner of the NFT. NFTs assigned to the zero address are considered invalid, and queries about them do throw.",
"params": {
"_tokenId": "The identifier for an NFT."
},
"returns": {
"_owner": "Address of _tokenId owner."
}
},
"safeTransferFrom(address,address,uint256)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_data": "Additional data with no specified format, sent in call to `_to`.",
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"setApprovalForAll(address,bool)": {
"details": "Enables or disables approval for a third party (\"operator\") to manage all of `msg.sender`'s assets. It also emits the ApprovalForAll event.",
"params": {
"_approved": "True if the operators is approved, false to revoke approval.",
"_operator": "Address to add to the set of authorized operators."
}
},
"supportsInterface(bytes4)": {
"details": "Function to check which interfaces are suported by this contract.",
"params": {
"_interfaceID": "Id of the interface."
},
"returns": {
"_0": "True if _interfaceID is supported, false otherwise."
}
},
"transferFrom(address,address,uint256)": {
"details": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
}
},
"stateVariables": {
"MAGIC_ON_ERC721_RECEIVED": {
"details": "Magic value of a smart contract that can receive NFT. Equal to: bytes4(keccak256(\"onERC721Received(address,address,uint256,bytes)\"))."
},
"ZERO_ADDRESS": {
"details": "List of revert message codes. Implementing dApp should handle showing the correct message. Based on 0xcert framework error codes."
},
"idToApproval": {
"details": "Mapping from NFT ID to approved address."
},
"idToOwner": {
"details": "A mapping from NFT ID to the address that owns it."
},
"ownerToNFTokenCount": {
"details": "Mapping from owner address to count of their tokens."
},
"ownerToOperators": {
"details": "Mapping from owner address to mapping of operator addresses."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"approve(address,uint256)": {
"notice": "The zero address indicates there is no approved address. Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner."
},
"getApproved(uint256)": {
"notice": "Throws if `_tokenId` is not a valid NFT."
},
"safeTransferFrom(address,address,uint256)": {
"notice": "This works identically to the other function with an extra data parameter, except this function just sets data to \"\"."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"notice": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this function checks if `_to` is a smart contract (code size > 0). If so, it calls `onERC721Received` on `_to` and throws if the return value is not `bytes4(keccak256(\"onERC721Received(address,uint256,bytes)\"))`."
},
"setApprovalForAll(address,bool)": {
"notice": "This works even if sender doesn't own any tokens at the time."
},
"transferFrom(address,address,uint256)": {
"notice": "The caller is responsible to confirm that `_to` is capable of receiving NFTs or else they may be permanently lost."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "NFToken"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600060208190527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1990811660019081179092557ff7815fccbf112960a73756e185887fedcb9fc64ca0a16cc5923b7960ed7808008054821683179055635b5e139f60e01b9092527f9562381dfbc2d8b8b66e765249f330164b73e329e5f01670660643571d1974df80549092161790556111bc806100b56000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101a8578063b88d4fde146101bb578063c87b56dd146101ce578063e985e9c5146101e1576100cf565b80636352211e1461016d57806370a082311461018057806395d89b41146101a0576100cf565b806301ffc9a7146100d457806306fdde03146100fd578063081812fc14610112578063095ea7b31461013257806323b872dd1461014757806342842e0e1461015a575b600080fd5b6100e76100e2366004610fe0565b6101f4565b6040516100f491906110cc565b60405180910390f35b610105610217565b6040516100f491906110d7565b610125610120366004611018565b6102a9565b6040516100f4919061107b565b610145610140366004610fb7565b61032b565b005b610145610155366004610eac565b6104cd565b610145610168366004610eac565b610688565b61012561017b366004611018565b6106a8565b61019361018e366004610e60565b610700565b6040516100f491906110ea565b610105610757565b6101456101b6366004610f7d565b610766565b6101456101c9366004610ee7565b6107d5565b6101056101dc366004611018565b61081e565b6100e76101ef366004610e7a565b61088a565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60606005805461022690611122565b80601f016020809104026020016040519081016040528092919081815260200182805461025290611122565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b03166103095760405162461bcd60e51b815260040161030091906110d7565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b03163381148061037657506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906103b35760405162461bcd60e51b815260040161030091906110d7565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b031661040d5760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b039081169190871682141561046d5760405162461bcd60e51b815260040161030091906110d7565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061050b57506000828152600260205260409020546001600160a01b031633145b8061053957506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906105765760405162461bcd60e51b815260040161030091906110d7565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166105d05760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b0390811691908816821461062f5760405162461bcd60e51b815260040161030091906110d7565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166106745760405162461bcd60e51b815260040161030091906110d7565b5061067f86866108b8565b50505050505050565b6106a383838360405180602001604052806000815250610933565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816103255760405162461bcd60e51b815260040161030091906110d7565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166107475760405162461bcd60e51b815260040161030091906110d7565b5061075182610be1565b92915050565b60606006805461022690611122565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906107c99085906110cc565b60405180910390a35050565b61081785858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061093392505050565b5050505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b9183019190915260609183916001600160a01b03166108795760405162461bcd60e51b815260040161030091906110d7565b5061088383610bfc565b9392505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000818152600160205260409020546001600160a01b03166108d982610c9e565b6108e38183610cbc565b6108ed8383610d65565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b03163381148061097157506000828152600260205260409020546001600160a01b031633145b8061099f57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906109dc5760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b0316610a365760405162461bcd60e51b815260040161030091906110d7565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03908116919089168214610a955760405162461bcd60e51b815260040161030091906110d7565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b038816610ada5760405162461bcd60e51b815260040161030091906110d7565b50610ae587876108b8565b610af7876001600160a01b0316610e0d565b15610bd757604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a0290610b319033908d908c908c9060040161108f565b602060405180830381600087803b158015610b4b57600080fd5b505af1158015610b5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190610ffc565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610bd45760405162461bcd60e51b815260040161030091906110d7565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b6000818152600760205260409020805460609190610c1990611122565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611122565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b50505050509050919050565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03848116911614610d175760405162461bcd60e51b815260040161030091906110d7565b506001600160a01b0382166000908152600360205260408120805460019290610d4190849061110b565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610dbc5760405162461bcd60e51b815260040161030091906110d7565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b038816908117909155845260039091528220805491929091610e049084906110f3565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610e415750808214155b949350505050565b80356001600160a01b038116811461021257600080fd5b600060208284031215610e71578081fd5b61088382610e49565b60008060408385031215610e8c578081fd5b610e9583610e49565b9150610ea360208401610e49565b90509250929050565b600080600060608486031215610ec0578081fd5b610ec984610e49565b9250610ed760208501610e49565b9150604084013590509250925092565b600080600080600060808688031215610efe578081fd5b610f0786610e49565b9450610f1560208701610e49565b935060408601359250606086013567ffffffffffffffff80821115610f38578283fd5b818801915088601f830112610f4b578283fd5b813581811115610f59578384fd5b896020828501011115610f6a578384fd5b9699959850939650602001949392505050565b60008060408385031215610f8f578182fd5b610f9883610e49565b915060208301358015158114610fac578182fd5b809150509250929050565b60008060408385031215610fc9578182fd5b610fd283610e49565b946020939093013593505050565b600060208284031215610ff1578081fd5b81356108838161116d565b60006020828403121561100d578081fd5b81516108838161116d565b600060208284031215611029578081fd5b5035919050565b60008151808452815b8181101561105557602081850181015186830182015201611039565b818111156110665782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906110c290830184611030565b9695505050505050565b901515815260200190565b6000602082526108836020830184611030565b90815260200190565b6000821982111561110657611106611157565b500190565b60008282101561111d5761111d611157565b500390565b60028104600182168061113657607f821691505b6020821081141561032557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160e01b03198116811461118357600080fd5b5056fea2646970667358221220f5ddf1de40f2ddc7778a47329cde8d3c139b2310c1f3a6f57a3355d6ed06a5d464736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH32 0x67BE87C3FF9960CA1E9CFAC5CAB2FF4747269CF9ED20C9B7306235AC35A491C5 DUP1 SLOAD PUSH1 0xFF NOT SWAP1 DUP2 AND PUSH1 0x1 SWAP1 DUP2 OR SWAP1 SWAP3 SSTORE PUSH32 0xF7815FCCBF112960A73756E185887FEDCB9FC64CA0A16CC5923B7960ED780800 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH4 0x5B5E139F PUSH1 0xE0 SHL SWAP1 SWAP3 MSTORE PUSH32 0x9562381DFBC2D8B8B66E765249F330164B73E329E5F01670660643571D1974DF DUP1 SLOAD SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x11BC DUP1 PUSH2 0xB5 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1E1 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x180 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1A0 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x15A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xFE0 JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x217 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x2A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x107B JUMP JUMPDEST PUSH2 0x145 PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0xFB7 JUMP JUMPDEST PUSH2 0x32B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x145 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xEAC JUMP JUMPDEST PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x145 PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xEAC JUMP JUMPDEST PUSH2 0x688 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xE60 JUMP JUMPDEST PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10EA JUMP JUMPDEST PUSH2 0x105 PUSH2 0x757 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xF7D JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE7 JUMP JUMPDEST PUSH2 0x7D5 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x81E JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1EF CALLDATASIZE PUSH1 0x4 PUSH2 0xE7A JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x5 DUP1 SLOAD PUSH2 0x226 SWAP1 PUSH2 0x1122 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 0x252 SWAP1 PUSH2 0x1122 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x29F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x274 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x29F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x282 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x309 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x376 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x40D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x46D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x50B JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x539 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x576 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x674 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x67F DUP7 DUP7 PUSH2 0x8B8 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6A3 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x933 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x325 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x747 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x751 DUP3 PUSH2 0xBE1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x6 DUP1 SLOAD PUSH2 0x226 SWAP1 PUSH2 0x1122 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x7C9 SWAP1 DUP6 SWAP1 PUSH2 0x10CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x817 DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x933 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP2 DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x879 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x883 DUP4 PUSH2 0xBFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8D9 DUP3 PUSH2 0xC9E JUMP JUMPDEST PUSH2 0x8E3 DUP2 DUP4 PUSH2 0xCBC JUMP JUMPDEST PUSH2 0x8ED DUP4 DUP4 PUSH2 0xD65 JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x971 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x99F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x9DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA36 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0xA95 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0xAE5 DUP8 DUP8 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0xAF7 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xE0D JUMP JUMPDEST ISZERO PUSH2 0xBD7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xB31 SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0x108F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB5F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB83 SWAP2 SWAP1 PUSH2 0xFFC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xBD4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH2 0xC19 SWAP1 PUSH2 0x1122 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 0xC45 SWAP1 PUSH2 0x1122 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC92 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC67 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC92 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xC75 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0xD17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xD41 SWAP1 DUP5 SWAP1 PUSH2 0x110B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xDBC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0xE04 SWAP1 DUP5 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0xE41 JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x212 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE71 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x883 DUP3 PUSH2 0xE49 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE8C JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xE95 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH2 0xEA3 PUSH1 0x20 DUP5 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEC0 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xEC9 DUP5 PUSH2 0xE49 JUMP JUMPDEST SWAP3 POP PUSH2 0xED7 PUSH1 0x20 DUP6 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xEFE JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xF07 DUP7 PUSH2 0xE49 JUMP JUMPDEST SWAP5 POP PUSH2 0xF15 PUSH1 0x20 DUP8 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xF38 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF4B JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xF59 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xF6A JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF8F JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xF98 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFAC JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFC9 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xFD2 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFF1 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x883 DUP2 PUSH2 0x116D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100D JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x883 DUP2 PUSH2 0x116D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1029 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1055 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1039 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1066 JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x10C2 SWAP1 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x883 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1106 JUMPI PUSH2 0x1106 PUSH2 0x1157 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x111D JUMPI PUSH2 0x111D PUSH2 0x1157 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1136 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x325 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0xDD CALL 0xDE BLOCKHASH CALLCODE 0xDD 0xC7 PUSH24 0x8A47329CDE8D3C139B2310C1F3A6F57A3355D6ED06A5D464 PUSH20 0x6F6C634300080000330000000000000000000000 ",
"sourceMap": "26035:2793:0:-:0;;;26517:83;;;;;;;;;-1:-1:-1;5194:19:0;:31;;;;;:38;;-1:-1:-1;;5194:38:0;;;5228:4;5194:38;;;;;;15784:31;:38;;;;;;;;-1:-1:-1;;;26539:31:0;;;;:38;;;;;;;;26035:2793;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5958:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "65:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "75:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "97:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "84:12:1"
},
"nodeType": "YulFunctionCall",
"src": "84:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "75:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "167:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "179:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "169:6:1"
},
"nodeType": "YulFunctionCall",
"src": "169:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "169:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "126:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "137:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "148:3:1"
},
"nodeType": "YulFunctionCall",
"src": "148:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "161:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "144:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "133:3:1"
},
"nodeType": "YulFunctionCall",
"src": "133:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "123:2:1"
},
"nodeType": "YulFunctionCall",
"src": "123:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "116:6:1"
},
"nodeType": "YulFunctionCall",
"src": "116:50:1"
},
"nodeType": "YulIf",
"src": "113:2:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "44:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "55:5:1",
"type": ""
}
],
"src": "14:175:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "264:128:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "310:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "319:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "327:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "312:6:1"
},
"nodeType": "YulFunctionCall",
"src": "312:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "312:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "285:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "294:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "281:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "277:3:1"
},
"nodeType": "YulFunctionCall",
"src": "277:32:1"
},
"nodeType": "YulIf",
"src": "274:2:1"
},
{
"nodeType": "YulAssignment",
"src": "345:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "376:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "355:20:1"
},
"nodeType": "YulFunctionCall",
"src": "355:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "345:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "230:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "241:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "253:6:1",
"type": ""
}
],
"src": "194:198:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "484:187:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "530:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "539:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "547:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "532:6:1"
},
"nodeType": "YulFunctionCall",
"src": "532:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "532:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "505:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "501:3:1"
},
"nodeType": "YulFunctionCall",
"src": "501:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "497:3:1"
},
"nodeType": "YulFunctionCall",
"src": "497:32:1"
},
"nodeType": "YulIf",
"src": "494:2:1"
},
{
"nodeType": "YulAssignment",
"src": "565:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "596:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "575:20:1"
},
"nodeType": "YulFunctionCall",
"src": "575:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "565:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "615:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "650:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "661:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "646:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "625:20:1"
},
"nodeType": "YulFunctionCall",
"src": "625:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "615:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "442:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "453:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "465:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "473:6:1",
"type": ""
}
],
"src": "397:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "780:238:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "826:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "835:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "843:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "828:6:1"
},
"nodeType": "YulFunctionCall",
"src": "828:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "828:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "801:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "810:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "797:3:1"
},
"nodeType": "YulFunctionCall",
"src": "797:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "822:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "793:3:1"
},
"nodeType": "YulFunctionCall",
"src": "793:32:1"
},
"nodeType": "YulIf",
"src": "790:2:1"
},
{
"nodeType": "YulAssignment",
"src": "861:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "892:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "871:20:1"
},
"nodeType": "YulFunctionCall",
"src": "871:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "861:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "911:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "946:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "957:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "942:3:1"
},
"nodeType": "YulFunctionCall",
"src": "942:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "921:20:1"
},
"nodeType": "YulFunctionCall",
"src": "921:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "911:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "970:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "997:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1008:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "993:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "980:12:1"
},
"nodeType": "YulFunctionCall",
"src": "980:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "970:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "730:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "741:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "753:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "761:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "769:6:1",
"type": ""
}
],
"src": "676:342:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1163:722:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1210:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1219:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1227:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1212:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1212:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1184:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1193:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1180:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1205:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1176:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1176:33:1"
},
"nodeType": "YulIf",
"src": "1173:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1245:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1276:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1255:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1255:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1245:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1295:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1330:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1326:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1326:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1305:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1295:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1354:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1381:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1392:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1377:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1364:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1364:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1354:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1405:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1436:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1447:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1432:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1419:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1419:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1409:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1460:28:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1470:18:1",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1464:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1515:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1524:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1532:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1517:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1517:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1517:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1503:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1511:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1500:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1500:14:1"
},
"nodeType": "YulIf",
"src": "1497:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1550:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1564:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1575:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1560:22:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "1554:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1630:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1639:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1647:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1632:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1632:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1632:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1609:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1613:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1605:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1605:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1620:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1601:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1601:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1594:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1594:35:1"
},
"nodeType": "YulIf",
"src": "1591:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1665:30:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1692:2:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1679:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1679:16:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1669:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1722:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1731:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1739:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1724:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1724:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1724:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1710:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1718:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1707:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1707:14:1"
},
"nodeType": "YulIf",
"src": "1704:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1798:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1807:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1815:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1800:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1800:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1800:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1771:2:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1775:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1767:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1767:15:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1763:24:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1789:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1760:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1760:37:1"
},
"nodeType": "YulIf",
"src": "1757:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1833:21:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1847:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1851:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1843:11:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1833:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:16:1",
"value": {
"name": "length",
"nodeType": "YulIdentifier",
"src": "1873:6:1"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1863:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1097:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1108:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1120:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1128:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1136:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1144:6:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1152:6:1",
"type": ""
}
],
"src": "1023:862:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1974:285:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2020:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2037:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2022:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2022:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2022:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1995:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2004:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1991:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1991:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2016:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1987:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1987:32:1"
},
"nodeType": "YulIf",
"src": "1984:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2055:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2086:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2065:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2065:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2055:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2105:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2135:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2146:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2131:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2131:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2118:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2118:32:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2109:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2203:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2212:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2220:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2205:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2205:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2205:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2172:5:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2193:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2186:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2186:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2179:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2179:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2169:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2169:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2162:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2162:40:1"
},
"nodeType": "YulIf",
"src": "2159:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2238:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2248:5:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2238:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1932:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1943:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1955:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1963:6:1",
"type": ""
}
],
"src": "1890:369:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2351:179:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2397:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2406:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2414:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2399:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2399:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2372:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2381:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2368:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2368:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2393:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2364:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2364:32:1"
},
"nodeType": "YulIf",
"src": "2361:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2432:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2463:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2442:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2442:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2432:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2482:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2509:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2520:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2505:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2492:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2492:32:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2482:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2309:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2320:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2332:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2340:6:1",
"type": ""
}
],
"src": "2264:266:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:188:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2650:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2659:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2667:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2652:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2652:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2625:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2634:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2621:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2617:32:1"
},
"nodeType": "YulIf",
"src": "2614:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2685:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2711:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2698:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2698:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2689:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2756:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2730:25:1"
},
"nodeType": "YulFunctionCall",
"src": "2730:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "2730:32:1"
},
{
"nodeType": "YulAssignment",
"src": "2771:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2781:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2771:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2570:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2581:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2593:6:1",
"type": ""
}
],
"src": "2535:257:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2877:181:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2923:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2932:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2940:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2925:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2925:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2925:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2898:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2907:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2894:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2919:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2890:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2890:32:1"
},
"nodeType": "YulIf",
"src": "2887:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2958:29:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2977:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2971:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2971:16:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2962:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3022:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2996:25:1"
},
"nodeType": "YulFunctionCall",
"src": "2996:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "2996:32:1"
},
{
"nodeType": "YulAssignment",
"src": "3037:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3047:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3037:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2843:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2854:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2866:6:1",
"type": ""
}
],
"src": "2797:261:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3133:120:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3179:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3188:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3196:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3181:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3181:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3181:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3154:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3163:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3175:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3146:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3146:32:1"
},
"nodeType": "YulIf",
"src": "3143:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3214:33:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3237:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3224:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3224:23:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3214:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3099:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3110:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3122:6:1",
"type": ""
}
],
"src": "3063:190:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3309:426:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3319:26:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3339:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3333:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3333:12:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3323:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3361:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3366:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3354:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3354:19:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3382:12:1",
"value": {
"name": "end",
"nodeType": "YulIdentifier",
"src": "3391:3:1"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3386:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3455:110:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3469:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3479:4:1",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3473:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3511:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3516:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3507:11:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3520:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3503:20:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3539:5:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3546:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3535:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3535:13:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3550:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3531:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3531:22:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3525:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3525:29:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3496:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3496:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "3496:59:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3414:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3417:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3411:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3411:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3425:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3427:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3436:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3439:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3432:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3427:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3407:3:1",
"statements": []
},
"src": "3403:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3599:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3628:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3633:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3624:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3624:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3642:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3620:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3620:27:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3649:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3613:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3613:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "3613:40:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3580:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3583:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3577:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3577:13:1"
},
"nodeType": "YulIf",
"src": "3574:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3672:57:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3687:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3700:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3708:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3696:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3696:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3717:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3713:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3692:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3683:39:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3724:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3679:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3679:50:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3672:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3286:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3293:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3301:3:1",
"type": ""
}
],
"src": "3258:477:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3841:102:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3851:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3863:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3874:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3859:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3859:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3851:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3893:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3908:6:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3929:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3920:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3920:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3933:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3916:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3904:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3904:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3886:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3886:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "3886:51:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3810:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3821:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3832:4:1",
"type": ""
}
],
"src": "3740:203:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4151:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4161:29:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4179:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4184:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4175:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4188:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4171:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4171:19:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4165:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4206:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4221:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4229:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4217:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4217:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4199:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4199:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "4199:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4253:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4264:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4249:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4249:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4273:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4281:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4269:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4269:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4242:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "4242:43:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4305:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4316:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4301:18:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4321:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4294:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4294:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "4294:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4348:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4359:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4344:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4364:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4337:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4337:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "4337:31:1"
},
{
"nodeType": "YulAssignment",
"src": "4377:55:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4404:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4427:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4412:19:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "4385:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4385:47:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4377:4:1"
}
]
}
]
},
"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",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4096:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4107:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4115:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4123:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4131:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4142:4:1",
"type": ""
}
],
"src": "3948:490:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4538:92:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4548:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4560:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4571:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4556:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4548:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4590:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4615:6:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4608:14:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4601:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4583:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4583:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "4583:41:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4507:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4518:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4529:4:1",
"type": ""
}
],
"src": "4443:187:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4756:100:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4773:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4784:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4766:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4766:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "4766:21:1"
},
{
"nodeType": "YulAssignment",
"src": "4796:54:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4823:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4835:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4846:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4831:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4831:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "4804:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4804:46:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4796:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4725:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4736:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4747:4:1",
"type": ""
}
],
"src": "4635:221:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4962:76:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4972:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4984:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4995:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4980:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4980:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4972:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5014:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5025:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5007:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5007:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "5007:25:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4931:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4942:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4953:4:1",
"type": ""
}
],
"src": "4861:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5091:80:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5118:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5120:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5120:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5120:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5107:1:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5114:1:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5110:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5110:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5104:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5104:13:1"
},
"nodeType": "YulIf",
"src": "5101:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5149:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5160:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5163:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5156:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5156:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5149:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5074:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5077:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5083:3:1",
"type": ""
}
],
"src": "5043:128:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5225:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5247:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5249:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5249:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5249:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5241:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5244:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5238:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5238:8:1"
},
"nodeType": "YulIf",
"src": "5235:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5278:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5290:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5293:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5286:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5286:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5278:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5207:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5210:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5216:4:1",
"type": ""
}
],
"src": "5176:125:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5361:325:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5371:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5385:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5391:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5381:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5371:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5402:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5432:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5438:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5428:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5428:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5406:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5479:31:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5481:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5495:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5503:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5491:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5491:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5481:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5459:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5452:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5452:26:1"
},
"nodeType": "YulIf",
"src": "5449:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5569:111:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5590:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5597:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5602:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5593:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5593:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5583:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5583:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "5583:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5634:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5637:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5627:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5627:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5627:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5662:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5665:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5655:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5655:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5655:15:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5525:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5548:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5556:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5545:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5545:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5522:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5522:38:1"
},
"nodeType": "YulIf",
"src": "5519:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5341:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5350:6:1",
"type": ""
}
],
"src": "5306:380:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5723:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5740:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5747:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5752:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5743:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5743:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5733:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5733:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "5733:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5780:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5783:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5773:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5773:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5773:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5807:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5797:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5797:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5797:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5691:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5869:87:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5934:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5943:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5946:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5936:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5936:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5936:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5892:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5903:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5914:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5919:10:1",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5910:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5910:20:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5899:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5899:32:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5889:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5889:43:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5882:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5882:51:1"
},
"nodeType": "YulIf",
"src": "5879:2:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5858:5:1",
"type": ""
}
],
"src": "5823:133:1"
}
]
},
"contents": "{\n { }\n function abi_decode_t_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value2, value2) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 128) { revert(value4, value4) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(value4, value4) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value4, value4) }\n let length := calldataload(_2)\n if gt(length, _1) { revert(value4, value4) }\n if gt(add(add(_2, length), 32), dataEnd) { revert(value4, value4) }\n value3 := add(_2, 32)\n value4 := length\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(value1, value1) }\n value1 := value\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := mload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_t_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n let i := end\n for { } lt(i, length) { i := add(i, 0x20) }\n {\n let _1 := 0x20\n mstore(add(add(pos, i), _1), mload(add(add(value, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(pos, length), 0x20), end)\n }\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_t_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_t_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function extract_byte_array_length(data) -> length\n {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function validator_revert_t_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101a8578063b88d4fde146101bb578063c87b56dd146101ce578063e985e9c5146101e1576100cf565b80636352211e1461016d57806370a082311461018057806395d89b41146101a0576100cf565b806301ffc9a7146100d457806306fdde03146100fd578063081812fc14610112578063095ea7b31461013257806323b872dd1461014757806342842e0e1461015a575b600080fd5b6100e76100e2366004610fe0565b6101f4565b6040516100f491906110cc565b60405180910390f35b610105610217565b6040516100f491906110d7565b610125610120366004611018565b6102a9565b6040516100f4919061107b565b610145610140366004610fb7565b61032b565b005b610145610155366004610eac565b6104cd565b610145610168366004610eac565b610688565b61012561017b366004611018565b6106a8565b61019361018e366004610e60565b610700565b6040516100f491906110ea565b610105610757565b6101456101b6366004610f7d565b610766565b6101456101c9366004610ee7565b6107d5565b6101056101dc366004611018565b61081e565b6100e76101ef366004610e7a565b61088a565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60606005805461022690611122565b80601f016020809104026020016040519081016040528092919081815260200182805461025290611122565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b03166103095760405162461bcd60e51b815260040161030091906110d7565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b03163381148061037657506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906103b35760405162461bcd60e51b815260040161030091906110d7565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b031661040d5760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b039081169190871682141561046d5760405162461bcd60e51b815260040161030091906110d7565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061050b57506000828152600260205260409020546001600160a01b031633145b8061053957506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906105765760405162461bcd60e51b815260040161030091906110d7565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166105d05760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b0390811691908816821461062f5760405162461bcd60e51b815260040161030091906110d7565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166106745760405162461bcd60e51b815260040161030091906110d7565b5061067f86866108b8565b50505050505050565b6106a383838360405180602001604052806000815250610933565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816103255760405162461bcd60e51b815260040161030091906110d7565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166107475760405162461bcd60e51b815260040161030091906110d7565b5061075182610be1565b92915050565b60606006805461022690611122565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906107c99085906110cc565b60405180910390a35050565b61081785858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061093392505050565b5050505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b9183019190915260609183916001600160a01b03166108795760405162461bcd60e51b815260040161030091906110d7565b5061088383610bfc565b9392505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000818152600160205260409020546001600160a01b03166108d982610c9e565b6108e38183610cbc565b6108ed8383610d65565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b03163381148061097157506000828152600260205260409020546001600160a01b031633145b8061099f57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906109dc5760405162461bcd60e51b815260040161030091906110d7565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b0316610a365760405162461bcd60e51b815260040161030091906110d7565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03908116919089168214610a955760405162461bcd60e51b815260040161030091906110d7565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b038816610ada5760405162461bcd60e51b815260040161030091906110d7565b50610ae587876108b8565b610af7876001600160a01b0316610e0d565b15610bd757604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a0290610b319033908d908c908c9060040161108f565b602060405180830381600087803b158015610b4b57600080fd5b505af1158015610b5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190610ffc565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610bd45760405162461bcd60e51b815260040161030091906110d7565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b6000818152600760205260409020805460609190610c1990611122565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611122565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b50505050509050919050565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03848116911614610d175760405162461bcd60e51b815260040161030091906110d7565b506001600160a01b0382166000908152600360205260408120805460019290610d4190849061110b565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610dbc5760405162461bcd60e51b815260040161030091906110d7565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b038816908117909155845260039091528220805491929091610e049084906110f3565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610e415750808214155b949350505050565b80356001600160a01b038116811461021257600080fd5b600060208284031215610e71578081fd5b61088382610e49565b60008060408385031215610e8c578081fd5b610e9583610e49565b9150610ea360208401610e49565b90509250929050565b600080600060608486031215610ec0578081fd5b610ec984610e49565b9250610ed760208501610e49565b9150604084013590509250925092565b600080600080600060808688031215610efe578081fd5b610f0786610e49565b9450610f1560208701610e49565b935060408601359250606086013567ffffffffffffffff80821115610f38578283fd5b818801915088601f830112610f4b578283fd5b813581811115610f59578384fd5b896020828501011115610f6a578384fd5b9699959850939650602001949392505050565b60008060408385031215610f8f578182fd5b610f9883610e49565b915060208301358015158114610fac578182fd5b809150509250929050565b60008060408385031215610fc9578182fd5b610fd283610e49565b946020939093013593505050565b600060208284031215610ff1578081fd5b81356108838161116d565b60006020828403121561100d578081fd5b81516108838161116d565b600060208284031215611029578081fd5b5035919050565b60008151808452815b8181101561105557602081850181015186830182015201611039565b818111156110665782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906110c290830184611030565b9695505050505050565b901515815260200190565b6000602082526108836020830184611030565b90815260200190565b6000821982111561110657611106611157565b500190565b60008282101561111d5761111d611157565b500390565b60028104600182168061113657607f821691505b6020821081141561032557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160e01b03198116811461118357600080fd5b5056fea2646970667358221220f5ddf1de40f2ddc7778a47329cde8d3c139b2310c1f3a6f57a3355d6ed06a5d464736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1E1 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x180 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1A0 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x15A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xFE0 JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x217 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x2A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x107B JUMP JUMPDEST PUSH2 0x145 PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0xFB7 JUMP JUMPDEST PUSH2 0x32B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x145 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xEAC JUMP JUMPDEST PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x145 PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xEAC JUMP JUMPDEST PUSH2 0x688 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xE60 JUMP JUMPDEST PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x10EA JUMP JUMPDEST PUSH2 0x105 PUSH2 0x757 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xF7D JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0xEE7 JUMP JUMPDEST PUSH2 0x7D5 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0x1018 JUMP JUMPDEST PUSH2 0x81E JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1EF CALLDATASIZE PUSH1 0x4 PUSH2 0xE7A JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x5 DUP1 SLOAD PUSH2 0x226 SWAP1 PUSH2 0x1122 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 0x252 SWAP1 PUSH2 0x1122 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x29F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x274 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x29F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x282 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x309 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x376 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x3B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x40D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x46D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x50B JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x539 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x576 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x674 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x67F DUP7 DUP7 PUSH2 0x8B8 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x6A3 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x933 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x325 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x747 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x751 DUP3 PUSH2 0xBE1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x6 DUP1 SLOAD PUSH2 0x226 SWAP1 PUSH2 0x1122 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x7C9 SWAP1 DUP6 SWAP1 PUSH2 0x10CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x817 DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x933 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP2 DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x879 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0x883 DUP4 PUSH2 0xBFC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8D9 DUP3 PUSH2 0xC9E JUMP JUMPDEST PUSH2 0x8E3 DUP2 DUP4 PUSH2 0xCBC JUMP JUMPDEST PUSH2 0x8ED DUP4 DUP4 PUSH2 0xD65 JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x971 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x99F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x9DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA36 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0xA95 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH2 0xAE5 DUP8 DUP8 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0xAF7 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xE0D JUMP JUMPDEST ISZERO PUSH2 0xBD7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xB31 SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0x108F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB5F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB83 SWAP2 SWAP1 PUSH2 0xFFC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xBD4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH2 0xC19 SWAP1 PUSH2 0x1122 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 0xC45 SWAP1 PUSH2 0x1122 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC92 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC67 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC92 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xC75 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0xD17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xD41 SWAP1 DUP5 SWAP1 PUSH2 0x110B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xDBC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0xE04 SWAP1 DUP5 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0xE41 JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x212 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE71 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x883 DUP3 PUSH2 0xE49 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE8C JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xE95 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH2 0xEA3 PUSH1 0x20 DUP5 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xEC0 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xEC9 DUP5 PUSH2 0xE49 JUMP JUMPDEST SWAP3 POP PUSH2 0xED7 PUSH1 0x20 DUP6 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xEFE JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xF07 DUP7 PUSH2 0xE49 JUMP JUMPDEST SWAP5 POP PUSH2 0xF15 PUSH1 0x20 DUP8 ADD PUSH2 0xE49 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xF38 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF4B JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xF59 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xF6A JUMPI DUP4 DUP5 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF8F JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xF98 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFAC JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFC9 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xFD2 DUP4 PUSH2 0xE49 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFF1 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x883 DUP2 PUSH2 0x116D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100D JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x883 DUP2 PUSH2 0x116D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1029 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1055 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1039 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1066 JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x10C2 SWAP1 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x883 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1030 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1106 JUMPI PUSH2 0x1106 PUSH2 0x1157 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x111D JUMPI PUSH2 0x111D PUSH2 0x1157 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1136 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x325 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0xDD CALL 0xDE BLOCKHASH CALLCODE 0xDD 0xC7 PUSH24 0x8A47329CDE8D3C139B2310C1F3A6F57A3355D6ED06A5D464 PUSH20 0x6F6C634300080000330000000000000000000000 ",
"sourceMap": "26035:2793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:163;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:113;;;:::i;:::-;;;;;;;:::i;20917:173::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18778:338::-;;;;;;:::i;:::-;;:::i;:::-;;18028;;;;;;:::i;:::-;;:::i;17294:170::-;;;;;;:::i;:::-;;:::i;20483:198::-;;;;;;:::i;:::-;;:::i;20027:194::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26944:121::-;;;:::i;19518:223::-;;;;;;:::i;:::-;;:::i;16695:199::-;;;;;;:::i;:::-;;:::i;27211:173::-;;;;;;:::i;:::-;;:::i;21351:182::-;;;;;;:::i;:::-;;:::i;5450:163::-;-1:-1:-1;;;;;;5575:33:0;;5554:4;5575:33;;;;;;;;;;;;;5450:163;;;;:::o;26721:113::-;26785:19;26822:7;26814:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:113;:::o;20917:173::-;21039:7;15653:19;;;:9;:19;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;21016:8;;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;21063:22:0::1;::::0;;;:12:::1;:22;::::0;;;;;-1:-1:-1;;;;;21063:22:0::1;::::0;-1:-1:-1;15708:1:0::1;20917:173:::0;;;;:::o;18778:338::-;14871:18;14892:19;;;:9;:19;;;;;;18885:8;;-1:-1:-1;;;;;14892:19:0;14946:10;14932:24;;;:68;;-1:-1:-1;;;;;;14960:28:0;;;;;;:16;:28;;;;;;;;14989:10;14960:40;;;;;;;;;;14932:68;15008:21;;;;;;;;;;;;;-1:-1:-1;;;15008:21:0;;;14917:118;;;;;-1:-1:-1;;;14917:118:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18912:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18930:18:0::2;18951:19:::0;;;:9:::2;:19;::::0;;;;;;;;;19009:8;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;19009:8:0;;::::2;::::0;;;;-1:-1:-1;;;;;18951:19:0;;::::2;::::0;19009:8;18984:23;::::2;::::0;::::2;;18976:42;;;;-1:-1:-1::0;;;18976:42:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;19025:22:0::2;::::0;;;:12:::2;:22;::::0;;;;;:34;;-1:-1:-1;;;;;;19025:34:0::2;-1:-1:-1::0;;;;;19025:34:0;;::::2;::::0;;::::2;::::0;;;19070:41;;19025:22;;19070:41;;::::2;::::0;::::2;::::0;::::2;15708:1;15041::::1;18778:338:::0;;;;:::o;18028:::-;15235:18;15256:19;;;:9;:19;;;;;;18154:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18181:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18199:18:0::2;18220:19:::0;;;:9:::2;:19;::::0;;;;;;;;;18274:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18274:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;18220:19:0;;::::2;::::0;18274:9;18253:19;::::2;::::0;::::2;18245:39;;;;-1:-1:-1::0;;;18245:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;18317:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18317:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;18298:17:0;::::2;18290:40;;;;-1:-1:-1::0;;;18290:40:0::2;;;;;;;;:::i;:::-;;18337:24;18347:3;18352:8;18337:9;:24::i;:::-;15708:1;15466::::1;18028:338:::0;;;;;:::o;17294:170::-;17416:43;17434:5;17441:3;17446:8;17416:43;;;;;;;;;;;;:17;:43::i;:::-;17294:170;;;:::o;20483:198::-;20574:14;20607:19;;;:9;:19;;;;;;;;;;20662:13;;;;;;;;;;;-1:-1:-1;;;20662:13:0;;;;;;;-1:-1:-1;;;;;20607:19:0;;20640:20;20632:44;;;;-1:-1:-1;;;20632:44:0;;;;;;;;:::i;20027:194::-;20165:12;;;;;;;;;;;;-1:-1:-1;;;20165:12:0;;;;20118:7;;-1:-1:-1;;;;;20143:20:0;;20135:43;;;;-1:-1:-1;;;20135:43:0;;;;;;;;:::i;:::-;;20191:25;20209:6;20191:17;:25::i;:::-;20184:32;20027:194;-1:-1:-1;;20027:194:0:o;26944:121::-;27010:21;27051:9;27041:19;;;;;:::i;19518:223::-;19643:10;19626:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;19626:39:0;;;;;;;;;;;:51;;-1:-1:-1;;19626:51:0;;;;;;;19688:48;;19626:39;;19643:10;19688:48;;;;19626:51;;19688:48;:::i;:::-;;;;;;;;19518:223;;:::o;16695:199::-;16843:46;16861:5;16868:3;16873:8;16883:5;;16843:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16843:17:0;;-1:-1:-1;;;16843:46:0:i;:::-;16695:199;;;;;:::o;27211:173::-;15684:1;15653:19;;;:9;:19;;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;27330;;27307:8;;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;;27360:19:::1;27370:8;27360:9;:19::i;:::-;27353:26:::0;27211:173;-1:-1:-1;;;27211:173:0:o;21351:182::-;-1:-1:-1;;;;;21493:24:0;;;21472:4;21493:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;21351:182::o;21716:274::-;21811:12;21826:19;;;:9;:19;;;;;;-1:-1:-1;;;;;21826:19:0;21851:24;21836:8;21851:14;:24::i;:::-;21882:30;21897:4;21903:8;21882:14;:30::i;:::-;21918:26;21930:3;21935:8;21918:11;:26::i;:::-;21976:8;21971:3;-1:-1:-1;;;;;21956:29:0;21965:4;-1:-1:-1;;;;;21956:29:0;;;;;;;;;;;21716:274;;;:::o;25011:569::-;15235:18;15256:19;;;:9;:19;;;;;;25152:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;25179:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;25197:18:0::2;25218:19:::0;;;:9:::2;:19;::::0;;;;;;;;;25272:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25272:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;25218:19:0;;::::2;::::0;25272:9;25251:19;::::2;::::0;::::2;25243:39;;;;-1:-1:-1::0;;;25243:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;25315:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25315:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;25296:17:0;::::2;25288:40;;;;-1:-1:-1::0;;;25288:40:0::2;;;;;;;;:::i;:::-;;25335:24;25345:3;25350:8;25335:9;:24::i;:::-;25370:16;:3;-1:-1:-1::0;;;;;25370:14:0::2;;:16::i;:::-;25366:210;;;25416:77;::::0;-1:-1:-1;;;25416:77:0;;25400:13:::2;::::0;-1:-1:-1;;;;;25416:41:0;::::2;::::0;::::2;::::0;:77:::2;::::0;25458:10:::2;::::0;25470:5;;25477:8;;25487:5;;25416:77:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25545:23;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25545:23:0::2;::::0;::::2;::::0;25400:93;;-1:-1:-1;;;;;;;25509:34:0;::::2;-1:-1:-1::0;;;25509:34:0::2;25501:68;;;;-1:-1:-1::0;;;25501:68:0::2;;;;;;;;:::i;:::-;;25366:210;;15708:1;15466::::1;25011:569:::0;;;;;;:::o;24588:154::-;-1:-1:-1;;;;;24710:27:0;24686:7;24710:27;;;:19;:27;;;;;;;24588:154::o;27610:144::-;27732:17;;;;:7;:17;;;;;27725:24;;27702:13;;27732:17;27725:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27610:144;;;:::o;25707:104::-;25784:22;;;;:12;:22;;;;;25777:29;;-1:-1:-1;;;;;;25777:29:0;;;25707:104::o;23586:224::-;23696:19;;;;:9;:19;;;;;;;;;;23726:9;;;;;;;;;;;-1:-1:-1;;;23726:9:0;;;;;;;-1:-1:-1;;;;;23696:28:0;;;:19;;:28;23688:48;;;;-1:-1:-1;;;23688:48:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23742:26:0;;;;;;:19;:26;;;;;:31;;23772:1;;23742:26;:31;;23772:1;;23742:31;:::i;:::-;;;;-1:-1:-1;;23786:19:0;;;;:9;:19;;;;;23779:26;;-1:-1:-1;;;;;;23779:26:0;;;-1:-1:-1;23586:224:0:o;24069:231::-;24205:1;24174:19;;;:9;:19;;;;;;;;;;24209:18;;;;;;;;;;;-1:-1:-1;;;24209:18:0;;;;;;;-1:-1:-1;;;;;24174:19:0;:33;24166:62;;;;-1:-1:-1;;;24166:62:0;;;;;;;;:::i;:::-;-1:-1:-1;24235:19:0;;;;:9;:19;;;;;;;;:25;;-1:-1:-1;;;;;;24235:25:0;-1:-1:-1;;;;;24235:25:0;;;;;;;;24266:24;;:19;:24;;;;;:29;;24235:9;;24266:24;;:29;;24235:9;;24266:29;:::i;:::-;;;;-1:-1:-1;;;;24069:231:0:o;3322:762::-;3400:17;3971:18;;3876:66;4036:15;;;;;:42;;;4067:11;4055:8;:23;;4036:42;4020:59;3322:762;-1:-1:-1;;;;3322:762:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:862::-;;;;;;1205:3;1193:9;1184:7;1180:23;1176:33;1173:2;;;1227:6;1219;1212:22;1173:2;1255:31;1276:9;1255:31;:::i;:::-;1245:41;;1305:40;1341:2;1330:9;1326:18;1305:40;:::i;:::-;1295:50;;1392:2;1381:9;1377:18;1364:32;1354:42;;1447:2;1436:9;1432:18;1419:32;1470:18;1511:2;1503:6;1500:14;1497:2;;;1532:6;1524;1517:22;1497:2;1575:6;1564:9;1560:22;1550:32;;1620:7;1613:4;1609:2;1605:13;1601:27;1591:2;;1647:6;1639;1632:22;1591:2;1692;1679:16;1718:2;1710:6;1707:14;1704:2;;;1739:6;1731;1724:22;1704:2;1789:7;1784:2;1775:6;1771:2;1767:15;1763:24;1760:37;1757:2;;;1815:6;1807;1800:22;1757:2;1163:722;;;;-1:-1:-1;1163:722:1;;-1:-1:-1;1851:2:1;1843:11;;1873:6;1163:722;-1:-1:-1;;;1163:722:1:o;1890:369::-;;;2016:2;2004:9;1995:7;1991:23;1987:32;1984:2;;;2037:6;2029;2022:22;1984:2;2065:31;2086:9;2065:31;:::i;:::-;2055:41;;2146:2;2135:9;2131:18;2118:32;2193:5;2186:13;2179:21;2172:5;2169:32;2159:2;;2220:6;2212;2205:22;2159:2;2248:5;2238:15;;;1974:285;;;;;:::o;2264:266::-;;;2393:2;2381:9;2372:7;2368:23;2364:32;2361:2;;;2414:6;2406;2399:22;2361:2;2442:31;2463:9;2442:31;:::i;:::-;2432:41;2520:2;2505:18;;;;2492:32;;-1:-1:-1;;;2351:179:1:o;2535:257::-;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2667:6;2659;2652:22;2614:2;2711:9;2698:23;2730:32;2756:5;2730:32;:::i;2797:261::-;;2919:2;2907:9;2898:7;2894:23;2890:32;2887:2;;;2940:6;2932;2925:22;2887:2;2977:9;2971:16;2996:32;3022:5;2996:32;:::i;3063:190::-;;3175:2;3163:9;3154:7;3150:23;3146:32;3143:2;;;3196:6;3188;3181:22;3143:2;-1:-1:-1;3224:23:1;;3133:120;-1:-1:-1;3133:120:1:o;3258:477::-;;3339:5;3333:12;3366:6;3361:3;3354:19;3391:3;3403:162;3417:6;3414:1;3411:13;3403:162;;;3479:4;3535:13;;;3531:22;;3525:29;3507:11;;;3503:20;;3496:59;3432:12;3403:162;;;3583:6;3580:1;3577:13;3574:2;;;3649:3;3642:4;3633:6;3628:3;3624:16;3620:27;3613:40;3574:2;-1:-1:-1;3717:2:1;3696:15;-1:-1:-1;;3692:29:1;3683:39;;;;3724:4;3679:50;;3309:426;-1:-1:-1;;3309:426:1:o;3740:203::-;-1:-1:-1;;;;;3904:32:1;;;;3886:51;;3874:2;3859:18;;3841:102::o;3948:490::-;-1:-1:-1;;;;;4217:15:1;;;4199:34;;4269:15;;4264:2;4249:18;;4242:43;4316:2;4301:18;;4294:34;;;4364:3;4359:2;4344:18;;4337:31;;;3948:490;;4385:47;;4412:19;;4404:6;4385:47;:::i;:::-;4377:55;4151:287;-1:-1:-1;;;;;;4151:287:1:o;4443:187::-;4608:14;;4601:22;4583:41;;4571:2;4556:18;;4538:92::o;4635:221::-;;4784:2;4773:9;4766:21;4804:46;4846:2;4835:9;4831:18;4823:6;4804:46;:::i;4861:177::-;5007:25;;;4995:2;4980:18;;4962:76::o;5043:128::-;;5114:1;5110:6;5107:1;5104:13;5101:2;;;5120:18;;:::i;:::-;-1:-1:-1;5156:9:1;;5091:80::o;5176:125::-;;5244:1;5241;5238:8;5235:2;;;5249:18;;:::i;:::-;-1:-1:-1;5286:9:1;;5225:76::o;5306:380::-;5391:1;5381:12;;5438:1;5428:12;;;5449:2;;5503:4;5495:6;5491:17;5481:27;;5449:2;5556;5548:6;5545:14;5525:18;5522:38;5519:2;;;5602:10;5597:3;5593:20;5590:1;5583:31;5637:4;5634:1;5627:15;5665:4;5662:1;5655:15;5691:127;5752:10;5747:3;5743:20;5740:1;5733:31;5783:4;5780:1;5773:15;5807:4;5804:1;5797:15;5823:133;-1:-1:-1;;;;;;5899:32:1;;5889:43;;5879:2;;5946:1;5943;5936:12;5879:2;5869:87;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "908000",
"executionCost": "63456",
"totalCost": "971456"
},
"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)": "23240",
"supportsInterface(bytes4)": "1295",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_burn(uint256)": "infinite",
"_setTokenUri(uint256,string memory)": "infinite",
"_tokenURI(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"
},
{
"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": "_approved",
"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": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": "_symbol",
"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"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "_approved",
"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": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": "_symbol",
"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": "Optional metadata implementation for ERC-721 non-fungible token standard.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Set or reaffirm the approved address for an NFT. This function can be changed to payable.",
"params": {
"_approved": "Address to be approved for the given NFT ID.",
"_tokenId": "ID of the token to be approved."
}
},
"balanceOf(address)": {
"details": "Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are considered invalid, and this function throws for queries about the zero address.",
"params": {
"_owner": "Address for whom to query the balance."
},
"returns": {
"_0": "Balance of _owner."
}
},
"constructor": {
"details": "Contract constructor."
},
"getApproved(uint256)": {
"details": "Get the approved address for a single NFT.",
"params": {
"_tokenId": "ID of the NFT to query the approval of."
},
"returns": {
"_0": "Address that _tokenId is approved for."
}
},
"isApprovedForAll(address,address)": {
"details": "Checks if `_operator` is an approved operator for `_owner`.",
"params": {
"_operator": "The address that acts on behalf of the owner.",
"_owner": "The address that owns the NFTs."
},
"returns": {
"_0": "True if approved for all, false otherwise."
}
},
"name()": {
"details": "Returns a descriptive name for a collection of NFTokens.",
"returns": {
"_name": "Representing name."
}
},
"ownerOf(uint256)": {
"details": "Returns the address of the owner of the NFT. NFTs assigned to the zero address are considered invalid, and queries about them do throw.",
"params": {
"_tokenId": "The identifier for an NFT."
},
"returns": {
"_owner": "Address of _tokenId owner."
}
},
"safeTransferFrom(address,address,uint256)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_data": "Additional data with no specified format, sent in call to `_to`.",
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"setApprovalForAll(address,bool)": {
"details": "Enables or disables approval for a third party (\"operator\") to manage all of `msg.sender`'s assets. It also emits the ApprovalForAll event.",
"params": {
"_approved": "True if the operators is approved, false to revoke approval.",
"_operator": "Address to add to the set of authorized operators."
}
},
"supportsInterface(bytes4)": {
"details": "Function to check which interfaces are suported by this contract.",
"params": {
"_interfaceID": "Id of the interface."
},
"returns": {
"_0": "True if _interfaceID is supported, false otherwise."
}
},
"symbol()": {
"details": "Returns an abbreviated name for NFTokens.",
"returns": {
"_symbol": "Representing symbol."
}
},
"tokenURI(uint256)": {
"details": "A distinct URI (RFC 3986) for a given NFT.",
"params": {
"_tokenId": "Id for which we want uri."
},
"returns": {
"_0": "URI of _tokenId."
}
},
"transferFrom(address,address,uint256)": {
"details": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
}
},
"stateVariables": {
"idToUri": {
"details": "Mapping from NFT ID to metadata uri."
},
"nftName": {
"details": "A descriptive name for a collection of NFTs."
},
"nftSymbol": {
"details": "An abbreviated name for NFTokens."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"approve(address,uint256)": {
"notice": "The zero address indicates there is no approved address. Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner."
},
"constructor": {
"notice": "When implementing this contract don't forget to set nftName and nftSymbol."
},
"getApproved(uint256)": {
"notice": "Throws if `_tokenId` is not a valid NFT."
},
"safeTransferFrom(address,address,uint256)": {
"notice": "This works identically to the other function with an extra data parameter, except this function just sets data to \"\"."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"notice": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this function checks if `_to` is a smart contract (code size > 0). If so, it calls `onERC721Received` on `_to` and throws if the return value is not `bytes4(keccak256(\"onERC721Received(address,uint256,bytes)\"))`."
},
"setApprovalForAll(address,bool)": {
"notice": "This works even if sender doesn't own any tokens at the time."
},
"transferFrom(address,address,uint256)": {
"notice": "The caller is responsible to confirm that `_to` is capable of receiving NFTs or else they may be permanently lost."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "NFTokenMetadata"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600080546001600160a01b031916331790556102b2806100326000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063860d248a146100515780638da5cb5b1461006f578063f2fde38b14610084578063f3fe3bc314610099575b600080fd5b6100596100a1565b6040516100669190610229565b60405180910390f35b6100776100c3565b6040516100669190610215565b6100976100923660046101e7565b6100d2565b005b6100596101c5565b6040518060400160405280600681526020016518189c18181960d11b81525081565b6000546001600160a01b031681565b60005460408051808201909152600681526530313830303160d01b6020820152906001600160a01b031633146101245760405162461bcd60e51b815260040161011b9190610229565b60405180910390fd5b5060408051808201909152600681526518189c18181960d11b60208201526001600160a01b0382166101695760405162461bcd60e51b815260040161011b9190610229565b50600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060400160405280600681526020016530313830303160d01b81525081565b6000602082840312156101f8578081fd5b81356001600160a01b038116811461020e578182fd5b9392505050565b6001600160a01b0391909116815260200190565b6000602080835283518082850152825b8181101561025557858101830151858201604001528201610239565b818111156102665783604083870101525b50601f01601f191692909201604001939250505056fea2646970667358221220788efb55a859d5900be10b237ab9d30fcfbfa419cd6a2c99bc1f41b92ede9ea664736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND CALLER OR SWAP1 SSTORE PUSH2 0x2B2 DUP1 PUSH2 0x32 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x860D248A EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xF3FE3BC3 EQ PUSH2 0x99 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x215 JUMP JUMPDEST PUSH2 0x97 PUSH2 0x92 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E7 JUMP JUMPDEST PUSH2 0xD2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x59 PUSH2 0x1C5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x18189C181819 PUSH1 0xD1 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x124 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11B SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x18189C181819 PUSH1 0xD1 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x169 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11B SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP4 SWAP3 AND SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 LOG3 PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303138303031 PUSH1 0xD0 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20E JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x255 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x239 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x266 JUMPI DUP4 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0x8EFB55A859D5900BE10B237AB9D30FCFBFA419CD6A2C99BC1F COINBASE 0xB9 0x2E 0xDE SWAP15 0xA6 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "421:1255:0:-:0;;;1069:45;;;;;;;;;-1:-1:-1;1091:5:0;:18;;-1:-1:-1;;;;;;1091:18:0;1099:10;1091:18;;;421:1255;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1138:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "84:236:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "130:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "139:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "147:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "132:6:1"
},
"nodeType": "YulFunctionCall",
"src": "132:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "132:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "105:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "114:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "101:3:1"
},
"nodeType": "YulFunctionCall",
"src": "101:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "126:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "97:3:1"
},
"nodeType": "YulFunctionCall",
"src": "97:32:1"
},
"nodeType": "YulIf",
"src": "94:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "165:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "191:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "178:12:1"
},
"nodeType": "YulFunctionCall",
"src": "178:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "169:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "264:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "273:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "281:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "266:6:1"
},
"nodeType": "YulFunctionCall",
"src": "266:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "223:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "234:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "249:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "245:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "258:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "241:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "230:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "220:2:1"
},
"nodeType": "YulFunctionCall",
"src": "220:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "213:6:1"
},
"nodeType": "YulFunctionCall",
"src": "213:50:1"
},
"nodeType": "YulIf",
"src": "210:2:1"
},
{
"nodeType": "YulAssignment",
"src": "299:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "309:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "299:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "50:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "61:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "73:6:1",
"type": ""
}
],
"src": "14:306:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "426:102:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "436:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "448:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "459:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "444:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "436:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "478:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "493:6:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "509:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "514:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "505:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "518:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "501:3:1"
},
"nodeType": "YulFunctionCall",
"src": "501:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "489:3:1"
},
"nodeType": "YulFunctionCall",
"src": "489:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "471:6:1"
},
"nodeType": "YulFunctionCall",
"src": "471:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "471:51:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "395:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "406:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "417:4:1",
"type": ""
}
],
"src": "325:203:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "654:482:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "664:12:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "674:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "668:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "692:9:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "703:2:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "685:6:1"
},
"nodeType": "YulFunctionCall",
"src": "685:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "685:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "715:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "735:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "729:5:1"
},
"nodeType": "YulFunctionCall",
"src": "729:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "719:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "762:9:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "773:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "758:3:1"
},
"nodeType": "YulFunctionCall",
"src": "758:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "778:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "751:6:1"
},
"nodeType": "YulFunctionCall",
"src": "751:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "751:34:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "794:13:1",
"value": {
"name": "tail",
"nodeType": "YulIdentifier",
"src": "803:4:1"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "798:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "866:90:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "895:9:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "906:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "891:3:1"
},
"nodeType": "YulFunctionCall",
"src": "891:17:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "910:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "887:3:1"
},
"nodeType": "YulFunctionCall",
"src": "887:26:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "929:6:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "937:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "925:3:1"
},
"nodeType": "YulFunctionCall",
"src": "925:14:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "941:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "921:3:1"
},
"nodeType": "YulFunctionCall",
"src": "921:23:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "915:5:1"
},
"nodeType": "YulFunctionCall",
"src": "915:30:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "880:6:1"
},
"nodeType": "YulFunctionCall",
"src": "880:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "880:66:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "827:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "830:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "824:2:1"
},
"nodeType": "YulFunctionCall",
"src": "824:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "838:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "840:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "849:1:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "852:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "845:3:1"
},
"nodeType": "YulFunctionCall",
"src": "845:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "840:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "820:3:1",
"statements": []
},
"src": "816:140:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "990:69:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1019:9:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1030:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1015:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1015:22:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1039:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1011:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1011:31:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1044:4:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1004:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1004:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1004:45:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "971:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "974:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "968:2:1"
},
"nodeType": "YulFunctionCall",
"src": "968:13:1"
},
"nodeType": "YulIf",
"src": "965:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1068:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1084:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1103:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1111:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1099:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1116:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1116:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1095:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1080:45:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1127:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1076:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1076:54:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1068:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "623:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "634:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "645:4:1",
"type": ""
}
],
"src": "533:603:1"
}
]
},
"contents": "{\n { }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(value0, value0) }\n value0 := value\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := tail\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(headStart, length), 64), tail)\n }\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c8063860d248a146100515780638da5cb5b1461006f578063f2fde38b14610084578063f3fe3bc314610099575b600080fd5b6100596100a1565b6040516100669190610229565b60405180910390f35b6100776100c3565b6040516100669190610215565b6100976100923660046101e7565b6100d2565b005b6100596101c5565b6040518060400160405280600681526020016518189c18181960d11b81525081565b6000546001600160a01b031681565b60005460408051808201909152600681526530313830303160d01b6020820152906001600160a01b031633146101245760405162461bcd60e51b815260040161011b9190610229565b60405180910390fd5b5060408051808201909152600681526518189c18181960d11b60208201526001600160a01b0382166101695760405162461bcd60e51b815260040161011b9190610229565b50600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060400160405280600681526020016530313830303160d01b81525081565b6000602082840312156101f8578081fd5b81356001600160a01b038116811461020e578182fd5b9392505050565b6001600160a01b0391909116815260200190565b6000602080835283518082850152825b8181101561025557858101830151858201604001528201610239565b818111156102665783604083870101525b50601f01601f191692909201604001939250505056fea2646970667358221220788efb55a859d5900be10b237ab9d30fcfbfa419cd6a2c99bc1f41b92ede9ea664736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x860D248A EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xF3FE3BC3 EQ PUSH2 0x99 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x215 JUMP JUMPDEST PUSH2 0x97 PUSH2 0x92 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E7 JUMP JUMPDEST PUSH2 0xD2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x59 PUSH2 0x1C5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x18189C181819 PUSH1 0xD1 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x124 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11B SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x18189C181819 PUSH1 0xD1 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x169 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11B SWAP2 SWAP1 PUSH2 0x229 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP4 SWAP3 AND SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 LOG3 PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303138303031 PUSH1 0xD0 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F8 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20E JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x255 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x239 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x266 JUMPI DUP4 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0x8EFB55A859D5900BE10B237AB9D30FCFBFA419CD6A2C99BC1F COINBASE 0xB9 0x2E 0xDE SWAP15 0xA6 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "421:1255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;652:20;;;:::i;:::-;;;;;;;:::i;1444:229::-;;;;;;:::i;:::-;;:::i;:::-;;482:51;;;:::i;537:65::-;;;;;;;;;;;;;;-1:-1:-1;;;537:65:0;;;;:::o;652:20::-;;;-1:-1:-1;;;;;652:20:0;;:::o;1444:229::-;1245:5;;1252:17;;;;;;;;;;;;-1:-1:-1;;;1252:17:0;;;;;-1:-1:-1;;;;;1245:5:0;1231:10;:19;1223:47;;;;-1:-1:-1;;;1223:47:0;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;1564:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;1564:31:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;1539:23:0;::::1;1531:65;;;;-1:-1:-1::0;;;1531:65:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;1628:5:0::1;::::0;;1607:38:::1;::::0;-1:-1:-1;;;;;1607:38:0;;::::1;::::0;1628:5;::::1;::::0;1607:38:::1;::::0;::::1;1651:5;:17:::0;;-1:-1:-1;;;;;;1651:17:0::1;-1:-1:-1::0;;;;;1651:17:0;;;::::1;::::0;;;::::1;::::0;;1444:229::o;482:51::-;;;;;;;;;;;;;;-1:-1:-1;;;482:51:0;;;;:::o;14:306:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;178:23;;-1:-1:-1;;;;;230:31:1;;220:42;;210:2;;281:6;273;266:22;210:2;309:5;84:236;-1:-1:-1;;;84:236:1:o;325:203::-;-1:-1:-1;;;;;489:32:1;;;;471:51;;459:2;444:18;;426:102::o;533:603::-;;674:2;703;692:9;685:21;735:6;729:13;778:6;773:2;762:9;758:18;751:34;803:4;816:140;830:6;827:1;824:13;816:140;;;925:14;;;921:23;;915:30;891:17;;;910:2;887:26;880:66;845:10;;816:140;;;974:6;971:1;968:13;965:2;;;1044:4;1039:2;1030:6;1019:9;1015:22;1011:31;1004:45;965:2;-1:-1:-1;1120:2:1;1099:15;-1:-1:-1;;1095:29:1;1080:45;;;;1127:2;1076:54;;654:482;-1:-1:-1;;;654:482:1:o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "138000",
"executionCost": "21018",
"totalCost": "159018"
},
"external": {
"CANNOT_TRANSFER_TO_ZERO_ADDRESS()": "infinite",
"NOT_CURRENT_OWNER()": "infinite",
"owner()": "1070",
"transferOwnership(address)": "infinite"
}
},
"methodIdentifiers": {
"CANNOT_TRANSFER_TO_ZERO_ADDRESS()": "860d248a",
"NOT_CURRENT_OWNER()": "f3fe3bc3",
"owner()": "8da5cb5b",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "CANNOT_TRANSFER_TO_ZERO_ADDRESS",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "NOT_CURRENT_OWNER",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "CANNOT_TRANSFER_TO_ZERO_ADDRESS",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "NOT_CURRENT_OWNER",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "The contract has an owner address, and provides basic authorization control whitch simplifies the implementation of user permissions. This contract is based on the source code at: https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/ownership/Ownable.sol",
"events": {
"OwnershipTransferred(address,address)": {
"details": "An event which is triggered when the owner is changed.",
"params": {
"newOwner": "The address of the new owner.",
"previousOwner": "The address of the previous owner."
}
}
},
"kind": "dev",
"methods": {
"constructor": {
"details": "The constructor sets the original `owner` of the contract to the sender account."
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"_newOwner": "The address to transfer ownership to."
}
}
},
"stateVariables": {
"NOT_CURRENT_OWNER": {
"details": "Error constants."
},
"owner": {
"details": "Current owner address."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "Ownable"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:396:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "69:325:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "79:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "93:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "99:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "89:3:1"
},
"nodeType": "YulFunctionCall",
"src": "89:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "79:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "110:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "140:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "146:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "136:3:1"
},
"nodeType": "YulFunctionCall",
"src": "136:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "114:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "187:31:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "189:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "203:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "211:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "199:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "189:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "167:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "160:6:1"
},
"nodeType": "YulFunctionCall",
"src": "160:26:1"
},
"nodeType": "YulIf",
"src": "157:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "277:111:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "298:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "305:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "310:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "301:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "291:6:1"
},
"nodeType": "YulFunctionCall",
"src": "291:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "291:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "342:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "335:6:1"
},
"nodeType": "YulFunctionCall",
"src": "335:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "335:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "370:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "373:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "363:6:1"
},
"nodeType": "YulFunctionCall",
"src": "363:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "363:15:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "233:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "256:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "264:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "253:2:1"
},
"nodeType": "YulFunctionCall",
"src": "253:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "230:2:1"
},
"nodeType": "YulFunctionCall",
"src": "230:38:1"
},
"nodeType": "YulIf",
"src": "227:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "49:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "58:6:1",
"type": ""
}
],
"src": "14:380:1"
}
]
},
"contents": "{\n { }\n function extract_byte_array_length(data) -> length\n {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50600060208181527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1990811660019081179092557ff7815fccbf112960a73756e185887fedcb9fc64ca0a16cc5923b7960ed7808008054821683179055635b5e139f60e01b9093527f9562381dfbc2d8b8b66e765249f330164b73e329e5f01670660643571d1974df805490931617909155600880546001600160a01b0319163317905560408051808201909152601e8082527f43727970746f20456c204e7565766f2041686f72612031392f31322f323200009190920190815262000100916005919062000135565b50604080518082019091526004808252634b4d2d3160e01b60209092019182526200012e9160069162000135565b5062000218565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600281046001821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b61168480620002286000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063c87b56dd11610071578063c87b56dd14610225578063d3fc986414610238578063e985e9c51461024b578063f2fde38b1461025e578063f3fe3bc31461027157610116565b80638da5cb5b146101ef57806395d89b41146101f7578063a22cb465146101ff578063b88d4fde1461021257610116565b806323b872dd116100e957806323b872dd1461018e57806342842e0e146101a15780636352211e146101b457806370a08231146101c7578063860d248a146101e757610116565b806301ffc9a71461011b57806306fdde0314610144578063081812fc14610159578063095ea7b314610179575b600080fd5b61012e6101293660046114a8565b610279565b60405161013b9190611594565b60405180910390f35b61014c61029c565b60405161013b919061159f565b61016c6101673660046114e0565b61032e565b60405161013b9190611543565b61018c610187366004611427565b6103b0565b005b61018c61019c366004611345565b610552565b61018c6101af366004611345565b61070d565b61016c6101c23660046114e0565b61072d565b6101da6101d53660046112f9565b610785565b60405161013b91906115b2565b61014c6107dc565b61016c6107fe565b61014c61080d565b61018c61020d3660046113ed565b61081c565b61018c610220366004611380565b61088b565b61014c6102333660046114e0565b6108d4565b61018c610246366004611450565b610940565b61012e610259366004611313565b6109da565b61018c61026c3660046112f9565b610a08565b61014c610af3565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600580546102ab906115ea565b80601f01602080910402602001604051908101604052809291908181526020018280546102d7906115ea565b80156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b031661038e5760405162461bcd60e51b8152600401610385919061159f565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b0316338114806103fb57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906104385760405162461bcd60e51b8152600401610385919061159f565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166104925760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b03908116919087168214156104f25760405162461bcd60e51b8152600401610385919061159f565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061059057506000828152600260205260409020546001600160a01b031633145b806105be57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906105fb5760405162461bcd60e51b8152600401610385919061159f565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166106555760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b039081169190881682146106b45760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166106f95760405162461bcd60e51b8152600401610385919061159f565b506107048686610b15565b50505050505050565b61072883838360405180602001604052806000815250610b90565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816103aa5760405162461bcd60e51b8152600401610385919061159f565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166107cc5760405162461bcd60e51b8152600401610385919061159f565b506107d682610e3e565b92915050565b6040518060400160405280600681526020016518189c18181960d11b81525081565b6008546001600160a01b031681565b6060600680546102ab906115ea565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061087f908590611594565b60405180910390a35050565b6108cd85858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b9092505050565b5050505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b9183019190915260609183916001600160a01b031661092f5760405162461bcd60e51b8152600401610385919061159f565b5061093983610e59565b9392505050565b60085460408051808201909152600681526530313830303160d01b6020820152906001600160a01b031633146109895760405162461bcd60e51b8152600401610385919061159f565b506109948484610efb565b6109d48383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fde92505050565b50505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60085460408051808201909152600681526530313830303160d01b6020820152906001600160a01b03163314610a515760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526518189c18181960d11b60208201526001600160a01b038216610a965760405162461bcd60e51b8152600401610385919061159f565b506008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060400160405280600681526020016530313830303160d01b81525081565b6000818152600160205260409020546001600160a01b0316610b3682611057565b610b408183611075565b610b4a838361111e565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b031633811480610bce57506000828152600260205260409020546001600160a01b031633145b80610bfc57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b81525090610c395760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b0316610c935760405162461bcd60e51b8152600401610385919061159f565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03908116919089168214610cf25760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b038816610d375760405162461bcd60e51b8152600401610385919061159f565b50610d428787610b15565b610d54876001600160a01b03166111c6565b15610e3457604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a0290610d8e9033908d908c908c90600401611557565b602060405180830381600087803b158015610da857600080fd5b505af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de091906114c4565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610e315760405162461bcd60e51b8152600401610385919061159f565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b6000818152600760205260409020805460609190610e76906115ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea2906115ea565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b50505050509050919050565b60408051808201909152600681526530303330303160d01b60208201526001600160a01b038316610f3f5760405162461bcd60e51b8152600401610385919061159f565b50600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610f975760405162461bcd60e51b8152600401610385919061159f565b50610fa2828261111e565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528391906001600160a01b03166110375760405162461bcd60e51b8152600401610385919061159f565b50600083815260076020908152604090912083516109d492850190611202565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b038481169116146110d05760405162461bcd60e51b8152600401610385919061159f565b506001600160a01b03821660009081526003602052604081208054600192906110fa9084906115d3565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b0316156111755760405162461bcd60e51b8152600401610385919061159f565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b0388169081179091558452600390915282208054919290916111bd9084906115bb565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906111fa5750808214155b949350505050565b82805461120e906115ea565b90600052602060002090601f0160209004810192826112305760008555611276565b82601f1061124957805160ff1916838001178555611276565b82800160010185558215611276579182015b8281111561127657825182559160200191906001019061125b565b50611282929150611286565b5090565b5b808211156112825760008155600101611287565b80356001600160a01b038116811461029757600080fd5b60008083601f8401126112c3578182fd5b50813567ffffffffffffffff8111156112da578182fd5b6020830191508360208285010111156112f257600080fd5b9250929050565b60006020828403121561130a578081fd5b6109398261129b565b60008060408385031215611325578081fd5b61132e8361129b565b915061133c6020840161129b565b90509250929050565b600080600060608486031215611359578081fd5b6113628461129b565b92506113706020850161129b565b9150604084013590509250925092565b600080600080600060808688031215611397578081fd5b6113a08661129b565b94506113ae6020870161129b565b935060408601359250606086013567ffffffffffffffff8111156113d0578182fd5b6113dc888289016112b2565b969995985093965092949392505050565b600080604083850312156113ff578182fd5b6114088361129b565b91506020830135801515811461141c578182fd5b809150509250929050565b60008060408385031215611439578182fd5b6114428361129b565b946020939093013593505050565b60008060008060608587031215611465578384fd5b61146e8561129b565b935060208501359250604085013567ffffffffffffffff811115611490578283fd5b61149c878288016112b2565b95989497509550505050565b6000602082840312156114b9578081fd5b813561093981611635565b6000602082840312156114d5578081fd5b815161093981611635565b6000602082840312156114f1578081fd5b5035919050565b60008151808452815b8181101561151d57602081850181015186830182015201611501565b8181111561152e5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061158a908301846114f8565b9695505050505050565b901515815260200190565b60006020825261093960208301846114f8565b90815260200190565b600082198211156115ce576115ce61161f565b500190565b6000828210156115e5576115e561161f565b500390565b6002810460018216806115fe57607f821691505b602082108114156103aa57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160e01b03198116811461164b57600080fd5b5056fea26469706673582212205e7ba294f26e02eb20b3cfb4678c90a41c70dd240a3cc003299e3e307e2fc55764736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH32 0x67BE87C3FF9960CA1E9CFAC5CAB2FF4747269CF9ED20C9B7306235AC35A491C5 DUP1 SLOAD PUSH1 0xFF NOT SWAP1 DUP2 AND PUSH1 0x1 SWAP1 DUP2 OR SWAP1 SWAP3 SSTORE PUSH32 0xF7815FCCBF112960A73756E185887FEDCB9FC64CA0A16CC5923B7960ED780800 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH4 0x5B5E139F PUSH1 0xE0 SHL SWAP1 SWAP4 MSTORE PUSH32 0x9562381DFBC2D8B8B66E765249F330164B73E329E5F01670660643571D1974DF DUP1 SLOAD SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE PUSH1 0x8 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND CALLER OR SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1E DUP1 DUP3 MSTORE PUSH32 0x43727970746F20456C204E7565766F2041686F72612031392F31322F32320000 SWAP2 SWAP1 SWAP3 ADD SWAP1 DUP2 MSTORE PUSH3 0x100 SWAP2 PUSH1 0x5 SWAP2 SWAP1 PUSH3 0x135 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x4 DUP1 DUP3 MSTORE PUSH4 0x4B4D2D31 PUSH1 0xE0 SHL PUSH1 0x20 SWAP1 SWAP3 ADD SWAP2 DUP3 MSTORE PUSH3 0x12E SWAP2 PUSH1 0x6 SWAP2 PUSH3 0x135 JUMP JUMPDEST POP PUSH3 0x218 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x143 SWAP1 PUSH3 0x1DB JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x167 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x1B2 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x182 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x1B2 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x1B2 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x1B2 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x195 JUMP JUMPDEST POP PUSH3 0x1C0 SWAP3 SWAP2 POP PUSH3 0x1C4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1C0 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1C5 JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x1F0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x212 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1684 DUP1 PUSH3 0x228 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x116 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xC87B56DD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xD3FC9864 EQ PUSH2 0x238 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0xF3FE3BC3 EQ PUSH2 0x271 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x212 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1C7 JUMPI DUP1 PUSH4 0x860D248A EQ PUSH2 0x1E7 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x179 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x129 CALLDATASIZE PUSH1 0x4 PUSH2 0x14A8 JUMP JUMPDEST PUSH2 0x279 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1594 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14C PUSH2 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1543 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0x1427 JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x552 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x1AF CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x70D JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x72D JUMP JUMPDEST PUSH2 0x1DA PUSH2 0x1D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x12F9 JUMP JUMPDEST PUSH2 0x785 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x15B2 JUMP JUMPDEST PUSH2 0x14C PUSH2 0x7DC JUMP JUMPDEST PUSH2 0x16C PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x14C PUSH2 0x80D JUMP JUMPDEST PUSH2 0x18C PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x81C JUMP JUMPDEST PUSH2 0x18C PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x1380 JUMP JUMPDEST PUSH2 0x88B JUMP JUMPDEST PUSH2 0x14C PUSH2 0x233 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x8D4 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x246 CALLDATASIZE PUSH1 0x4 PUSH2 0x1450 JUMP JUMPDEST PUSH2 0x940 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x259 CALLDATASIZE PUSH1 0x4 PUSH2 0x1313 JUMP JUMPDEST PUSH2 0x9DA JUMP JUMPDEST PUSH2 0x18C PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x12F9 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH2 0x14C PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x5 DUP1 SLOAD PUSH2 0x2AB SWAP1 PUSH2 0x15EA 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 0x2D7 SWAP1 PUSH2 0x15EA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x324 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x324 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x307 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x38E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x3FB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x438 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x492 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x590 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x5BE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x5FB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x655 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x6B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x6F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x704 DUP7 DUP7 PUSH2 0xB15 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x728 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x3AA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x7CC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x7D6 DUP3 PUSH2 0xE3E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x18189C181819 PUSH1 0xD1 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x6 DUP1 SLOAD PUSH2 0x2AB SWAP1 PUSH2 0x15EA JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x87F SWAP1 DUP6 SWAP1 PUSH2 0x1594 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x8CD DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xB90 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP2 DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x92F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x939 DUP4 PUSH2 0xE59 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x989 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x994 DUP5 DUP5 PUSH2 0xEFB JUMP JUMPDEST PUSH2 0x9D4 DUP4 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xFDE SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x18189C181819 PUSH1 0xD1 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA96 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 AND SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 PUSH1 0x8 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303138303031 PUSH1 0xD0 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB36 DUP3 PUSH2 0x1057 JUMP JUMPDEST PUSH2 0xB40 DUP2 DUP4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0xB4A DUP4 DUP4 PUSH2 0x111E JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0xBCE JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0xBFC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0xC39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xC93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0xCF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0xD37 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0xD42 DUP8 DUP8 PUSH2 0xB15 JUMP JUMPDEST PUSH2 0xD54 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11C6 JUMP JUMPDEST ISZERO PUSH2 0xE34 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xD8E SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0x1557 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xDBC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xDE0 SWAP2 SWAP1 PUSH2 0x14C4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xE31 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH2 0xE76 SWAP1 PUSH2 0x15EA 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 0xEA2 SWAP1 PUSH2 0x15EA JUMP JUMPDEST DUP1 ISZERO PUSH2 0xEEF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xEC4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xEEF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xED2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xF3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xF97 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0xFA2 DUP3 DUP3 PUSH2 0x111E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1037 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP4 MLOAD PUSH2 0x9D4 SWAP3 DUP6 ADD SWAP1 PUSH2 0x1202 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0x10D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x10FA SWAP1 DUP5 SWAP1 PUSH2 0x15D3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1175 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0x11BD SWAP1 DUP5 SWAP1 PUSH2 0x15BB JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x11FA JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x120E SWAP1 PUSH2 0x15EA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1230 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1276 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1249 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1276 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1276 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1276 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x125B JUMP JUMPDEST POP PUSH2 0x1282 SWAP3 SWAP2 POP PUSH2 0x1286 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1282 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1287 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x12C3 JUMPI DUP2 DUP3 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12DA JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x12F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x130A JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x939 DUP3 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1325 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x132E DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH2 0x133C PUSH1 0x20 DUP5 ADD PUSH2 0x129B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1359 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x1362 DUP5 PUSH2 0x129B JUMP JUMPDEST SWAP3 POP PUSH2 0x1370 PUSH1 0x20 DUP6 ADD PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1397 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x13A0 DUP7 PUSH2 0x129B JUMP JUMPDEST SWAP5 POP PUSH2 0x13AE PUSH1 0x20 DUP8 ADD PUSH2 0x129B JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13D0 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x13DC DUP9 DUP3 DUP10 ADD PUSH2 0x12B2 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13FF JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x1408 DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x141C JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1439 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x1442 DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1465 JUMPI DUP4 DUP5 REVERT JUMPDEST PUSH2 0x146E DUP6 PUSH2 0x129B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1490 JUMPI DUP3 DUP4 REVERT JUMPDEST PUSH2 0x149C DUP8 DUP3 DUP9 ADD PUSH2 0x12B2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14B9 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x939 DUP2 PUSH2 0x1635 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D5 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x939 DUP2 PUSH2 0x1635 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F1 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x151D JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1501 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x152E JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x158A SWAP1 DUP4 ADD DUP5 PUSH2 0x14F8 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x939 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x14F8 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x15CE JUMPI PUSH2 0x15CE PUSH2 0x161F JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15E5 JUMPI PUSH2 0x15E5 PUSH2 0x161F JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x15FE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3AA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x164B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E PUSH28 0xA294F26E02EB20B3CFB4678C90A41C70DD240A3CC003299E3E307E2F 0xC5 JUMPI PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "28876:319:0:-:0;;;28934:91;;;;;;;;;-1:-1:-1;5194:19:0;:31;;;;;:38;;-1:-1:-1;;5194:38:0;;;5228:4;5194:38;;;;;;15784:31;:38;;;;;;;;-1:-1:-1;;;26539:31:0;;;;:38;;;;;;;;;1091:5;:18;;-1:-1:-1;;;;;;1091:18:0;1099:10;1091:18;;;5194:31;28954:42;;;;;;;;;;;;;;;;;;;;;;:7;;:42;;:::i;:::-;-1:-1:-1;29002:18:0;;;;;;;;;;;;;-1:-1:-1;;;29002:18:0;;;;;;;;;:9;;:18;:::i;:::-;;28876:319;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28876:319:0;;;-1:-1:-1;28876:319:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:380:1;99:1;89:12;;146:1;136:12;;;157:2;;211:4;203:6;199:17;189:27;;157:2;264;256:6;253:14;233:18;230:38;227:2;;;310:10;305:3;301:20;298:1;291:31;345:4;342:1;335:15;373:4;370:1;363:15;227:2;;69:325;;;:::o;:::-;28876:319:0;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6711:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "65:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "75:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "97:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "84:12:1"
},
"nodeType": "YulFunctionCall",
"src": "84:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "75:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "167:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "179:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "169:6:1"
},
"nodeType": "YulFunctionCall",
"src": "169:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "169:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "126:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "137:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "148:3:1"
},
"nodeType": "YulFunctionCall",
"src": "148:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "161:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "144:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "133:3:1"
},
"nodeType": "YulFunctionCall",
"src": "133:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "123:2:1"
},
"nodeType": "YulFunctionCall",
"src": "123:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "116:6:1"
},
"nodeType": "YulFunctionCall",
"src": "116:50:1"
},
"nodeType": "YulIf",
"src": "113:2:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "44:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "55:5:1",
"type": ""
}
],
"src": "14:175:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "268:303:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "317:30:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "326:8:1"
},
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "336:8:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "319:6:1"
},
"nodeType": "YulFunctionCall",
"src": "319:26:1"
},
"nodeType": "YulExpressionStatement",
"src": "319:26:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "296:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "304:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "292:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "311:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "288:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "281:6:1"
},
"nodeType": "YulFunctionCall",
"src": "281:35:1"
},
"nodeType": "YulIf",
"src": "278:2:1"
},
{
"nodeType": "YulAssignment",
"src": "356:30:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "379:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "366:12:1"
},
"nodeType": "YulFunctionCall",
"src": "366:20:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "356:6:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "429:30:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "438:8:1"
},
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "448:8:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "431:6:1"
},
"nodeType": "YulFunctionCall",
"src": "431:26:1"
},
"nodeType": "YulExpressionStatement",
"src": "431:26:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "401:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "398:2:1"
},
"nodeType": "YulFunctionCall",
"src": "398:30:1"
},
"nodeType": "YulIf",
"src": "395:2:1"
},
{
"nodeType": "YulAssignment",
"src": "468:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "484:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "480:17:1"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "468:8:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "549:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "558:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "561:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "551:6:1"
},
"nodeType": "YulFunctionCall",
"src": "551:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "551:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "520:6:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "528:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "516:3:1"
},
"nodeType": "YulFunctionCall",
"src": "516:19:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "512:3:1"
},
"nodeType": "YulFunctionCall",
"src": "512:30:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "509:2:1"
},
"nodeType": "YulFunctionCall",
"src": "509:39:1"
},
"nodeType": "YulIf",
"src": "506:2:1"
}
]
},
"name": "abi_decode_t_bytes_calldata",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "231:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "239:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "247:8:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "257:6:1",
"type": ""
}
],
"src": "194:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "646:128:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "692:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "701:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "709:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "694:6:1"
},
"nodeType": "YulFunctionCall",
"src": "694:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "694:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "667:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "676:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "663:3:1"
},
"nodeType": "YulFunctionCall",
"src": "663:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "688:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "659:3:1"
},
"nodeType": "YulFunctionCall",
"src": "659:32:1"
},
"nodeType": "YulIf",
"src": "656:2:1"
},
{
"nodeType": "YulAssignment",
"src": "727:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "758:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "737:20:1"
},
"nodeType": "YulFunctionCall",
"src": "737:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "727:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "612:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "623:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "635:6:1",
"type": ""
}
],
"src": "576:198:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "866:187:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "912:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "921:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "929:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "914:6:1"
},
"nodeType": "YulFunctionCall",
"src": "914:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "914:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "887:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "896:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "883:3:1"
},
"nodeType": "YulFunctionCall",
"src": "883:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "908:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "879:3:1"
},
"nodeType": "YulFunctionCall",
"src": "879:32:1"
},
"nodeType": "YulIf",
"src": "876:2:1"
},
{
"nodeType": "YulAssignment",
"src": "947:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "978:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "957:20:1"
},
"nodeType": "YulFunctionCall",
"src": "957:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "947:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "997:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1032:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1043:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1028:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1028:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1007:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1007:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "997:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "824:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "835:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "847:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "855:6:1",
"type": ""
}
],
"src": "779:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:238:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1208:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1217:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1225:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1210:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1210:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1210:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1183:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1192:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1179:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1179:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1204:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1175:32:1"
},
"nodeType": "YulIf",
"src": "1172:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1243:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1274:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1253:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1253:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1243:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1293:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1328:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1339:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1324:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1324:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1303:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1303:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1293:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1352:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1379:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1390:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1375:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1362:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1362:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1352:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1112:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1123:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1135:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1143:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1151:6:1",
"type": ""
}
],
"src": "1058:342:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1545:512:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1592:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1601:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1609:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1594:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1594:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1594:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1566:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1575:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1562:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1562:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1587:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1558:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1558:33:1"
},
"nodeType": "YulIf",
"src": "1555:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1627:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1658:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1637:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1637:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1627:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1677:50:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1712:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1708:18:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1687:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1687:40:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1677:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1736:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1763:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1774:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1759:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1746:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1746:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1736:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1787:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1818:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1829:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1814:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1814:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1801:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1801:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1791:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1876:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1885:6:1"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1893:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1878:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1878:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1878:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1848:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1856:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1845:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1845:30:1"
},
"nodeType": "YulIf",
"src": "1842:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1911:86:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1969:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1980:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1965:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1965:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1989:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata",
"nodeType": "YulIdentifier",
"src": "1937:27:1"
},
"nodeType": "YulFunctionCall",
"src": "1937:60:1"
},
"variables": [
{
"name": "value3_1",
"nodeType": "YulTypedName",
"src": "1915:8:1",
"type": ""
},
{
"name": "value4_1",
"nodeType": "YulTypedName",
"src": "1925:8:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2006:18:1",
"value": {
"name": "value3_1",
"nodeType": "YulIdentifier",
"src": "2016:8:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2006:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2033:18:1",
"value": {
"name": "value4_1",
"nodeType": "YulIdentifier",
"src": "2043:8:1"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2033:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1479:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1490:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1502:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1510:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1518:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1526:6:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1534:6:1",
"type": ""
}
],
"src": "1405:652:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:285:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2192:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2201:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2209:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2194:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2194:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2194:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2167:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2176:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2163:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2163:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2188:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2159:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2159:32:1"
},
"nodeType": "YulIf",
"src": "2156:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2227:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2258:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2237:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2237:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2227:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2277:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2307:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2318:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2303:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2303:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2290:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2290:32:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2281:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2375:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2384:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2392:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2377:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2377:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2377:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2344:5:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2365:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2358:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2358:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2351:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2351:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2341:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2341:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2334:40:1"
},
"nodeType": "YulIf",
"src": "2331:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2410:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2420:5:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2410:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2104:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2115:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2127:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2135:6:1",
"type": ""
}
],
"src": "2062:369:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2523:179:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2569:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2578:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2586:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2571:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2571:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2571:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2544:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2553:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2540:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2540:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2565:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2536:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2536:32:1"
},
"nodeType": "YulIf",
"src": "2533:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2604:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2635:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2614:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2614:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2604:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2654:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2692:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2677:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2664:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2664:32:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2654:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2481:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2492:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2504:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2512:6:1",
"type": ""
}
],
"src": "2436:266:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2831:452:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2877:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2886:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2894:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2879:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2879:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2879:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2852:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2861:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2848:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2848:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2873:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2844:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2844:32:1"
},
"nodeType": "YulIf",
"src": "2841:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2912:41:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2943:9:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2922:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2922:31:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2912:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2962:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2989:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3000:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2985:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2985:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2972:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2972:32:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2962:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3013:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3044:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3055:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3040:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3027:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3027:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3017:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3102:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3111:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3119:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3104:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3104:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3104:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3074:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3082:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3071:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3071:30:1"
},
"nodeType": "YulIf",
"src": "3068:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3137:86:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3195:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3206:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3191:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3191:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3215:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata",
"nodeType": "YulIdentifier",
"src": "3163:27:1"
},
"nodeType": "YulFunctionCall",
"src": "3163:60:1"
},
"variables": [
{
"name": "value2_1",
"nodeType": "YulTypedName",
"src": "3141:8:1",
"type": ""
},
{
"name": "value3_1",
"nodeType": "YulTypedName",
"src": "3151:8:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3232:18:1",
"value": {
"name": "value2_1",
"nodeType": "YulIdentifier",
"src": "3242:8:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3232:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3259:18:1",
"value": {
"name": "value3_1",
"nodeType": "YulIdentifier",
"src": "3269:8:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3259:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2773:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2784:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2796:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2804:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2812:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2820:6:1",
"type": ""
}
],
"src": "2707:576:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3357:188:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3403:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3412:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3420:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3405:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3405:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3405:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3378:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3387:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3374:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3374:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3399:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3370:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3370:32:1"
},
"nodeType": "YulIf",
"src": "3367:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3438:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3464:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3451:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3451:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3442:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3509:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3483:25:1"
},
"nodeType": "YulFunctionCall",
"src": "3483:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "3483:32:1"
},
{
"nodeType": "YulAssignment",
"src": "3524:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3534:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3524:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3323:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3334:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3346:6:1",
"type": ""
}
],
"src": "3288:257:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3630:181:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3676:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3685:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3693:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3678:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3678:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3678:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3651:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3660:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3647:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3672:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3643:32:1"
},
"nodeType": "YulIf",
"src": "3640:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3711:29:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3730:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3724:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3724:16:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3715:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3775:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3749:25:1"
},
"nodeType": "YulFunctionCall",
"src": "3749:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "3749:32:1"
},
{
"nodeType": "YulAssignment",
"src": "3790:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3800:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3790:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3596:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3607:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3619:6:1",
"type": ""
}
],
"src": "3550:261:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3886:120:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3932:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3941:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3949:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3934:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3934:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3934:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3907:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3916:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3903:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3903:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3928:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3899:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3899:32:1"
},
"nodeType": "YulIf",
"src": "3896:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3967:33:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3990:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3977:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3977:23:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3967:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3852:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3863:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3875:6:1",
"type": ""
}
],
"src": "3816:190:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4062:426:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4072:26:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4092:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4086:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4086:12:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4076:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4114:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4119:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4107:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4107:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4107:19:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4135:12:1",
"value": {
"name": "end",
"nodeType": "YulIdentifier",
"src": "4144:3:1"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4139:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4208:110:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4222:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4232:4:1",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4226:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4264:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4269:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4260:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4260:11:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4273:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4256:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4256:20:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4292:5:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4299:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4288:13:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4303:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4284:22:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4278:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4278:29:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4249:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "4249:59:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4167:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4170:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4164:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4164:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4178:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4180:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4189:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4192:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4185:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4185:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4180:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4160:3:1",
"statements": []
},
"src": "4156:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4352:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4381:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4386:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4377:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4395:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4373:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4373:27:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4402:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4366:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4366:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "4366:40:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4333:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4336:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4330:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4330:13:1"
},
"nodeType": "YulIf",
"src": "4327:2:1"
},
{
"nodeType": "YulAssignment",
"src": "4425:57:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4440:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4453:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4461:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4449:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4449:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4470:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4466:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4466:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4445:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4445:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4436:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4436:39:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4477:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4432:50:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4425:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4039:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4046:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4054:3:1",
"type": ""
}
],
"src": "4011:477:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4594:102:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4604:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4616:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4627:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4612:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4612:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4604:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4646:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4661:6:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4677:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4682:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4673:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4673:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4686:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4669:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4669:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4657:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4657:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4639:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4639:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "4639:51:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4563:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4574:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4585:4:1",
"type": ""
}
],
"src": "4493:203:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4904:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4914:29:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4932:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4937:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4928:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4928:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4941:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4924:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4924:19:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4918:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4959:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4974:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4982:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4970:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4952:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4952:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "4952:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5006:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5017:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5002:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5002:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5026:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5034:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5022:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5022:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4995:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4995:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "4995:43:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5058:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5069:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5054:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5054:18:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5074:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5047:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5047:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "5047:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5101:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5112:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5097:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5097:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5117:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5090:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5090:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "5090:31:1"
},
{
"nodeType": "YulAssignment",
"src": "5130:55:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5157:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5169:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5180:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5165:19:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "5138:18:1"
},
"nodeType": "YulFunctionCall",
"src": "5138:47:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5130:4:1"
}
]
}
]
},
"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",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4849:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4860:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4868:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4876:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4884:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4895:4:1",
"type": ""
}
],
"src": "4701:490:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5291:92:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5301:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5313:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5324:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5309:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5309:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5301:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5343:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5368:6:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5361:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5361:14:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5354:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5336:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5336:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "5336:41:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5260:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5271:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5282:4:1",
"type": ""
}
],
"src": "5196:187:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5509:100:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5526:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5537:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5519:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "5519:21:1"
},
{
"nodeType": "YulAssignment",
"src": "5549:54:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5576:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5588:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5599:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5584:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5584:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "5557:18:1"
},
"nodeType": "YulFunctionCall",
"src": "5557:46:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5549:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5478:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5489:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5500:4:1",
"type": ""
}
],
"src": "5388:221:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5715:76:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5725:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5737:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5733:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5733:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5725:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5767:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5778:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5760:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5760:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "5760:25:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5684:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5695:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5706:4:1",
"type": ""
}
],
"src": "5614:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5844:80:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5871:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5873:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5873:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5873:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5860:1:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5867:1:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5863:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5863:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5857:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5857:13:1"
},
"nodeType": "YulIf",
"src": "5854:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5902:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5913:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5916:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5909:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5909:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5902:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5827:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5830:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5836:3:1",
"type": ""
}
],
"src": "5796:128:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5978:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6000:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6002:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6002:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6002:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5994:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5997:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5991:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5991:8:1"
},
"nodeType": "YulIf",
"src": "5988:2:1"
},
{
"nodeType": "YulAssignment",
"src": "6031:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6043:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6046:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6039:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "6031:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5960:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5963:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5969:4:1",
"type": ""
}
],
"src": "5929:125:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6114:325:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6124:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6138:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6144:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6134:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6134:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6124:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6155:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6185:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6191:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6181:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6181:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6159:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6232:31:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6234:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6248:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6256:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6244:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6244:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6234:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6212:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6205:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6205:26:1"
},
"nodeType": "YulIf",
"src": "6202:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6322:111:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6343:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6350:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6355:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6346:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6336:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6336:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "6336:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6387:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6390:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6380:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6380:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6380:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6415:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6418:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6408:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6408:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6408:15:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6278:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6301:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6309:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6298:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6298:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6275:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6275:38:1"
},
"nodeType": "YulIf",
"src": "6272:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6094:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6103:6:1",
"type": ""
}
],
"src": "6059:380:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6476:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6493:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6500:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6505:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6496:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6486:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6486:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "6486:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6533:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6536:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6526:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6526:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6526:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6557:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6560:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6550:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6550:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6550:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6444:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6622:87:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6687:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6696:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6699:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6689:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6689:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6689:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6645:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6656:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6667:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6672:10:1",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6663:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6663:20:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6652:32:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6642:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6642:43:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6635:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6635:51:1"
},
"nodeType": "YulIf",
"src": "6632:2:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6611:5:1",
"type": ""
}
],
"src": "6576:133:1"
}
]
},
"contents": "{\n { }\n function abi_decode_t_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_t_bytes_calldata(offset, end) -> arrayPos, length\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(arrayPos, arrayPos) }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert(arrayPos, arrayPos) }\n arrayPos := add(offset, 0x20)\n if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value2, value2) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n {\n if slt(sub(dataEnd, headStart), 128) { revert(value4, value4) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(value4, value4) }\n let value3_1, value4_1 := abi_decode_t_bytes_calldata(add(headStart, offset), dataEnd)\n value3 := value3_1\n value4 := value4_1\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(value1, value1) }\n value1 := value\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n value1 := calldataload(add(headStart, 32))\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(value2, value2) }\n let value2_1, value3_1 := abi_decode_t_bytes_calldata(add(headStart, offset), dataEnd)\n value2 := value2_1\n value3 := value3_1\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := mload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_t_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n let i := end\n for { } lt(i, length) { i := add(i, 0x20) }\n {\n let _1 := 0x20\n mstore(add(add(pos, i), _1), mload(add(add(value, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(pos, length), 0x20), end)\n }\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_t_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_t_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function extract_byte_array_length(data) -> length\n {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function validator_revert_t_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063c87b56dd11610071578063c87b56dd14610225578063d3fc986414610238578063e985e9c51461024b578063f2fde38b1461025e578063f3fe3bc31461027157610116565b80638da5cb5b146101ef57806395d89b41146101f7578063a22cb465146101ff578063b88d4fde1461021257610116565b806323b872dd116100e957806323b872dd1461018e57806342842e0e146101a15780636352211e146101b457806370a08231146101c7578063860d248a146101e757610116565b806301ffc9a71461011b57806306fdde0314610144578063081812fc14610159578063095ea7b314610179575b600080fd5b61012e6101293660046114a8565b610279565b60405161013b9190611594565b60405180910390f35b61014c61029c565b60405161013b919061159f565b61016c6101673660046114e0565b61032e565b60405161013b9190611543565b61018c610187366004611427565b6103b0565b005b61018c61019c366004611345565b610552565b61018c6101af366004611345565b61070d565b61016c6101c23660046114e0565b61072d565b6101da6101d53660046112f9565b610785565b60405161013b91906115b2565b61014c6107dc565b61016c6107fe565b61014c61080d565b61018c61020d3660046113ed565b61081c565b61018c610220366004611380565b61088b565b61014c6102333660046114e0565b6108d4565b61018c610246366004611450565b610940565b61012e610259366004611313565b6109da565b61018c61026c3660046112f9565b610a08565b61014c610af3565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600580546102ab906115ea565b80601f01602080910402602001604051908101604052809291908181526020018280546102d7906115ea565b80156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b6000818152600160209081526040808320548151808301909252600682526518181998181960d11b9282019290925283916001600160a01b031661038e5760405162461bcd60e51b8152600401610385919061159f565b60405180910390fd5b506000838152600260205260409020546001600160a01b031691505b50919050565b60008181526001602052604090205481906001600160a01b0316338114806103fb57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b6040518060400160405280600681526020016530303330303360d01b815250906104385760405162461bcd60e51b8152600401610385919061159f565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166104925760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526506060666060760d31b918301919091526001600160a01b03908116919087168214156104f25760405162461bcd60e51b8152600401610385919061159f565b5060008581526002602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b60008181526001602052604090205481906001600160a01b03163381148061059057506000828152600260205260409020546001600160a01b031633145b806105be57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b815250906105fb5760405162461bcd60e51b8152600401610385919061159f565b50600083815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528491906001600160a01b03166106555760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b039081169190881682146106b45760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b0387166106f95760405162461bcd60e51b8152600401610385919061159f565b506107048686610b15565b50505050505050565b61072883838360405180602001604052806000815250610b90565b505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091526001600160a01b031690816103aa5760405162461bcd60e51b8152600401610385919061159f565b60408051808201909152600681526530303330303160d01b60208201526000906001600160a01b0383166107cc5760405162461bcd60e51b8152600401610385919061159f565b506107d682610e3e565b92915050565b6040518060400160405280600681526020016518189c18181960d11b81525081565b6008546001600160a01b031681565b6060600680546102ab906115ea565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061087f908590611594565b60405180910390a35050565b6108cd85858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b9092505050565b5050505050565b600081815260016020908152604091829020548251808401909352600683526518181998181960d11b9183019190915260609183916001600160a01b031661092f5760405162461bcd60e51b8152600401610385919061159f565b5061093983610e59565b9392505050565b60085460408051808201909152600681526530313830303160d01b6020820152906001600160a01b031633146109895760405162461bcd60e51b8152600401610385919061159f565b506109948484610efb565b6109d48383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fde92505050565b50505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b60085460408051808201909152600681526530313830303160d01b6020820152906001600160a01b03163314610a515760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526518189c18181960d11b60208201526001600160a01b038216610a965760405162461bcd60e51b8152600401610385919061159f565b506008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060400160405280600681526020016530313830303160d01b81525081565b6000818152600160205260409020546001600160a01b0316610b3682611057565b610b408183611075565b610b4a838361111e565b81836001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008281526001602052604090205482906001600160a01b031633811480610bce57506000828152600260205260409020546001600160a01b031633145b80610bfc57506001600160a01b038116600090815260046020908152604080832033845290915290205460ff165b604051806040016040528060068152602001650c0c0ccc0c0d60d21b81525090610c395760405162461bcd60e51b8152600401610385919061159f565b50600084815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528591906001600160a01b0316610c935760405162461bcd60e51b8152600401610385919061159f565b50600085815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b03908116919089168214610cf25760405162461bcd60e51b8152600401610385919061159f565b5060408051808201909152600681526530303330303160d01b60208201526001600160a01b038816610d375760405162461bcd60e51b8152600401610385919061159f565b50610d428787610b15565b610d54876001600160a01b03166111c6565b15610e3457604051630a85bd0160e11b81526000906001600160a01b0389169063150b7a0290610d8e9033908d908c908c90600401611557565b602060405180830381600087803b158015610da857600080fd5b505af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de091906114c4565b60408051808201909152600681526530303330303560d01b60208201529091506001600160e01b03198216630a85bd0160e11b14610e315760405162461bcd60e51b8152600401610385919061159f565b50505b5050505050505050565b6001600160a01b031660009081526003602052604090205490565b6000818152600760205260409020805460609190610e76906115ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea2906115ea565b8015610eef5780601f10610ec457610100808354040283529160200191610eef565b820191906000526020600020905b815481529060010190602001808311610ed257829003601f168201915b50505050509050919050565b60408051808201909152600681526530303330303160d01b60208201526001600160a01b038316610f3f5760405162461bcd60e51b8152600401610385919061159f565b50600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b031615610f975760405162461bcd60e51b8152600401610385919061159f565b50610fa2828261111e565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082815260016020908152604091829020548251808401909352600683526518181998181960d11b918301919091528391906001600160a01b03166110375760405162461bcd60e51b8152600401610385919061159f565b50600083815260076020908152604090912083516109d492850190611202565b600090815260026020526040902080546001600160a01b0319169055565b600081815260016020908152604091829020548251808401909352600683526530303330303760d01b918301919091526001600160a01b038481169116146110d05760405162461bcd60e51b8152600401610385919061159f565b506001600160a01b03821660009081526003602052604081208054600192906110fa9084906115d3565b9091555050600090815260016020526040902080546001600160a01b031916905550565b600081815260016020908152604091829020548251808401909352600683526518181998181b60d11b918301919091526001600160a01b0316156111755760405162461bcd60e51b8152600401610385919061159f565b50600081815260016020818152604080842080546001600160a01b0319166001600160a01b0388169081179091558452600390915282208054919290916111bd9084906115bb565b90915550505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906111fa5750808214155b949350505050565b82805461120e906115ea565b90600052602060002090601f0160209004810192826112305760008555611276565b82601f1061124957805160ff1916838001178555611276565b82800160010185558215611276579182015b8281111561127657825182559160200191906001019061125b565b50611282929150611286565b5090565b5b808211156112825760008155600101611287565b80356001600160a01b038116811461029757600080fd5b60008083601f8401126112c3578182fd5b50813567ffffffffffffffff8111156112da578182fd5b6020830191508360208285010111156112f257600080fd5b9250929050565b60006020828403121561130a578081fd5b6109398261129b565b60008060408385031215611325578081fd5b61132e8361129b565b915061133c6020840161129b565b90509250929050565b600080600060608486031215611359578081fd5b6113628461129b565b92506113706020850161129b565b9150604084013590509250925092565b600080600080600060808688031215611397578081fd5b6113a08661129b565b94506113ae6020870161129b565b935060408601359250606086013567ffffffffffffffff8111156113d0578182fd5b6113dc888289016112b2565b969995985093965092949392505050565b600080604083850312156113ff578182fd5b6114088361129b565b91506020830135801515811461141c578182fd5b809150509250929050565b60008060408385031215611439578182fd5b6114428361129b565b946020939093013593505050565b60008060008060608587031215611465578384fd5b61146e8561129b565b935060208501359250604085013567ffffffffffffffff811115611490578283fd5b61149c878288016112b2565b95989497509550505050565b6000602082840312156114b9578081fd5b813561093981611635565b6000602082840312156114d5578081fd5b815161093981611635565b6000602082840312156114f1578081fd5b5035919050565b60008151808452815b8181101561151d57602081850181015186830182015201611501565b8181111561152e5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061158a908301846114f8565b9695505050505050565b901515815260200190565b60006020825261093960208301846114f8565b90815260200190565b600082198211156115ce576115ce61161f565b500190565b6000828210156115e5576115e561161f565b500390565b6002810460018216806115fe57607f821691505b602082108114156103aa57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160e01b03198116811461164b57600080fd5b5056fea26469706673582212205e7ba294f26e02eb20b3cfb4678c90a41c70dd240a3cc003299e3e307e2fc55764736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x116 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xC87B56DD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0xD3FC9864 EQ PUSH2 0x238 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0xF3FE3BC3 EQ PUSH2 0x271 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x212 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1C7 JUMPI DUP1 PUSH4 0x860D248A EQ PUSH2 0x1E7 JUMPI PUSH2 0x116 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x179 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x129 CALLDATASIZE PUSH1 0x4 PUSH2 0x14A8 JUMP JUMPDEST PUSH2 0x279 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1594 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14C PUSH2 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1543 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0x1427 JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x552 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x1AF CALLDATASIZE PUSH1 0x4 PUSH2 0x1345 JUMP JUMPDEST PUSH2 0x70D JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x72D JUMP JUMPDEST PUSH2 0x1DA PUSH2 0x1D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x12F9 JUMP JUMPDEST PUSH2 0x785 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x15B2 JUMP JUMPDEST PUSH2 0x14C PUSH2 0x7DC JUMP JUMPDEST PUSH2 0x16C PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x14C PUSH2 0x80D JUMP JUMPDEST PUSH2 0x18C PUSH2 0x20D CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x81C JUMP JUMPDEST PUSH2 0x18C PUSH2 0x220 CALLDATASIZE PUSH1 0x4 PUSH2 0x1380 JUMP JUMPDEST PUSH2 0x88B JUMP JUMPDEST PUSH2 0x14C PUSH2 0x233 CALLDATASIZE PUSH1 0x4 PUSH2 0x14E0 JUMP JUMPDEST PUSH2 0x8D4 JUMP JUMPDEST PUSH2 0x18C PUSH2 0x246 CALLDATASIZE PUSH1 0x4 PUSH2 0x1450 JUMP JUMPDEST PUSH2 0x940 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x259 CALLDATASIZE PUSH1 0x4 PUSH2 0x1313 JUMP JUMPDEST PUSH2 0x9DA JUMP JUMPDEST PUSH2 0x18C PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x12F9 JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH2 0x14C PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x5 DUP1 SLOAD PUSH2 0x2AB SWAP1 PUSH2 0x15EA 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 0x2D7 SWAP1 PUSH2 0x15EA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x324 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x324 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x307 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x38E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 POP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x3FB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303033303033 PUSH1 0xD0 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x438 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x492 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x60606660607 PUSH1 0xD3 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP8 AND DUP3 EQ ISZERO PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0x590 JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0x5BE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0x5FB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x655 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP9 AND DUP3 EQ PUSH2 0x6B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x6F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x704 DUP7 DUP7 PUSH2 0xB15 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x728 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xB90 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH2 0x3AA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x7CC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x7D6 DUP3 PUSH2 0xE3E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x18189C181819 PUSH1 0xD1 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x6 DUP1 SLOAD PUSH2 0x2AB SWAP1 PUSH2 0x15EA JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x87F SWAP1 DUP6 SWAP1 PUSH2 0x1594 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x8CD DUP6 DUP6 DUP6 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xB90 SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP2 DUP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x92F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x939 DUP4 PUSH2 0xE59 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x989 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0x994 DUP5 DUP5 PUSH2 0xEFB JUMP JUMPDEST PUSH2 0x9D4 DUP4 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xFDE SWAP3 POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303138303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x18189C181819 PUSH1 0xD1 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA96 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x8 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP3 AND SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 PUSH1 0x8 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0x303138303031 PUSH1 0xD0 SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB36 DUP3 PUSH2 0x1057 JUMP JUMPDEST PUSH2 0xB40 DUP2 DUP4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0xB4A DUP4 DUP4 PUSH2 0x111E JUMP JUMPDEST DUP2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 EQ DUP1 PUSH2 0xBCE JUMPI POP PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST DUP1 PUSH2 0xBFC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH6 0xC0C0CCC0C0D PUSH1 0xD2 SHL DUP2 MSTORE POP SWAP1 PUSH2 0xC39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP6 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xC93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 SWAP1 DUP10 AND DUP3 EQ PUSH2 0xCF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH2 0xD37 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0xD42 DUP8 DUP8 PUSH2 0xB15 JUMP JUMPDEST PUSH2 0xD54 DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11C6 JUMP JUMPDEST ISZERO PUSH2 0xE34 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xD8E SWAP1 CALLER SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP13 SWAP1 PUSH1 0x4 ADD PUSH2 0x1557 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xDBC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xDE0 SWAP2 SWAP1 PUSH2 0x14C4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303035 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0xE31 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 PUSH2 0xE76 SWAP1 PUSH2 0x15EA 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 0xEA2 SWAP1 PUSH2 0x15EA JUMP JUMPDEST DUP1 ISZERO PUSH2 0xEEF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xEC4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xEEF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xED2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH6 0x303033303031 PUSH1 0xD0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xF3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0xF97 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH2 0xFA2 DUP3 DUP3 PUSH2 0x111E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x181819981819 PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1037 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP4 MLOAD PUSH2 0x9D4 SWAP3 DUP6 ADD SWAP1 PUSH2 0x1202 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x303033303037 PUSH1 0xD0 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND EQ PUSH2 0x10D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x10FA SWAP1 DUP5 SWAP1 PUSH2 0x15D3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x6 DUP4 MSTORE PUSH6 0x18181998181B PUSH1 0xD1 SHL SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1175 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x385 SWAP2 SWAP1 PUSH2 0x159F JUMP JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP5 MSTORE PUSH1 0x3 SWAP1 SWAP2 MSTORE DUP3 KECCAK256 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0x11BD SWAP1 DUP5 SWAP1 PUSH2 0x15BB JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 EXTCODEHASH PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x11FA JUMPI POP DUP1 DUP3 EQ ISZERO JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x120E SWAP1 PUSH2 0x15EA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1230 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1276 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1249 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1276 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1276 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1276 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x125B JUMP JUMPDEST POP PUSH2 0x1282 SWAP3 SWAP2 POP PUSH2 0x1286 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1282 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1287 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x12C3 JUMPI DUP2 DUP3 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12DA JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x12F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x130A JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x939 DUP3 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1325 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x132E DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH2 0x133C PUSH1 0x20 DUP5 ADD PUSH2 0x129B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1359 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x1362 DUP5 PUSH2 0x129B JUMP JUMPDEST SWAP3 POP PUSH2 0x1370 PUSH1 0x20 DUP6 ADD PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1397 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x13A0 DUP7 PUSH2 0x129B JUMP JUMPDEST SWAP5 POP PUSH2 0x13AE PUSH1 0x20 DUP8 ADD PUSH2 0x129B JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13D0 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x13DC DUP9 DUP3 DUP10 ADD PUSH2 0x12B2 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13FF JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x1408 DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x141C JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1439 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x1442 DUP4 PUSH2 0x129B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1465 JUMPI DUP4 DUP5 REVERT JUMPDEST PUSH2 0x146E DUP6 PUSH2 0x129B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1490 JUMPI DUP3 DUP4 REVERT JUMPDEST PUSH2 0x149C DUP8 DUP3 DUP9 ADD PUSH2 0x12B2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14B9 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x939 DUP2 PUSH2 0x1635 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14D5 JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x939 DUP2 PUSH2 0x1635 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14F1 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x151D JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1501 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x152E JUMPI DUP3 PUSH1 0x20 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x158A SWAP1 DUP4 ADD DUP5 PUSH2 0x14F8 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x939 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x14F8 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x15CE JUMPI PUSH2 0x15CE PUSH2 0x161F JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15E5 JUMPI PUSH2 0x15E5 PUSH2 0x161F JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x15FE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3AA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x164B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E PUSH28 0xA294F26E02EB20B3CFB4678C90A41C70DD240A3CC003299E3E307E2F 0xC5 JUMPI PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "28876:319:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:163;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:113;;;:::i;:::-;;;;;;;:::i;20917:173::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18778:338::-;;;;;;:::i;:::-;;:::i;:::-;;18028;;;;;;:::i;:::-;;:::i;17294:170::-;;;;;;:::i;:::-;;:::i;20483:198::-;;;;;;:::i;:::-;;:::i;20027:194::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;537:65::-;;;:::i;652:20::-;;;:::i;26944:121::-;;;:::i;19518:223::-;;;;;;:::i;:::-;;:::i;16695:199::-;;;;;;:::i;:::-;;:::i;27211:173::-;;;;;;:::i;:::-;;:::i;29030:163::-;;;;;;:::i;:::-;;:::i;21351:182::-;;;;;;:::i;:::-;;:::i;1444:229::-;;;;;;:::i;:::-;;:::i;482:51::-;;;:::i;5450:163::-;-1:-1:-1;;;;;;5575:33:0;;5554:4;5575:33;;;;;;;;;;;;;5450:163;;;;:::o;26721:113::-;26785:19;26822:7;26814:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:113;:::o;20917:173::-;21039:7;15653:19;;;:9;:19;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;21016:8;;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;21063:22:0::1;::::0;;;:12:::1;:22;::::0;;;;;-1:-1:-1;;;;;21063:22:0::1;::::0;-1:-1:-1;15708:1:0::1;20917:173:::0;;;;:::o;18778:338::-;14871:18;14892:19;;;:9;:19;;;;;;18885:8;;-1:-1:-1;;;;;14892:19:0;14946:10;14932:24;;;:68;;-1:-1:-1;;;;;;14960:28:0;;;;;;:16;:28;;;;;;;;14989:10;14960:40;;;;;;;;;;14932:68;15008:21;;;;;;;;;;;;;-1:-1:-1;;;15008:21:0;;;14917:118;;;;;-1:-1:-1;;;14917:118:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18912:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18930:18:0::2;18951:19:::0;;;:9:::2;:19;::::0;;;;;;;;;19009:8;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;19009:8:0;;::::2;::::0;;;;-1:-1:-1;;;;;18951:19:0;;::::2;::::0;19009:8;18984:23;::::2;::::0;::::2;;18976:42;;;;-1:-1:-1::0;;;18976:42:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;19025:22:0::2;::::0;;;:12:::2;:22;::::0;;;;;:34;;-1:-1:-1;;;;;;19025:34:0::2;-1:-1:-1::0;;;;;19025:34:0;;::::2;::::0;;::::2;::::0;;;19070:41;;19025:22;;19070:41;;::::2;::::0;::::2;::::0;::::2;15708:1;15041::::1;18778:338:::0;;;;:::o;18028:::-;15235:18;15256:19;;;:9;:19;;;;;;18154:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;18181:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;18199:18:0::2;18220:19:::0;;;:9:::2;:19;::::0;;;;;;;;;18274:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18274:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;18220:19:0;;::::2;::::0;18274:9;18253:19;::::2;::::0;::::2;18245:39;;;;-1:-1:-1::0;;;18245:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;18317:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;18317:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;18298:17:0;::::2;18290:40;;;;-1:-1:-1::0;;;18290:40:0::2;;;;;;;;:::i;:::-;;18337:24;18347:3;18352:8;18337:9;:24::i;:::-;15708:1;15466::::1;18028:338:::0;;;;;:::o;17294:170::-;17416:43;17434:5;17441:3;17446:8;17416:43;;;;;;;;;;;;:17;:43::i;:::-;17294:170;;;:::o;20483:198::-;20574:14;20607:19;;;:9;:19;;;;;;;;;;20662:13;;;;;;;;;;;-1:-1:-1;;;20662:13:0;;;;;;;-1:-1:-1;;;;;20607:19:0;;20640:20;20632:44;;;;-1:-1:-1;;;20632:44:0;;;;;;;;:::i;20027:194::-;20165:12;;;;;;;;;;;;-1:-1:-1;;;20165:12:0;;;;20118:7;;-1:-1:-1;;;;;20143:20:0;;20135:43;;;;-1:-1:-1;;;20135:43:0;;;;;;;;:::i;:::-;;20191:25;20209:6;20191:17;:25::i;:::-;20184:32;20027:194;-1:-1:-1;;20027:194:0:o;537:65::-;;;;;;;;;;;;;;-1:-1:-1;;;537:65:0;;;;:::o;652:20::-;;;-1:-1:-1;;;;;652:20:0;;:::o;26944:121::-;27010:21;27051:9;27041:19;;;;;:::i;19518:223::-;19643:10;19626:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;19626:39:0;;;;;;;;;;;:51;;-1:-1:-1;;19626:51:0;;;;;;;19688:48;;19626:39;;19643:10;19688:48;;;;19626:51;;19688:48;:::i;:::-;;;;;;;;19518:223;;:::o;16695:199::-;16843:46;16861:5;16868:3;16873:8;16883:5;;16843:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16843:17:0;;-1:-1:-1;;;16843:46:0:i;:::-;16695:199;;;;;:::o;27211:173::-;15684:1;15653:19;;;:9;:19;;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;27330;;27307:8;;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;;27360:19:::1;27370:8;27360:9;:19::i;:::-;27353:26:::0;27211:173;-1:-1:-1;;;27211:173:0:o;29030:163::-;1245:5;;1252:17;;;;;;;;;;;;-1:-1:-1;;;1252:17:0;;;;;-1:-1:-1;;;;;1245:5:0;1231:10;:19;1223:47;;;;-1:-1:-1;;;1223:47:0;;;;;;;;:::i;:::-;;29122:26:::1;29134:3;29139:8;29122:11;:26::i;:::-;29154:34;29173:8;29183:4;;29154:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;29154:18:0::1;::::0;-1:-1:-1;;;29154:34:0:i:1;:::-;29030:163:::0;;;;:::o;21351:182::-;-1:-1:-1;;;;;21493:24:0;;;21472:4;21493:24;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;;;21351:182::o;1444:229::-;1245:5;;1252:17;;;;;;;;;;;;-1:-1:-1;;;1252:17:0;;;;;-1:-1:-1;;;;;1245:5:0;1231:10;:19;1223:47;;;;-1:-1:-1;;;1223:47:0;;;;;;;;:::i;:::-;-1:-1:-1;1564:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;1564:31:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;1539:23:0;::::1;1531:65;;;;-1:-1:-1::0;;;1531:65:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;1628:5:0::1;::::0;1607:38:::1;::::0;-1:-1:-1;;;;;1607:38:0;;::::1;::::0;1628:5:::1;::::0;1607:38:::1;::::0;1628:5:::1;::::0;1607:38:::1;1651:5;:17:::0;;-1:-1:-1;;;;;;1651:17:0::1;-1:-1:-1::0;;;;;1651:17:0;;;::::1;::::0;;;::::1;::::0;;1444:229::o;482:51::-;;;;;;;;;;;;;;-1:-1:-1;;;482:51:0;;;;:::o;21716:274::-;21811:12;21826:19;;;:9;:19;;;;;;-1:-1:-1;;;;;21826:19:0;21851:24;21836:8;21851:14;:24::i;:::-;21882:30;21897:4;21903:8;21882:14;:30::i;:::-;21918:26;21930:3;21935:8;21918:11;:26::i;:::-;21976:8;21971:3;-1:-1:-1;;;;;21956:29:0;21965:4;-1:-1:-1;;;;;21956:29:0;;;;;;;;;;;21716:274;;;:::o;25011:569::-;15235:18;15256:19;;;:9;:19;;;;;;25152:8;;-1:-1:-1;;;;;15256:19:0;15310:10;15296:24;;;:70;;-1:-1:-1;15330:22:0;;;;:12;:22;;;;;;-1:-1:-1;;;;;15330:22:0;15356:10;15330:36;15296:70;:120;;;-1:-1:-1;;;;;;15376:28:0;;;;;;:16;:28;;;;;;;;15405:10;15376:40;;;;;;;;;;15296:120;15424:30;;;;;;;;;;;;;-1:-1:-1;;;15424:30:0;;;15281:179;;;;;-1:-1:-1;;;15281:179:0;;;;;;;;:::i;:::-;-1:-1:-1;15684:1:0::1;15653:19:::0;;;:9:::1;:19;::::0;;;;;;;;;15688:13;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;15688:13:0;;::::1;::::0;;;;25179:8;;15688:13;-1:-1:-1;;;;;15653:19:0::1;15645:57;;;;-1:-1:-1::0;;;15645:57:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;25197:18:0::2;25218:19:::0;;;:9:::2;:19;::::0;;;;;;;;;25272:9;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25272:9:0;;::::2;::::0;;;;-1:-1:-1;;;;;25218:19:0;;::::2;::::0;25272:9;25251:19;::::2;::::0;::::2;25243:39;;;;-1:-1:-1::0;;;25243:39:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;25315:12:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25315:12:0::2;::::0;::::2;::::0;-1:-1:-1;;;;;25296:17:0;::::2;25288:40;;;;-1:-1:-1::0;;;25288:40:0::2;;;;;;;;:::i;:::-;;25335:24;25345:3;25350:8;25335:9;:24::i;:::-;25370:16;:3;-1:-1:-1::0;;;;;25370:14:0::2;;:16::i;:::-;25366:210;;;25416:77;::::0;-1:-1:-1;;;25416:77:0;;25400:13:::2;::::0;-1:-1:-1;;;;;25416:41:0;::::2;::::0;::::2;::::0;:77:::2;::::0;25458:10:::2;::::0;25470:5;;25477:8;;25487:5;;25416:77:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25545:23;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25545:23:0::2;::::0;::::2;::::0;25400:93;;-1:-1:-1;;;;;;;25509:34:0;::::2;-1:-1:-1::0;;;25509:34:0::2;25501:68;;;;-1:-1:-1::0;;;25501:68:0::2;;;;;;;;:::i;:::-;;25366:210;;15708:1;15466::::1;25011:569:::0;;;;;;:::o;24588:154::-;-1:-1:-1;;;;;24710:27:0;24686:7;24710:27;;;:19;:27;;;;;;;24588:154::o;27610:144::-;27732:17;;;;:7;:17;;;;;27725:24;;27702:13;;27732:17;27725:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27610:144;;;:::o;22371:284::-;22489:12;;;;;;;;;;;;-1:-1:-1;;;22489:12:0;;;;-1:-1:-1;;;;;22470:17:0;;22462:40;;;;-1:-1:-1;;;22462:40:0;;;;;;;;:::i;:::-;-1:-1:-1;22547:1:0;22516:19;;;:9;:19;;;;;;;;;;22551:18;;;;;;;;;;;-1:-1:-1;;;22551:18:0;;;;;;;-1:-1:-1;;;;;22516:19:0;:33;22508:62;;;;-1:-1:-1;;;22508:62:0;;;;;;;;:::i;:::-;;22577:26;22589:3;22594:8;22577:11;:26::i;:::-;22615:35;;22641:8;;-1:-1:-1;;;;;22615:35:0;;;22632:1;;22615:35;;22632:1;;22615:35;22371:284;;:::o;28676:149::-;15684:1;15653:19;;;:9;:19;;;;;;;;;;15688:13;;;;;;;;;;;-1:-1:-1;;;15688:13:0;;;;;;;28778:8;;15688:13;-1:-1:-1;;;;;15653:19:0;15645:57;;;;-1:-1:-1;;;15645:57:0;;;;;;;;:::i;:::-;-1:-1:-1;28796:17:0::1;::::0;;;:7:::1;:17;::::0;;;;;;;:24;;::::1;::::0;;::::1;::::0;::::1;:::i;25707:104::-:0;25784:22;;;;:12;:22;;;;;25777:29;;-1:-1:-1;;;;;;25777:29:0;;;25707:104::o;23586:224::-;23696:19;;;;:9;:19;;;;;;;;;;23726:9;;;;;;;;;;;-1:-1:-1;;;23726:9:0;;;;;;;-1:-1:-1;;;;;23696:28:0;;;:19;;:28;23688:48;;;;-1:-1:-1;;;23688:48:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23742:26:0;;;;;;:19;:26;;;;;:31;;23772:1;;23742:26;:31;;23772:1;;23742:31;:::i;:::-;;;;-1:-1:-1;;23786:19:0;;;;:9;:19;;;;;23779:26;;-1:-1:-1;;;;;;23779:26:0;;;-1:-1:-1;23586:224:0:o;24069:231::-;24205:1;24174:19;;;:9;:19;;;;;;;;;;24209:18;;;;;;;;;;;-1:-1:-1;;;24209:18:0;;;;;;;-1:-1:-1;;;;;24174:19:0;:33;24166:62;;;;-1:-1:-1;;;24166:62:0;;;;;;;;:::i;:::-;-1:-1:-1;24235:19:0;;;;:9;:19;;;;;;;;:25;;-1:-1:-1;;;;;;24235:25:0;-1:-1:-1;;;;;24235:25:0;;;;;;;;24266:24;;:19;:24;;;;;:29;;24235:9;;24266:24;;:29;;24235:9;;24266:29;:::i;:::-;;;;-1:-1:-1;;;;24069:231:0:o;3322:762::-;3400:17;3971:18;;3876:66;4036:15;;;;;:42;;;4067:11;4055:8;:23;;4036:42;4020:59;3322:762;-1:-1:-1;;;;3322:762:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:377;;;311:3;304:4;296:6;292:17;288:27;278:2;;336:8;326;319:26;278:2;-1:-1:-1;366:20:1;;409:18;398:30;;395:2;;;448:8;438;431:26;395:2;492:4;484:6;480:17;468:29;;544:3;537:4;528:6;520;516:19;512:30;509:39;506:2;;;561:1;558;551:12;506:2;268:303;;;;;:::o;576:198::-;;688:2;676:9;667:7;663:23;659:32;656:2;;;709:6;701;694:22;656:2;737:31;758:9;737:31;:::i;779:274::-;;;908:2;896:9;887:7;883:23;879:32;876:2;;;929:6;921;914:22;876:2;957:31;978:9;957:31;:::i;:::-;947:41;;1007:40;1043:2;1032:9;1028:18;1007:40;:::i;:::-;997:50;;866:187;;;;;:::o;1058:342::-;;;;1204:2;1192:9;1183:7;1179:23;1175:32;1172:2;;;1225:6;1217;1210:22;1172:2;1253:31;1274:9;1253:31;:::i;:::-;1243:41;;1303:40;1339:2;1328:9;1324:18;1303:40;:::i;:::-;1293:50;;1390:2;1379:9;1375:18;1362:32;1352:42;;1162:238;;;;;:::o;1405:652::-;;;;;;1587:3;1575:9;1566:7;1562:23;1558:33;1555:2;;;1609:6;1601;1594:22;1555:2;1637:31;1658:9;1637:31;:::i;:::-;1627:41;;1687:40;1723:2;1712:9;1708:18;1687:40;:::i;:::-;1677:50;;1774:2;1763:9;1759:18;1746:32;1736:42;;1829:2;1818:9;1814:18;1801:32;1856:18;1848:6;1845:30;1842:2;;;1893:6;1885;1878:22;1842:2;1937:60;1989:7;1980:6;1969:9;1965:22;1937:60;:::i;:::-;1545:512;;;;-1:-1:-1;1545:512:1;;-1:-1:-1;2016:8:1;;1911:86;1545:512;-1:-1:-1;;;1545:512:1:o;2062:369::-;;;2188:2;2176:9;2167:7;2163:23;2159:32;2156:2;;;2209:6;2201;2194:22;2156:2;2237:31;2258:9;2237:31;:::i;:::-;2227:41;;2318:2;2307:9;2303:18;2290:32;2365:5;2358:13;2351:21;2344:5;2341:32;2331:2;;2392:6;2384;2377:22;2331:2;2420:5;2410:15;;;2146:285;;;;;:::o;2436:266::-;;;2565:2;2553:9;2544:7;2540:23;2536:32;2533:2;;;2586:6;2578;2571:22;2533:2;2614:31;2635:9;2614:31;:::i;:::-;2604:41;2692:2;2677:18;;;;2664:32;;-1:-1:-1;;;2523:179:1:o;2707:576::-;;;;;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:31;2943:9;2922:31;:::i;:::-;2912:41;;3000:2;2989:9;2985:18;2972:32;2962:42;;3055:2;3044:9;3040:18;3027:32;3082:18;3074:6;3071:30;3068:2;;;3119:6;3111;3104:22;3068:2;3163:60;3215:7;3206:6;3195:9;3191:22;3163:60;:::i;:::-;2831:452;;;;-1:-1:-1;3242:8:1;-1:-1:-1;;;;2831:452:1:o;3288:257::-;;3399:2;3387:9;3378:7;3374:23;3370:32;3367:2;;;3420:6;3412;3405:22;3367:2;3464:9;3451:23;3483:32;3509:5;3483:32;:::i;3550:261::-;;3672:2;3660:9;3651:7;3647:23;3643:32;3640:2;;;3693:6;3685;3678:22;3640:2;3730:9;3724:16;3749:32;3775:5;3749:32;:::i;3816:190::-;;3928:2;3916:9;3907:7;3903:23;3899:32;3896:2;;;3949:6;3941;3934:22;3896:2;-1:-1:-1;3977:23:1;;3886:120;-1:-1:-1;3886:120:1:o;4011:477::-;;4092:5;4086:12;4119:6;4114:3;4107:19;4144:3;4156:162;4170:6;4167:1;4164:13;4156:162;;;4232:4;4288:13;;;4284:22;;4278:29;4260:11;;;4256:20;;4249:59;4185:12;4156:162;;;4336:6;4333:1;4330:13;4327:2;;;4402:3;4395:4;4386:6;4381:3;4377:16;4373:27;4366:40;4327:2;-1:-1:-1;4470:2:1;4449:15;-1:-1:-1;;4445:29:1;4436:39;;;;4477:4;4432:50;;4062:426;-1:-1:-1;;4062:426:1:o;4493:203::-;-1:-1:-1;;;;;4657:32:1;;;;4639:51;;4627:2;4612:18;;4594:102::o;4701:490::-;-1:-1:-1;;;;;4970:15:1;;;4952:34;;5022:15;;5017:2;5002:18;;4995:43;5069:2;5054:18;;5047:34;;;5117:3;5112:2;5097:18;;5090:31;;;4701:490;;5138:47;;5165:19;;5157:6;5138:47;:::i;:::-;5130:55;4904:287;-1:-1:-1;;;;;;4904:287:1:o;5196:187::-;5361:14;;5354:22;5336:41;;5324:2;5309:18;;5291:92::o;5388:221::-;;5537:2;5526:9;5519:21;5557:46;5599:2;5588:9;5584:18;5576:6;5557:46;:::i;5614:177::-;5760:25;;;5748:2;5733:18;;5715:76::o;5796:128::-;;5867:1;5863:6;5860:1;5857:13;5854:2;;;5873:18;;:::i;:::-;-1:-1:-1;5909:9:1;;5844:80::o;5929:125::-;;5997:1;5994;5991:8;5988:2;;;6002:18;;:::i;:::-;-1:-1:-1;6039:9:1;;5978:76::o;6059:380::-;6144:1;6134:12;;6191:1;6181:12;;;6202:2;;6256:4;6248:6;6244:17;6234:27;;6202:2;6309;6301:6;6298:14;6278:18;6275:38;6272:2;;;6355:10;6350:3;6346:20;6343:1;6336:31;6390:4;6387:1;6380:15;6418:4;6415:1;6408:15;6444:127;6505:10;6500:3;6496:20;6493:1;6486:31;6536:4;6533:1;6526:15;6560:4;6557:1;6550:15;6576:133;-1:-1:-1;;;;;;6652:32:1;;6642:43;;6632:2;;6699:1;6696;6689:12;6632:2;6622:87;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1152800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"CANNOT_TRANSFER_TO_ZERO_ADDRESS()": "infinite",
"NOT_CURRENT_OWNER()": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "infinite",
"getApproved(uint256)": "infinite",
"isApprovedForAll(address,address)": "infinite",
"mint(address,uint256,string)": "infinite",
"name()": "infinite",
"owner()": "1093",
"ownerOf(uint256)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "23285",
"supportsInterface(bytes4)": "1318",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "infinite"
}
},
"methodIdentifiers": {
"CANNOT_TRANSFER_TO_ZERO_ADDRESS()": "860d248a",
"NOT_CURRENT_OWNER()": "f3fe3bc3",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"mint(address,uint256,string)": "d3fc9864",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"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",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [],
"name": "CANNOT_TRANSFER_TO_ZERO_ADDRESS",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "NOT_CURRENT_OWNER",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_approved",
"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": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "string",
"name": "_uri",
"type": "string"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": "_symbol",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "_newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [],
"name": "CANNOT_TRANSFER_TO_ZERO_ADDRESS",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "NOT_CURRENT_OWNER",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_approved",
"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": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "string",
"name": "_uri",
"type": "string"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "_owner",
"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": "_symbol",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "_newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Set or reaffirm the approved address for an NFT. This function can be changed to payable.",
"params": {
"_approved": "Address to be approved for the given NFT ID.",
"_tokenId": "ID of the token to be approved."
}
},
"balanceOf(address)": {
"details": "Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are considered invalid, and this function throws for queries about the zero address.",
"params": {
"_owner": "Address for whom to query the balance."
},
"returns": {
"_0": "Balance of _owner."
}
},
"getApproved(uint256)": {
"details": "Get the approved address for a single NFT.",
"params": {
"_tokenId": "ID of the NFT to query the approval of."
},
"returns": {
"_0": "Address that _tokenId is approved for."
}
},
"isApprovedForAll(address,address)": {
"details": "Checks if `_operator` is an approved operator for `_owner`.",
"params": {
"_operator": "The address that acts on behalf of the owner.",
"_owner": "The address that owns the NFTs."
},
"returns": {
"_0": "True if approved for all, false otherwise."
}
},
"name()": {
"details": "Returns a descriptive name for a collection of NFTokens.",
"returns": {
"_name": "Representing name."
}
},
"ownerOf(uint256)": {
"details": "Returns the address of the owner of the NFT. NFTs assigned to the zero address are considered invalid, and queries about them do throw.",
"params": {
"_tokenId": "The identifier for an NFT."
},
"returns": {
"_owner": "Address of _tokenId owner."
}
},
"safeTransferFrom(address,address,uint256)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.",
"params": {
"_data": "Additional data with no specified format, sent in call to `_to`.",
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"setApprovalForAll(address,bool)": {
"details": "Enables or disables approval for a third party (\"operator\") to manage all of `msg.sender`'s assets. It also emits the ApprovalForAll event.",
"params": {
"_approved": "True if the operators is approved, false to revoke approval.",
"_operator": "Address to add to the set of authorized operators."
}
},
"supportsInterface(bytes4)": {
"details": "Function to check which interfaces are suported by this contract.",
"params": {
"_interfaceID": "Id of the interface."
},
"returns": {
"_0": "True if _interfaceID is supported, false otherwise."
}
},
"symbol()": {
"details": "Returns an abbreviated name for NFTokens.",
"returns": {
"_symbol": "Representing symbol."
}
},
"tokenURI(uint256)": {
"details": "A distinct URI (RFC 3986) for a given NFT.",
"params": {
"_tokenId": "Id for which we want uri."
},
"returns": {
"_0": "URI of _tokenId."
}
},
"transferFrom(address,address,uint256)": {
"details": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.",
"params": {
"_from": "The current owner of the NFT.",
"_to": "The new owner.",
"_tokenId": "The NFT to transfer."
}
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"_newOwner": "The address to transfer ownership to."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"approve(address,uint256)": {
"notice": "The zero address indicates there is no approved address. Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner."
},
"getApproved(uint256)": {
"notice": "Throws if `_tokenId` is not a valid NFT."
},
"safeTransferFrom(address,address,uint256)": {
"notice": "This works identically to the other function with an extra data parameter, except this function just sets data to \"\"."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"notice": "Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this function checks if `_to` is a smart contract (code size > 0). If so, it calls `onERC721Received` on `_to` and throws if the return value is not `bytes4(keccak256(\"onERC721Received(address,uint256,bytes)\"))`."
},
"setApprovalForAll(address,bool)": {
"notice": "This works even if sender doesn't own any tokens at the time."
},
"transferFrom(address,address,uint256)": {
"notice": "The caller is responsible to confirm that `_to` is capable of receiving NFTs or else they may be permanently lost."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "ParticipationNFT"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600117905560dd8061005b6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c806301ffc9a714602d575b600080fd5b603c6038366004606f565b6050565b60405160479190609c565b60405180910390f35b6001600160e01b03191660009081526020819052604090205460ff1690565b600060208284031215607f578081fd5b81356001600160e01b0319811681146095578182fd5b9392505050565b90151581526020019056fea26469706673582212201f46123dce51e306149b501c81b2aa9b22ac43a53a526bf2df43b8636708a05d64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 MSTORE PUSH32 0x67BE87C3FF9960CA1E9CFAC5CAB2FF4747269CF9ED20C9B7306235AC35A491C5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0xDD DUP1 PUSH2 0x5B PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3C PUSH1 0x38 CALLDATASIZE PUSH1 0x4 PUSH1 0x6F JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x47 SWAP2 SWAP1 PUSH1 0x9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x7F JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH1 0x95 JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1F CHAINID SLT RETURNDATASIZE 0xCE MLOAD 0xE3 MOD EQ SWAP12 POP SHR DUP2 0xB2 0xAA SWAP12 0x22 0xAC NUMBER 0xA5 GASPRICE MSTORE PUSH12 0xF2DF43B8636708A05D64736F PUSH13 0x63430008000033000000000000 ",
"sourceMap": "4927:689:0:-:0;;;5172:75;;;;;;;;;-1:-1:-1;;;;5194:19:0;:31;;;;;;:38;;-1:-1:-1;;5194:38:0;5228:4;5194:38;;;4927:689;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:514:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "83:237:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "129:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "138:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "146:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "131:6:1"
},
"nodeType": "YulFunctionCall",
"src": "131:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "131:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "104:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "113:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "100:3:1"
},
"nodeType": "YulFunctionCall",
"src": "100:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "125:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "96:3:1"
},
"nodeType": "YulFunctionCall",
"src": "96:32:1"
},
"nodeType": "YulIf",
"src": "93:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "164:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "190:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "177:12:1"
},
"nodeType": "YulFunctionCall",
"src": "177:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "168:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "264:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "273:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "281:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "266:6:1"
},
"nodeType": "YulFunctionCall",
"src": "266:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "222:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "233:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "244:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "249:10:1",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "240:3:1"
},
"nodeType": "YulFunctionCall",
"src": "240:20:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
"nodeType": "YulFunctionCall",
"src": "229:32:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "219:2:1"
},
"nodeType": "YulFunctionCall",
"src": "219:43:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "212:6:1"
},
"nodeType": "YulFunctionCall",
"src": "212:51:1"
},
"nodeType": "YulIf",
"src": "209:2:1"
},
{
"nodeType": "YulAssignment",
"src": "299:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "309:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "299:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "49:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "60:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "72:6:1",
"type": ""
}
],
"src": "14:306:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "420:92:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "430:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "442:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "453:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "438:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "430:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "472:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "497:6:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "490:6:1"
},
"nodeType": "YulFunctionCall",
"src": "490:14:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "483:6:1"
},
"nodeType": "YulFunctionCall",
"src": "483:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "465:6:1"
},
"nodeType": "YulFunctionCall",
"src": "465:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "465:41:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "389:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "400:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "411:4:1",
"type": ""
}
],
"src": "325:187:1"
}
]
},
"contents": "{\n { }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(value0, value0) }\n value0 := value\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b506004361060285760003560e01c806301ffc9a714602d575b600080fd5b603c6038366004606f565b6050565b60405160479190609c565b60405180910390f35b6001600160e01b03191660009081526020819052604090205460ff1690565b600060208284031215607f578081fd5b81356001600160e01b0319811681146095578182fd5b9392505050565b90151581526020019056fea26469706673582212201f46123dce51e306149b501c81b2aa9b22ac43a53a526bf2df43b8636708a05d64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3C PUSH1 0x38 CALLDATASIZE PUSH1 0x4 PUSH1 0x6F JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x47 SWAP2 SWAP1 PUSH1 0x9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x7F JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH1 0x95 JUMPI DUP2 DUP3 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1F CHAINID SLT RETURNDATASIZE 0xCE MLOAD 0xE3 MOD EQ SWAP12 POP SHR DUP2 0xB2 0xAA SWAP12 0x22 0xAC NUMBER 0xA5 GASPRICE MSTORE PUSH12 0xF2DF43B8636708A05D64736F PUSH13 0x63430008000033000000000000 ",
"sourceMap": "4927:689:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:163;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;5575:33:0;5554:4;5575:33;;;;;;;;;;;;;;5450:163::o;14:306:1:-;;125:2;113:9;104:7;100:23;96:32;93:2;;;146:6;138;131:22;93:2;177:23;;-1:-1:-1;;;;;;229:32:1;;219:43;;209:2;;281:6;273;266:22;209:2;309:5;83:237;-1:-1:-1;;;83:237:1:o;325:187::-;490:14;;483:22;465:41;;453:2;438:18;;420:92::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "44200",
"executionCost": "20944",
"totalCost": "65144"
},
"external": {
"supportsInterface(bytes4)": "1234"
}
},
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "_interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "_interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of standard for detect smart contract interfaces.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Contract constructor."
},
"supportsInterface(bytes4)": {
"details": "Function to check which interfaces are suported by this contract.",
"params": {
"_interfaceID": "Id of the interface."
},
"returns": {
"_0": "True if _interfaceID is supported, false otherwise."
}
}
},
"stateVariables": {
"supportedInterfaces": {
"details": "Mapping of supported intefraces. You must not set element 0xffffffff to true."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"nft_flat.sol": "SupportsInterface"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"nft_flat.sol": {
"keccak256": "0xec7c4ca7678b2a27c58530a27eaee83ba4369066694afd4016b81467e0fa7edc",
"urls": [
"bzz-raw://4705607dee7a13afa3c7fe370796b25da99fc38ad43f8ad60b1f9aac2bd8e780",
"dweb:/ipfs/QmWwfxgeaSVPgnc6G4VvbNArJtKFngw4UWa4h8k8Ska2FS"
]
}
},
"version": 1
}
{"compiler":{"version":"0.8.0+commit.c7dfd78e"},"language":"Solidity","output":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"CANNOT_TRANSFER_TO_ZERO_ADDRESS","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_CURRENT_OWNER","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"_owner","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":"_symbol","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"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"devdoc":{"kind":"dev","methods":{"approve(address,uint256)":{"details":"Set or reaffirm the approved address for an NFT. This function can be changed to payable.","params":{"_approved":"Address to be approved for the given NFT ID.","_tokenId":"ID of the token to be approved."}},"balanceOf(address)":{"details":"Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are considered invalid, and this function throws for queries about the zero address.","params":{"_owner":"Address for whom to query the balance."},"returns":{"_0":"Balance of _owner."}},"getApproved(uint256)":{"details":"Get the approved address for a single NFT.","params":{"_tokenId":"ID of the NFT to query the approval of."},"returns":{"_0":"Address that _tokenId is approved for."}},"isApprovedForAll(address,address)":{"details":"Checks if `_operator` is an approved operator for `_owner`.","params":{"_operator":"The address that acts on behalf of the owner.","_owner":"The address that owns the NFTs."},"returns":{"_0":"True if approved for all, false otherwise."}},"name()":{"details":"Returns a descriptive name for a collection of NFTokens.","returns":{"_name":"Representing name."}},"ownerOf(uint256)":{"details":"Returns the address of the owner of the NFT. NFTs assigned to the zero address are considered invalid, and queries about them do throw.","params":{"_tokenId":"The identifier for an NFT."},"returns":{"_owner":"Address of _tokenId owner."}},"safeTransferFrom(address,address,uint256)":{"details":"Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.","params":{"_from":"The current owner of the NFT.","_to":"The new owner.","_tokenId":"The NFT to transfer."}},"safeTransferFrom(address,address,uint256,bytes)":{"details":"Transfers the ownership of an NFT from one address to another address. This function can be changed to payable.","params":{"_data":"Additional data with no specified format, sent in call to `_to`.","_from":"The current owner of the NFT.","_to":"The new owner.","_tokenId":"The NFT to transfer."}},"setApprovalForAll(address,bool)":{"details":"Enables or disables approval for a third party (\"operator\") to manage all of `msg.sender`'s assets. It also emits the ApprovalForAll event.","params":{"_approved":"True if the operators is approved, false to revoke approval.","_operator":"Address to add to the set of authorized operators."}},"supportsInterface(bytes4)":{"details":"Function to check which interfaces are suported by this contract.","params":{"_interfaceID":"Id of the interface."},"returns":{"_0":"True if _interfaceID is supported, false otherwise."}},"symbol()":{"details":"Returns an abbreviated name for NFTokens.","returns":{"_symbol":"Representing symbol."}},"tokenURI(uint256)":{"details":"A distinct URI (RFC 3986) for a given NFT.","params":{"_tokenId":"Id for which we want uri."},"returns":{"_0":"URI of _tokenId."}},"transferFrom(address,address,uint256)":{"details":"Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.","params":{"_from":"The current owner of the NFT.","_to":"The new owner.","_tokenId":"The NFT to transfer."}},"transferOwnership(address)":{"details":"Allows the current owner to transfer control of the contract to a newOwner.","params":{"_newOwner":"The address to transfer ownership to."}}},"version":1},"userdoc":{"kind":"user","methods":{"approve(address,uint256)":{"notice":"The zero address indicates there is no approved address. Throws unless `msg.sender` is the current NFT owner, or an authorized operator of the current owner."},"getApproved(uint256)":{"notice":"Throws if `_tokenId` is not a valid NFT."},"safeTransferFrom(address,address,uint256)":{"notice":"This works identically to the other function with an extra data parameter, except this function just sets data to \"\"."},"safeTransferFrom(address,address,uint256,bytes)":{"notice":"Throws unless `msg.sender` is the current owner, an authorized operator, or the approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this function checks if `_to` is a smart contract (code size > 0). If so, it calls `onERC721Received` on `_to` and throws if the return value is not `bytes4(keccak256(\"onERC721Received(address,uint256,bytes)\"))`."},"setApprovalForAll(address,bool)":{"notice":"This works even if sender doesn't own any tokens at the time."},"transferFrom(address,address,uint256)":{"notice":"The caller is responsible to confirm that `_to` is capable of receiving NFTs or else they may be permanently lost."}},"version":1}},"settings":{"compilationTarget":{"nft.sol":"ParticipationNFT"},"evmVersion":"istanbul","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[]},"sources":{"https://github.com/nibbstack/erc721/blob/master/src/contracts/ownership/ownable.sol":{"keccak256":"0x908240d3963f350dadc785d79f11471753f0fb6c75892a2678a397c295874336","license":"MIT","urls":["bzz-raw://f458d0715dce36e97e7fb507429db7c2b98d611c9c90b46111eadd12e5a06df7","dweb:/ipfs/QmdeQ3Apwx9DwEYzxGj5iUmiUTv87PG12GUmqbbQGs1fYu"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721-metadata.sol":{"keccak256":"0xcfc0a167050f23a3f92853c3fbbdddbcc6d225c77cd3e64652c767ee25fa7ca1","license":"MIT","urls":["bzz-raw://00b56ac60fb17e8952ac722c6cb5254f999bc9f58c7369882f5c0335f1720252","dweb:/ipfs/QmQPKw5NNyoiSKzQptxEdQ1cUZFgAeuKPsjcuMN4zpFDYJ"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721-token-receiver.sol":{"keccak256":"0x99ce9e2c0a810cc6e281c5da9c8b24cffb26f0da6dc9cf422a918f3604f24a02","license":"MIT","urls":["bzz-raw://f1de6f77cfd4eef30c77aadb18f024f9d62497a846bbe90ec6d9b1ba8fe952f1","dweb:/ipfs/QmSqJKA5ZyciDR4NXme3tjCyMxfkXMFTaTTGsjmfhZZEso"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721.sol":{"keccak256":"0xc3ad568e38940de085b4beba2b74242a433de410bc0a5efb957d5afcf42d5453","license":"MIT","urls":["bzz-raw://d61b3a889568966553961a54939db431849ec3c4038dbe2ae108bc8cc92a0d55","dweb:/ipfs/QmUiXGskuzSbdSydkDoLRGuxqN5MERxnXpfBy2WtkDCpNy"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token-metadata.sol":{"keccak256":"0xdfc9113ee9d6be39f76a577e5413244b6e49fd955c05fb0a4736760e83bb8529","license":"MIT","urls":["bzz-raw://d6a01f407d74f0a22293dfec41de64e75be4291ee882016c9227bafcff4d18c3","dweb:/ipfs/QmRTATRodWivPbFMDpH9Aq4DxPrtYyLmNsMxT1oZHQeZhJ"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token.sol":{"keccak256":"0x12beffd91a48478e4de7d7db431682b56bd09ee7371de47f3b163c1db7e1a7b4","license":"MIT","urls":["bzz-raw://4d62b078005746c56ef747f6348d961fa7f96bb49d29a5b9f038c85b88ff4daf","dweb:/ipfs/QmajbugaBtyYGiB6igx61RbnaRnkYhxS8pv1V7xQmG5vRP"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/address-utils.sol":{"keccak256":"0x334951ffc57e89f6a445855e3e5eb74daa60d8eebfbc6be26cd315af649e1a77","license":"MIT","urls":["bzz-raw://2c67cbe0a1250f224990d9637546b4fc89c0e66e7dddda26b9952af88c024480","dweb:/ipfs/QmZrzwVSXYfonakEtzxFNucZZcrE2PPym1MxoNum4fmXq5"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/erc165.sol":{"keccak256":"0x926d28b30f5abaa07933383993c7f9a64cc2f93f7e51681edc957d8f5b9c5b90","license":"MIT","urls":["bzz-raw://5f89a53e07499c04d0f667e6692da52a47d4cb8a79e5937809e08c23138a5b3b","dweb:/ipfs/QmeoL8qx7cAUeXanVF7irgqdtLwwjhFo1QvZ8h4XAKreUe"]},"https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/supports-interface.sol":{"keccak256":"0xf0daec317a540048091f2795f3bd7d31fe80858f5f17bf2c3936e112b18ec6e5","license":"MIT","urls":["bzz-raw://6c7a2248f7d03daafa1ff7547de55331875c8ae25b04ec8f48905016309be4db","dweb:/ipfs/QmRq3jzFRVsuz63u2LURRCK9Ma81q1wRr3PXC765F4dAuK"]},"nft.sol":{"keccak256":"0x389506f328e4d9a521991639a2f4f3687d1938a0162147a8bc7916c356c7b6d3","license":"MIT","urls":["bzz-raw://d37bca34be0ba54fbfb668e1bb02a9552d0f9433fa54fbeb569ae9d8e93a743d","dweb:/ipfs/QmYRFHTdzfUaufzjvxQHmAJkaYPrSGP3or1RR6CgZAf7AR"]}},"version":1}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token-metadata.sol";
import "https://github.com/nibbstack/erc721/blob/master/src/contracts/ownership/ownable.sol";
contract ParticipationNFT is NFTokenMetadata, Ownable {
constructor() {
nftName = "Crypto El Nuevo Ahora 19/12/22";
nftSymbol = "KM-1";
}
function mint(address _to, uint256 _tokenId, string calldata _uri) external onlyOwner {
super._mint(_to, _tokenId);
super._setTokenUri(_tokenId, _uri);
}
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/ownership/ownable.sol
pragma solidity ^0.8.0;
/**
* @dev The contract has an owner address, and provides basic authorization control whitch
* simplifies the implementation of user permissions. This contract is based on the source code at:
* https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/ownership/Ownable.sol
*/
contract Ownable
{
/**
* @dev Error constants.
*/
string public constant NOT_CURRENT_OWNER = "018001";
string public constant CANNOT_TRANSFER_TO_ZERO_ADDRESS = "018002";
/**
* @dev Current owner address.
*/
address public owner;
/**
* @dev An event which is triggered when the owner is changed.
* @param previousOwner The address of the previous owner.
* @param newOwner The address of the new owner.
*/
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The constructor sets the original `owner` of the contract to the sender account.
*/
constructor()
{
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner()
{
require(msg.sender == owner, NOT_CURRENT_OWNER);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(
address _newOwner
)
public
onlyOwner
{
require(_newOwner != address(0), CANNOT_TRANSFER_TO_ZERO_ADDRESS);
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721-metadata.sol
pragma solidity ^0.8.0;
/**
* @dev Optional metadata extension for ERC-721 non-fungible token standard.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721Metadata
{
/**
* @dev Returns a descriptive name for a collection of NFTs in this contract.
* @return _name Representing name.
*/
function name()
external
view
returns (string memory _name);
/**
* @dev Returns a abbreviated name for a collection of NFTs in this contract.
* @return _symbol Representing symbol.
*/
function symbol()
external
view
returns (string memory _symbol);
/**
* @dev Returns a distinct Uniform Resource Identifier (URI) for a given asset. It Throws if
* `_tokenId` is not a valid NFT. URIs are defined in RFC3986. The URI may point to a JSON file
* that conforms to the "ERC721 Metadata JSON Schema".
* @return URI of _tokenId.
*/
function tokenURI(uint256 _tokenId)
external
view
returns (string memory);
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/address-utils.sol
pragma solidity ^0.8.0;
/**
* @notice Based on:
* https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
* Requires EIP-1052.
* @dev Utility library of inline functions on addresses.
*/
library AddressUtils
{
/**
* @dev Returns whether the target address is a contract.
* @param _addr Address to check.
* @return addressCheck True if _addr is a contract, false if not.
*/
function isContract(
address _addr
)
internal
view
returns (bool addressCheck)
{
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
assembly { codehash := extcodehash(_addr) } // solhint-disable-line
addressCheck = (codehash != 0x0 && codehash != accountHash);
}
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/erc165.sol
pragma solidity ^0.8.0;
/**
* @dev A standard for detecting smart contract interfaces.
* See: https://eips.ethereum.org/EIPS/eip-165.
*/
interface ERC165
{
/**
* @dev Checks if the smart contract includes a specific interface.
* This function uses less than 30,000 gas.
* @param _interfaceID The interface identifier, as specified in ERC-165.
* @return True if _interfaceID is supported, false otherwise.
*/
function supportsInterface(
bytes4 _interfaceID
)
external
view
returns (bool);
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/utils/supports-interface.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of standard for detect smart contract interfaces.
*/
contract SupportsInterface is
ERC165
{
/**
* @dev Mapping of supported intefraces. You must not set element 0xffffffff to true.
*/
mapping(bytes4 => bool) internal supportedInterfaces;
/**
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x01ffc9a7] = true; // ERC165
}
/**
* @dev Function to check which interfaces are suported by this contract.
* @param _interfaceID Id of the interface.
* @return True if _interfaceID is supported, false otherwise.
*/
function supportsInterface(
bytes4 _interfaceID
)
external
override
view
returns (bool)
{
return supportedInterfaces[_interfaceID];
}
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721-token-receiver.sol
pragma solidity ^0.8.0;
/**
* @dev ERC-721 interface for accepting safe transfers.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721TokenReceiver
{
/**
* @notice The contract address is always the message sender. A wallet/broker/auction application
* MUST implement the wallet interface if it will accept safe transfers.
* @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the
* recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return
* of other than the magic value MUST result in the transaction being reverted.
* Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` unless throwing.
* @param _operator The address which called `safeTransferFrom` function.
* @param _from The address which previously owned the token.
* @param _tokenId The NFT identifier which is being transferred.
* @param _data Additional data with no specified format.
* @return Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
*/
function onERC721Received(
address _operator,
address _from,
uint256 _tokenId,
bytes calldata _data
)
external
returns(bytes4);
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/erc721.sol
pragma solidity ^0.8.0;
/**
* @dev ERC-721 non-fungible token standard.
* See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md.
*/
interface ERC721
{
/**
* @dev Emits when ownership of any NFT changes by any mechanism. This event emits when NFTs are
* created (`from` == 0) and destroyed (`to` == 0). Exception: during contract creation, any
* number of NFTs may be created and assigned without emitting Transfer. At the time of any
* transfer, the approved address for that NFT (if any) is reset to none.
*/
event Transfer(
address indexed _from,
address indexed _to,
uint256 indexed _tokenId
);
/**
* @dev This emits when the approved address for an NFT is changed or reaffirmed. The zero
* address indicates there is no approved address. When a Transfer event emits, this also
* indicates that the approved address for that NFT (if any) is reset to none.
*/
event Approval(
address indexed _owner,
address indexed _approved,
uint256 indexed _tokenId
);
/**
* @dev This emits when an operator is enabled or disabled for an owner. The operator can manage
* all NFTs of the owner.
*/
event ApprovalForAll(
address indexed _owner,
address indexed _operator,
bool _approved
);
/**
* @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
* approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
* the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
* function checks if `_to` is a smart contract (code size > 0). If so, it calls
* `onERC721Received` on `_to` and throws if the return value is not
* `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes calldata _data
)
external;
/**
* @notice This works identically to the other function with an extra data parameter, except this
* function just sets data to ""
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId
)
external;
/**
* @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
* they may be permanently lost.
* @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
* address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
* address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function transferFrom(
address _from,
address _to,
uint256 _tokenId
)
external;
/**
* @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
* the current NFT owner, or an authorized operator of the current owner.
* @param _approved The new approved NFT controller.
* @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable.
* @param _tokenId The NFT to approve.
*/
function approve(
address _approved,
uint256 _tokenId
)
external;
/**
* @notice The contract MUST allow multiple operators per owner.
* @dev Enables or disables approval for a third party ("operator") to manage all of
* `msg.sender`'s assets. It also emits the ApprovalForAll event.
* @param _operator Address to add to the set of authorized operators.
* @param _approved True if the operators is approved, false to revoke approval.
*/
function setApprovalForAll(
address _operator,
bool _approved
)
external;
/**
* @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
* considered invalid, and this function throws for queries about the zero address.
* @notice Count all NFTs assigned to an owner.
* @param _owner Address for whom to query the balance.
* @return Balance of _owner.
*/
function balanceOf(
address _owner
)
external
view
returns (uint256);
/**
* @notice Find the owner of an NFT.
* @dev Returns the address of the owner of the NFT. NFTs assigned to the zero address are
* considered invalid, and queries about them do throw.
* @param _tokenId The identifier for an NFT.
* @return Address of _tokenId owner.
*/
function ownerOf(
uint256 _tokenId
)
external
view
returns (address);
/**
* @notice Throws if `_tokenId` is not a valid NFT.
* @dev Get the approved address for a single NFT.
* @param _tokenId The NFT to find the approved address for.
* @return Address that _tokenId is approved for.
*/
function getApproved(
uint256 _tokenId
)
external
view
returns (address);
/**
* @notice Query if an address is an authorized operator for another address.
* @dev Returns true if `_operator` is an approved operator for `_owner`, false otherwise.
* @param _owner The address that owns the NFTs.
* @param _operator The address that acts on behalf of the owner.
* @return True if approved for all, false otherwise.
*/
function isApprovedForAll(
address _owner,
address _operator
)
external
view
returns (bool);
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of ERC-721 non-fungible token standard.
*/
contract NFToken is
ERC721,
SupportsInterface
{
using AddressUtils for address;
/**
* @dev List of revert message codes. Implementing dApp should handle showing the correct message.
* Based on 0xcert framework error codes.
*/
string constant ZERO_ADDRESS = "003001";
string constant NOT_VALID_NFT = "003002";
string constant NOT_OWNER_OR_OPERATOR = "003003";
string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004";
string constant NOT_ABLE_TO_RECEIVE_NFT = "003005";
string constant NFT_ALREADY_EXISTS = "003006";
string constant NOT_OWNER = "003007";
string constant IS_OWNER = "003008";
/**
* @dev Magic value of a smart contract that can receive NFT.
* Equal to: bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")).
*/
bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02;
/**
* @dev A mapping from NFT ID to the address that owns it.
*/
mapping (uint256 => address) internal idToOwner;
/**
* @dev Mapping from NFT ID to approved address.
*/
mapping (uint256 => address) internal idToApproval;
/**
* @dev Mapping from owner address to count of their tokens.
*/
mapping (address => uint256) private ownerToNFTokenCount;
/**
* @dev Mapping from owner address to mapping of operator addresses.
*/
mapping (address => mapping (address => bool)) internal ownerToOperators;
/**
* @dev Guarantees that the msg.sender is an owner or operator of the given NFT.
* @param _tokenId ID of the NFT to validate.
*/
modifier canOperate(
uint256 _tokenId
)
{
address tokenOwner = idToOwner[_tokenId];
require(
tokenOwner == msg.sender || ownerToOperators[tokenOwner][msg.sender],
NOT_OWNER_OR_OPERATOR
);
_;
}
/**
* @dev Guarantees that the msg.sender is allowed to transfer NFT.
* @param _tokenId ID of the NFT to transfer.
*/
modifier canTransfer(
uint256 _tokenId
)
{
address tokenOwner = idToOwner[_tokenId];
require(
tokenOwner == msg.sender
|| idToApproval[_tokenId] == msg.sender
|| ownerToOperators[tokenOwner][msg.sender],
NOT_OWNER_APPROVED_OR_OPERATOR
);
_;
}
/**
* @dev Guarantees that _tokenId is a valid Token.
* @param _tokenId ID of the NFT to validate.
*/
modifier validNFToken(
uint256 _tokenId
)
{
require(idToOwner[_tokenId] != address(0), NOT_VALID_NFT);
_;
}
/**
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x80ac58cd] = true; // ERC721
}
/**
* @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the
* approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is
* the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this
* function checks if `_to` is a smart contract (code size > 0). If so, it calls
* `onERC721Received` on `_to` and throws if the return value is not
* `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`.
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes calldata _data
)
external
override
{
_safeTransferFrom(_from, _to, _tokenId, _data);
}
/**
* @notice This works identically to the other function with an extra data parameter, except this
* function just sets data to "".
* @dev Transfers the ownership of an NFT from one address to another address. This function can
* be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function safeTransferFrom(
address _from,
address _to,
uint256 _tokenId
)
external
override
{
_safeTransferFrom(_from, _to, _tokenId, "");
}
/**
* @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
* they may be permanently lost.
* @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved
* address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
* address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
*/
function transferFrom(
address _from,
address _to,
uint256 _tokenId
)
external
override
canTransfer(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(tokenOwner == _from, NOT_OWNER);
require(_to != address(0), ZERO_ADDRESS);
_transfer(_to, _tokenId);
}
/**
* @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is
* the current NFT owner, or an authorized operator of the current owner.
* @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable.
* @param _approved Address to be approved for the given NFT ID.
* @param _tokenId ID of the token to be approved.
*/
function approve(
address _approved,
uint256 _tokenId
)
external
override
canOperate(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(_approved != tokenOwner, IS_OWNER);
idToApproval[_tokenId] = _approved;
emit Approval(tokenOwner, _approved, _tokenId);
}
/**
* @notice This works even if sender doesn't own any tokens at the time.
* @dev Enables or disables approval for a third party ("operator") to manage all of
* `msg.sender`'s assets. It also emits the ApprovalForAll event.
* @param _operator Address to add to the set of authorized operators.
* @param _approved True if the operators is approved, false to revoke approval.
*/
function setApprovalForAll(
address _operator,
bool _approved
)
external
override
{
ownerToOperators[msg.sender][_operator] = _approved;
emit ApprovalForAll(msg.sender, _operator, _approved);
}
/**
* @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are
* considered invalid, and this function throws for queries about the zero address.
* @param _owner Address for whom to query the balance.
* @return Balance of _owner.
*/
function balanceOf(
address _owner
)
external
override
view
returns (uint256)
{
require(_owner != address(0), ZERO_ADDRESS);
return _getOwnerNFTCount(_owner);
}
/**
* @dev Returns the address of the owner of the NFT. NFTs assigned to the zero address are
* considered invalid, and queries about them do throw.
* @param _tokenId The identifier for an NFT.
* @return _owner Address of _tokenId owner.
*/
function ownerOf(
uint256 _tokenId
)
external
override
view
returns (address _owner)
{
_owner = idToOwner[_tokenId];
require(_owner != address(0), NOT_VALID_NFT);
}
/**
* @notice Throws if `_tokenId` is not a valid NFT.
* @dev Get the approved address for a single NFT.
* @param _tokenId ID of the NFT to query the approval of.
* @return Address that _tokenId is approved for.
*/
function getApproved(
uint256 _tokenId
)
external
override
view
validNFToken(_tokenId)
returns (address)
{
return idToApproval[_tokenId];
}
/**
* @dev Checks if `_operator` is an approved operator for `_owner`.
* @param _owner The address that owns the NFTs.
* @param _operator The address that acts on behalf of the owner.
* @return True if approved for all, false otherwise.
*/
function isApprovedForAll(
address _owner,
address _operator
)
external
override
view
returns (bool)
{
return ownerToOperators[_owner][_operator];
}
/**
* @notice Does NO checks.
* @dev Actually performs the transfer.
* @param _to Address of a new owner.
* @param _tokenId The NFT that is being transferred.
*/
function _transfer(
address _to,
uint256 _tokenId
)
internal
virtual
{
address from = idToOwner[_tokenId];
_clearApproval(_tokenId);
_removeNFToken(from, _tokenId);
_addNFToken(_to, _tokenId);
emit Transfer(from, _to, _tokenId);
}
/**
* @notice This is an internal function which should be called from user-implemented external
* mint function. Its purpose is to show and properly initialize data structures when using this
* implementation.
* @dev Mints a new NFT.
* @param _to The address that will own the minted NFT.
* @param _tokenId of the NFT to be minted by the msg.sender.
*/
function _mint(
address _to,
uint256 _tokenId
)
internal
virtual
{
require(_to != address(0), ZERO_ADDRESS);
require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);
_addNFToken(_to, _tokenId);
emit Transfer(address(0), _to, _tokenId);
}
/**
* @notice This is an internal function which should be called from user-implemented external burn
* function. Its purpose is to show and properly initialize data structures when using this
* implementation. Also, note that this burn implementation allows the minter to re-mint a burned
* NFT.
* @dev Burns a NFT.
* @param _tokenId ID of the NFT to be burned.
*/
function _burn(
uint256 _tokenId
)
internal
virtual
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
_clearApproval(_tokenId);
_removeNFToken(tokenOwner, _tokenId);
emit Transfer(tokenOwner, address(0), _tokenId);
}
/**
* @notice Use and override this function with caution. Wrong usage can have serious consequences.
* @dev Removes a NFT from owner.
* @param _from Address from which we want to remove the NFT.
* @param _tokenId Which NFT we want to remove.
*/
function _removeNFToken(
address _from,
uint256 _tokenId
)
internal
virtual
{
require(idToOwner[_tokenId] == _from, NOT_OWNER);
ownerToNFTokenCount[_from] -= 1;
delete idToOwner[_tokenId];
}
/**
* @notice Use and override this function with caution. Wrong usage can have serious consequences.
* @dev Assigns a new NFT to owner.
* @param _to Address to which we want to add the NFT.
* @param _tokenId Which NFT we want to add.
*/
function _addNFToken(
address _to,
uint256 _tokenId
)
internal
virtual
{
require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS);
idToOwner[_tokenId] = _to;
ownerToNFTokenCount[_to] += 1;
}
/**
* @dev Helper function that gets NFT count of owner. This is needed for overriding in enumerable
* extension to remove double storage (gas optimization) of owner NFT count.
* @param _owner Address for whom to query the count.
* @return Number of _owner NFTs.
*/
function _getOwnerNFTCount(
address _owner
)
internal
virtual
view
returns (uint256)
{
return ownerToNFTokenCount[_owner];
}
/**
* @dev Actually perform the safeTransferFrom.
* @param _from The current owner of the NFT.
* @param _to The new owner.
* @param _tokenId The NFT to transfer.
* @param _data Additional data with no specified format, sent in call to `_to`.
*/
function _safeTransferFrom(
address _from,
address _to,
uint256 _tokenId,
bytes memory _data
)
private
canTransfer(_tokenId)
validNFToken(_tokenId)
{
address tokenOwner = idToOwner[_tokenId];
require(tokenOwner == _from, NOT_OWNER);
require(_to != address(0), ZERO_ADDRESS);
_transfer(_to, _tokenId);
if (_to.isContract())
{
bytes4 retval = ERC721TokenReceiver(_to).onERC721Received(msg.sender, _from, _tokenId, _data);
require(retval == MAGIC_ON_ERC721_RECEIVED, NOT_ABLE_TO_RECEIVE_NFT);
}
}
/**
* @dev Clears the current approval of a given NFT ID.
* @param _tokenId ID of the NFT to be transferred.
*/
function _clearApproval(
uint256 _tokenId
)
private
{
delete idToApproval[_tokenId];
}
}
// File: https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token-metadata.sol
pragma solidity ^0.8.0;
/**
* @dev Optional metadata implementation for ERC-721 non-fungible token standard.
*/
contract NFTokenMetadata is
NFToken,
ERC721Metadata
{
/**
* @dev A descriptive name for a collection of NFTs.
*/
string internal nftName;
/**
* @dev An abbreviated name for NFTokens.
*/
string internal nftSymbol;
/**
* @dev Mapping from NFT ID to metadata uri.
*/
mapping (uint256 => string) internal idToUri;
/**
* @notice When implementing this contract don't forget to set nftName and nftSymbol.
* @dev Contract constructor.
*/
constructor()
{
supportedInterfaces[0x5b5e139f] = true; // ERC721Metadata
}
/**
* @dev Returns a descriptive name for a collection of NFTokens.
* @return _name Representing name.
*/
function name()
external
override
view
returns (string memory _name)
{
_name = nftName;
}
/**
* @dev Returns an abbreviated name for NFTokens.
* @return _symbol Representing symbol.
*/
function symbol()
external
override
view
returns (string memory _symbol)
{
_symbol = nftSymbol;
}
/**
* @dev A distinct URI (RFC 3986) for a given NFT.
* @param _tokenId Id for which we want uri.
* @return URI of _tokenId.
*/
function tokenURI(
uint256 _tokenId
)
external
override
view
validNFToken(_tokenId)
returns (string memory)
{
return _tokenURI(_tokenId);
}
/**
* @notice This is an internal function that can be overriden if you want to implement a different
* way to generate token URI.
* @param _tokenId Id for which we want uri.
* @return URI of _tokenId.
*/
function _tokenURI(
uint256 _tokenId
)
internal
virtual
view
returns (string memory)
{
return idToUri[_tokenId];
}
/**
* @notice This is an internal function which should be called from user-implemented external
* burn function. Its purpose is to show and properly initialize data structures when using this
* implementation. Also, note that this burn implementation allows the minter to re-mint a burned
* NFT.
* @dev Burns a NFT.
* @param _tokenId ID of the NFT to be burned.
*/
function _burn(
uint256 _tokenId
)
internal
override
virtual
{
super._burn(_tokenId);
delete idToUri[_tokenId];
}
/**
* @notice This is an internal function which should be called from user-implemented external
* function. Its purpose is to show and properly initialize data structures when using this
* implementation.
* @dev Set a distinct URI (RFC 3986) for a given NFT ID.
* @param _tokenId Id for which we want URI.
* @param _uri String representing RFC 3986 URI.
*/
function _setTokenUri(
uint256 _tokenId,
string memory _uri
)
internal
validNFToken(_tokenId)
{
idToUri[_tokenId] = _uri;
}
}
// File: nft.sol
pragma solidity 0.8.0;
contract ParticipationNFT is NFTokenMetadata, Ownable {
constructor() {
nftName = "Crypto El Nuevo Ahora 19/12/22";
nftSymbol = "KM-1";
}
function mint(address _to, uint256 _tokenId, string calldata _uri) external onlyOwner {
super._mint(_to, _tokenId);
super._setTokenUri(_tokenId, _uri);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment