Created
July 2, 2021 17:21
-
-
Save farunurisonmez/fd3bc3ce83efde87538ae8579a29c5f0 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../utils/Context.sol"; | |
import "../utils/Strings.sol"; | |
import "../utils/introspection/ERC165.sol"; | |
/** | |
* @dev External interface of AccessControl declared to support ERC165 detection. | |
*/ | |
interface IAccessControl { | |
function hasRole(bytes32 role, address account) external view returns (bool); | |
function getRoleAdmin(bytes32 role) external view returns (bytes32); | |
function grantRole(bytes32 role, address account) external; | |
function revokeRole(bytes32 role, address account) external; | |
function renounceRole(bytes32 role, address account) external; | |
} | |
/** | |
* @dev Contract module that allows children to implement role-based access | |
* control mechanisms. This is a lightweight version that doesn't allow enumerating role | |
* members except through off-chain means by accessing the contract event logs. Some | |
* applications may benefit from on-chain enumerability, for those cases see | |
* {AccessControlEnumerable}. | |
* | |
* Roles are referred to by their `bytes32` identifier. These should be exposed | |
* in the external API and be unique. The best way to achieve this is by | |
* using `public constant` hash digests: | |
* | |
* ``` | |
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); | |
* ``` | |
* | |
* Roles can be used to represent a set of permissions. To restrict access to a | |
* function call, use {hasRole}: | |
* | |
* ``` | |
* function foo() public { | |
* require(hasRole(MY_ROLE, msg.sender)); | |
* ... | |
* } | |
* ``` | |
* | |
* Roles can be granted and revoked dynamically via the {grantRole} and | |
* {revokeRole} functions. Each role has an associated admin role, and only | |
* accounts that have a role's admin role can call {grantRole} and {revokeRole}. | |
* | |
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means | |
* that only accounts with this role will be able to grant or revoke other | |
* roles. More complex role relationships can be created by using | |
* {_setRoleAdmin}. | |
* | |
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to | |
* grant and revoke this role. Extra precautions should be taken to secure | |
* accounts that have been granted it. | |
*/ | |
abstract contract AccessControl is Context, IAccessControl, ERC165 { | |
struct RoleData { | |
mapping (address => bool) members; | |
bytes32 adminRole; | |
} | |
mapping (bytes32 => RoleData) private _roles; | |
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; | |
/** | |
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` | |
* | |
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite | |
* {RoleAdminChanged} not being emitted signaling this. | |
* | |
* _Available since v3.1._ | |
*/ | |
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); | |
/** | |
* @dev Emitted when `account` is granted `role`. | |
* | |
* `sender` is the account that originated the contract call, an admin role | |
* bearer except when using {_setupRole}. | |
*/ | |
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); | |
/** | |
* @dev Emitted when `account` is revoked `role`. | |
* | |
* `sender` is the account that originated the contract call: | |
* - if using `revokeRole`, it is the admin role bearer | |
* - if using `renounceRole`, it is the role bearer (i.e. `account`) | |
*/ | |
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); | |
/** | |
* @dev Modifier that checks that an account has a specific role. Reverts | |
* with a standardized message including the required role. | |
* | |
* The format of the revert reason is given by the following regular expression: | |
* | |
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ | |
* | |
* _Available since v4.1._ | |
*/ | |
modifier onlyRole(bytes32 role) { | |
_checkRole(role, _msgSender()); | |
_; | |
} | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
return interfaceId == type(IAccessControl).interfaceId | |
|| super.supportsInterface(interfaceId); | |
} | |
/** | |
* @dev Returns `true` if `account` has been granted `role`. | |
*/ | |
function hasRole(bytes32 role, address account) public view override returns (bool) { | |
return _roles[role].members[account]; | |
} | |
/** | |
* @dev Revert with a standard message if `account` is missing `role`. | |
* | |
* The format of the revert reason is given by the following regular expression: | |
* | |
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ | |
*/ | |
function _checkRole(bytes32 role, address account) internal view { | |
if(!hasRole(role, account)) { | |
revert(string(abi.encodePacked( | |
"AccessControl: account ", | |
Strings.toHexString(uint160(account), 20), | |
" is missing role ", | |
Strings.toHexString(uint256(role), 32) | |
))); | |
} | |
} | |
/** | |
* @dev Returns the admin role that controls `role`. See {grantRole} and | |
* {revokeRole}. | |
* | |
* To change a role's admin, use {_setRoleAdmin}. | |
*/ | |
function getRoleAdmin(bytes32 role) public view override returns (bytes32) { | |
return _roles[role].adminRole; | |
} | |
/** | |
* @dev Grants `role` to `account`. | |
* | |
* If `account` had not been already granted `role`, emits a {RoleGranted} | |
* event. | |
* | |
* Requirements: | |
* | |
* - the caller must have ``role``'s admin role. | |
*/ | |
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { | |
_grantRole(role, account); | |
} | |
/** | |
* @dev Revokes `role` from `account`. | |
* | |
* If `account` had been granted `role`, emits a {RoleRevoked} event. | |
* | |
* Requirements: | |
* | |
* - the caller must have ``role``'s admin role. | |
*/ | |
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { | |
_revokeRole(role, account); | |
} | |
/** | |
* @dev Revokes `role` from the calling account. | |
* | |
* Roles are often managed via {grantRole} and {revokeRole}: this function's | |
* purpose is to provide a mechanism for accounts to lose their privileges | |
* if they are compromised (such as when a trusted device is misplaced). | |
* | |
* If the calling account had been granted `role`, emits a {RoleRevoked} | |
* event. | |
* | |
* Requirements: | |
* | |
* - the caller must be `account`. | |
*/ | |
function renounceRole(bytes32 role, address account) public virtual override { | |
require(account == _msgSender(), "AccessControl: can only renounce roles for self"); | |
_revokeRole(role, account); | |
} | |
/** | |
* @dev Grants `role` to `account`. | |
* | |
* If `account` had not been already granted `role`, emits a {RoleGranted} | |
* event. Note that unlike {grantRole}, this function doesn't perform any | |
* checks on the calling account. | |
* | |
* [WARNING] | |
* ==== | |
* This function should only be called from the constructor when setting | |
* up the initial roles for the system. | |
* | |
* Using this function in any other way is effectively circumventing the admin | |
* system imposed by {AccessControl}. | |
* ==== | |
*/ | |
function _setupRole(bytes32 role, address account) internal virtual { | |
_grantRole(role, account); | |
} | |
/** | |
* @dev Sets `adminRole` as ``role``'s admin role. | |
* | |
* Emits a {RoleAdminChanged} event. | |
*/ | |
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { | |
emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); | |
_roles[role].adminRole = adminRole; | |
} | |
function _grantRole(bytes32 role, address account) private { | |
if (!hasRole(role, account)) { | |
_roles[role].members[account] = true; | |
emit RoleGranted(role, account, _msgSender()); | |
} | |
} | |
function _revokeRole(bytes32 role, address account) private { | |
if (hasRole(role, account)) { | |
_roles[role].members[account] = false; | |
emit RoleRevoked(role, account, _msgSender()); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "./AccessControl.sol"; | |
import "../utils/structs/EnumerableSet.sol"; | |
/** | |
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection. | |
*/ | |
interface IAccessControlEnumerable { | |
function getRoleMember(bytes32 role, uint256 index) external view returns (address); | |
function getRoleMemberCount(bytes32 role) external view returns (uint256); | |
} | |
/** | |
* @dev Extension of {AccessControl} that allows enumerating the members of each role. | |
*/ | |
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { | |
using EnumerableSet for EnumerableSet.AddressSet; | |
mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers; | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
return interfaceId == type(IAccessControlEnumerable).interfaceId | |
|| super.supportsInterface(interfaceId); | |
} | |
/** | |
* @dev Returns one of the accounts that have `role`. `index` must be a | |
* value between 0 and {getRoleMemberCount}, non-inclusive. | |
* | |
* Role bearers are not sorted in any particular way, and their ordering may | |
* change at any point. | |
* | |
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure | |
* you perform all queries on the same block. See the following | |
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] | |
* for more information. | |
*/ | |
function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { | |
return _roleMembers[role].at(index); | |
} | |
/** | |
* @dev Returns the number of accounts that have `role`. Can be used | |
* together with {getRoleMember} to enumerate all bearers of a role. | |
*/ | |
function getRoleMemberCount(bytes32 role) public view override returns (uint256) { | |
return _roleMembers[role].length(); | |
} | |
/** | |
* @dev Overload {grantRole} to track enumerable memberships | |
*/ | |
function grantRole(bytes32 role, address account) public virtual override { | |
super.grantRole(role, account); | |
_roleMembers[role].add(account); | |
} | |
/** | |
* @dev Overload {revokeRole} to track enumerable memberships | |
*/ | |
function revokeRole(bytes32 role, address account) public virtual override { | |
super.revokeRole(role, account); | |
_roleMembers[role].remove(account); | |
} | |
/** | |
* @dev Overload {renounceRole} to track enumerable memberships | |
*/ | |
function renounceRole(bytes32 role, address account) public virtual override { | |
super.renounceRole(role, account); | |
_roleMembers[role].remove(account); | |
} | |
/** | |
* @dev Overload {_setupRole} to track enumerable memberships | |
*/ | |
function _setupRole(bytes32 role, address account) internal virtual override { | |
super._setupRole(role, account); | |
_roleMembers[role].add(account); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../utils/Context.sol"; | |
/** | |
* @dev Contract module which allows children to implement an emergency stop | |
* mechanism that can be triggered by an authorized account. | |
* | |
* This module is used through inheritance. It will make available the | |
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to | |
* the functions of your contract. Note that they will not be pausable by | |
* simply including this module, only once the modifiers are put in place. | |
*/ | |
abstract contract Pausable is Context { | |
/** | |
* @dev Emitted when the pause is triggered by `account`. | |
*/ | |
event Paused(address account); | |
/** | |
* @dev Emitted when the pause is lifted by `account`. | |
*/ | |
event Unpaused(address account); | |
bool private _paused; | |
/** | |
* @dev Initializes the contract in unpaused state. | |
*/ | |
constructor () { | |
_paused = false; | |
} | |
/** | |
* @dev Returns true if the contract is paused, and false otherwise. | |
*/ | |
function paused() public view virtual returns (bool) { | |
return _paused; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is not paused. | |
* | |
* Requirements: | |
* | |
* - The contract must not be paused. | |
*/ | |
modifier whenNotPaused() { | |
require(!paused(), "Pausable: paused"); | |
_; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is paused. | |
* | |
* Requirements: | |
* | |
* - The contract must be paused. | |
*/ | |
modifier whenPaused() { | |
require(paused(), "Pausable: not paused"); | |
_; | |
} | |
/** | |
* @dev Triggers stopped state. | |
* | |
* Requirements: | |
* | |
* - The contract must not be paused. | |
*/ | |
function _pause() internal virtual whenNotPaused { | |
_paused = true; | |
emit Paused(_msgSender()); | |
} | |
/** | |
* @dev Returns to normal state. | |
* | |
* Requirements: | |
* | |
* - The contract must be paused. | |
*/ | |
function _unpause() internal virtual whenPaused { | |
_paused = false; | |
emit Unpaused(_msgSender()); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "./IERC721.sol"; | |
import "./IERC721Receiver.sol"; | |
import "./extensions/IERC721Metadata.sol"; | |
import "../../utils/Address.sol"; | |
import "../../utils/Context.sol"; | |
import "../../utils/Strings.sol"; | |
import "../../utils/introspection/ERC165.sol"; | |
/** | |
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including | |
* the Metadata extension, but not including the Enumerable extension, which is available separately as | |
* {ERC721Enumerable}. | |
*/ | |
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { | |
using Address for address; | |
using Strings for uint256; | |
// Token name | |
string private _name; | |
// Token symbol | |
string private _symbol; | |
// Mapping from token ID to owner address | |
mapping (uint256 => address) private _owners; | |
// Mapping owner address to token count | |
mapping (address => uint256) private _balances; | |
// Mapping from token ID to approved address | |
mapping (uint256 => address) private _tokenApprovals; | |
// Mapping from owner to operator approvals | |
mapping (address => mapping (address => bool)) private _operatorApprovals; | |
/** | |
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. | |
*/ | |
constructor (string memory name_, string memory symbol_) { | |
_name = name_; | |
_symbol = symbol_; | |
} | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { | |
return interfaceId == type(IERC721).interfaceId | |
|| interfaceId == type(IERC721Metadata).interfaceId | |
|| super.supportsInterface(interfaceId); | |
} | |
/** | |
* @dev See {IERC721-balanceOf}. | |
*/ | |
function balanceOf(address owner) public view virtual override returns (uint256) { | |
require(owner != address(0), "ERC721: balance query for the zero address"); | |
return _balances[owner]; | |
} | |
/** | |
* @dev See {IERC721-ownerOf}. | |
*/ | |
function ownerOf(uint256 tokenId) public view virtual override returns (address) { | |
address owner = _owners[tokenId]; | |
require(owner != address(0), "ERC721: owner query for nonexistent token"); | |
return owner; | |
} | |
/** | |
* @dev See {IERC721Metadata-name}. | |
*/ | |
function name() public view virtual override returns (string memory) { | |
return _name; | |
} | |
/** | |
* @dev See {IERC721Metadata-symbol}. | |
*/ | |
function symbol() public view virtual override returns (string memory) { | |
return _symbol; | |
} | |
/** | |
* @dev See {IERC721Metadata-tokenURI}. | |
*/ | |
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { | |
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); | |
string memory baseURI = _baseURI(); | |
return bytes(baseURI).length > 0 | |
? string(abi.encodePacked(baseURI, tokenId.toString())) | |
: ''; | |
} | |
/** | |
* @dev Base URI for computing {tokenURI}. Empty by default, can be overriden | |
* in child contracts. | |
*/ | |
function _baseURI() internal view virtual returns (string memory) { | |
return ""; | |
} | |
/** | |
* @dev See {IERC721-approve}. | |
*/ | |
function approve(address to, uint256 tokenId) public virtual override { | |
address owner = ERC721.ownerOf(tokenId); | |
require(to != owner, "ERC721: approval to current owner"); | |
require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), | |
"ERC721: approve caller is not owner nor approved for all" | |
); | |
_approve(to, tokenId); | |
} | |
/** | |
* @dev See {IERC721-getApproved}. | |
*/ | |
function getApproved(uint256 tokenId) public view virtual override returns (address) { | |
require(_exists(tokenId), "ERC721: approved query for nonexistent token"); | |
return _tokenApprovals[tokenId]; | |
} | |
/** | |
* @dev See {IERC721-setApprovalForAll}. | |
*/ | |
function setApprovalForAll(address operator, bool approved) public virtual override { | |
require(operator != _msgSender(), "ERC721: approve to caller"); | |
_operatorApprovals[_msgSender()][operator] = approved; | |
emit ApprovalForAll(_msgSender(), operator, approved); | |
} | |
/** | |
* @dev See {IERC721-isApprovedForAll}. | |
*/ | |
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { | |
return _operatorApprovals[owner][operator]; | |
} | |
/** | |
* @dev See {IERC721-transferFrom}. | |
*/ | |
function transferFrom(address from, address to, uint256 tokenId) public virtual override { | |
//solhint-disable-next-line max-line-length | |
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); | |
_transfer(from, to, tokenId); | |
} | |
/** | |
* @dev See {IERC721-safeTransferFrom}. | |
*/ | |
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { | |
safeTransferFrom(from, to, tokenId, ""); | |
} | |
/** | |
* @dev See {IERC721-safeTransferFrom}. | |
*/ | |
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { | |
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); | |
_safeTransfer(from, to, tokenId, _data); | |
} | |
/** | |
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients | |
* are aware of the ERC721 protocol to prevent tokens from being forever locked. | |
* | |
* `_data` is additional data, it has no specified format and it is sent in call to `to`. | |
* | |
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. | |
* implement alternative mechanisms to perform token transfer, such as signature-based. | |
* | |
* Requirements: | |
* | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* - `tokenId` token must exist and be owned by `from`. | |
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { | |
_transfer(from, to, tokenId); | |
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); | |
} | |
/** | |
* @dev Returns whether `tokenId` exists. | |
* | |
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. | |
* | |
* Tokens start existing when they are minted (`_mint`), | |
* and stop existing when they are burned (`_burn`). | |
*/ | |
function _exists(uint256 tokenId) internal view virtual returns (bool) { | |
return _owners[tokenId] != address(0); | |
} | |
/** | |
* @dev Returns whether `spender` is allowed to manage `tokenId`. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
*/ | |
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { | |
require(_exists(tokenId), "ERC721: operator query for nonexistent token"); | |
address owner = ERC721.ownerOf(tokenId); | |
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); | |
} | |
/** | |
* @dev Safely mints `tokenId` and transfers it to `to`. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must not exist. | |
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _safeMint(address to, uint256 tokenId) internal virtual { | |
_safeMint(to, tokenId, ""); | |
} | |
/** | |
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is | |
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients. | |
*/ | |
function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { | |
_mint(to, tokenId); | |
require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); | |
} | |
/** | |
* @dev Mints `tokenId` and transfers it to `to`. | |
* | |
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible | |
* | |
* Requirements: | |
* | |
* - `tokenId` must not exist. | |
* - `to` cannot be the zero address. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _mint(address to, uint256 tokenId) internal virtual { | |
require(to != address(0), "ERC721: mint to the zero address"); | |
require(!_exists(tokenId), "ERC721: token already minted"); | |
_beforeTokenTransfer(address(0), to, tokenId); | |
_balances[to] += 1; | |
_owners[tokenId] = to; | |
emit Transfer(address(0), to, tokenId); | |
} | |
/** | |
* @dev Destroys `tokenId`. | |
* The approval is cleared when the token is burned. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _burn(uint256 tokenId) internal virtual { | |
address owner = ERC721.ownerOf(tokenId); | |
_beforeTokenTransfer(owner, address(0), tokenId); | |
// Clear approvals | |
_approve(address(0), tokenId); | |
_balances[owner] -= 1; | |
delete _owners[tokenId]; | |
emit Transfer(owner, address(0), tokenId); | |
} | |
/** | |
* @dev Transfers `tokenId` from `from` to `to`. | |
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender. | |
* | |
* Requirements: | |
* | |
* - `to` cannot be the zero address. | |
* - `tokenId` token must be owned by `from`. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _transfer(address from, address to, uint256 tokenId) internal virtual { | |
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); | |
require(to != address(0), "ERC721: transfer to the zero address"); | |
_beforeTokenTransfer(from, to, tokenId); | |
// Clear approvals from the previous owner | |
_approve(address(0), tokenId); | |
_balances[from] -= 1; | |
_balances[to] += 1; | |
_owners[tokenId] = to; | |
emit Transfer(from, to, tokenId); | |
} | |
/** | |
* @dev Approve `to` to operate on `tokenId` | |
* | |
* Emits a {Approval} event. | |
*/ | |
function _approve(address to, uint256 tokenId) internal virtual { | |
_tokenApprovals[tokenId] = to; | |
emit Approval(ERC721.ownerOf(tokenId), to, tokenId); | |
} | |
/** | |
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. | |
* The call is not executed if the target address is not a contract. | |
* | |
* @param from address representing the previous owner of the given token ID | |
* @param to target address that will receive the tokens | |
* @param tokenId uint256 ID of the token to be transferred | |
* @param _data bytes optional data to send along with the call | |
* @return bool whether the call correctly returned the expected magic value | |
*/ | |
function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) | |
private returns (bool) | |
{ | |
if (to.isContract()) { | |
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { | |
return retval == IERC721Receiver(to).onERC721Received.selector; | |
} catch (bytes memory reason) { | |
if (reason.length == 0) { | |
revert("ERC721: transfer to non ERC721Receiver implementer"); | |
} else { | |
// solhint-disable-next-line no-inline-assembly | |
assembly { | |
revert(add(32, reason), mload(reason)) | |
} | |
} | |
} | |
} else { | |
return true; | |
} | |
} | |
/** | |
* @dev Hook that is called before any token transfer. This includes minting | |
* and burning. | |
* | |
* Calling conditions: | |
* | |
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be | |
* transferred to `to`. | |
* - When `from` is zero, `tokenId` will be minted for `to`. | |
* - When `to` is zero, ``from``'s `tokenId` will be burned. | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* | |
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. | |
*/ | |
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../ERC721.sol"; | |
import "../../../utils/Context.sol"; | |
/** | |
* @title ERC721 Burnable Token | |
* @dev ERC721 Token that can be irreversibly burned (destroyed). | |
*/ | |
abstract contract ERC721Burnable is Context, ERC721 { | |
/** | |
* @dev Burns `tokenId`. See {ERC721-_burn}. | |
* | |
* Requirements: | |
* | |
* - The caller must own `tokenId` or be an approved operator. | |
*/ | |
function burn(uint256 tokenId) public virtual { | |
//solhint-disable-next-line max-line-length | |
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); | |
_burn(tokenId); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../ERC721.sol"; | |
import "./IERC721Enumerable.sol"; | |
/** | |
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds | |
* enumerability of all the token ids in the contract as well as all token ids owned by each | |
* account. | |
*/ | |
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { | |
// Mapping from owner to list of owned token IDs | |
mapping(address => mapping(uint256 => uint256)) private _ownedTokens; | |
// Mapping from token ID to index of the owner tokens list | |
mapping(uint256 => uint256) private _ownedTokensIndex; | |
// Array with all token ids, used for enumeration | |
uint256[] private _allTokens; | |
// Mapping from token id to position in the allTokens array | |
mapping(uint256 => uint256) private _allTokensIndex; | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { | |
return interfaceId == type(IERC721Enumerable).interfaceId | |
|| super.supportsInterface(interfaceId); | |
} | |
/** | |
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. | |
*/ | |
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { | |
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); | |
return _ownedTokens[owner][index]; | |
} | |
/** | |
* @dev See {IERC721Enumerable-totalSupply}. | |
*/ | |
function totalSupply() public view virtual override returns (uint256) { | |
return _allTokens.length; | |
} | |
/** | |
* @dev See {IERC721Enumerable-tokenByIndex}. | |
*/ | |
function tokenByIndex(uint256 index) public view virtual override returns (uint256) { | |
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); | |
return _allTokens[index]; | |
} | |
/** | |
* @dev Hook that is called before any token transfer. This includes minting | |
* and burning. | |
* | |
* Calling conditions: | |
* | |
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be | |
* transferred to `to`. | |
* - When `from` is zero, `tokenId` will be minted for `to`. | |
* - When `to` is zero, ``from``'s `tokenId` will be burned. | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* | |
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. | |
*/ | |
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { | |
super._beforeTokenTransfer(from, to, tokenId); | |
if (from == address(0)) { | |
_addTokenToAllTokensEnumeration(tokenId); | |
} else if (from != to) { | |
_removeTokenFromOwnerEnumeration(from, tokenId); | |
} | |
if (to == address(0)) { | |
_removeTokenFromAllTokensEnumeration(tokenId); | |
} else if (to != from) { | |
_addTokenToOwnerEnumeration(to, tokenId); | |
} | |
} | |
/** | |
* @dev Private function to add a token to this extension's ownership-tracking data structures. | |
* @param to address representing the new owner of the given token ID | |
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address | |
*/ | |
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { | |
uint256 length = ERC721.balanceOf(to); | |
_ownedTokens[to][length] = tokenId; | |
_ownedTokensIndex[tokenId] = length; | |
} | |
/** | |
* @dev Private function to add a token to this extension's token tracking data structures. | |
* @param tokenId uint256 ID of the token to be added to the tokens list | |
*/ | |
function _addTokenToAllTokensEnumeration(uint256 tokenId) private { | |
_allTokensIndex[tokenId] = _allTokens.length; | |
_allTokens.push(tokenId); | |
} | |
/** | |
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that | |
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for | |
* gas optimizations e.g. when performing a transfer operation (avoiding double writes). | |
* This has O(1) time complexity, but alters the order of the _ownedTokens array. | |
* @param from address representing the previous owner of the given token ID | |
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address | |
*/ | |
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { | |
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and | |
// then delete the last slot (swap and pop). | |
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; | |
uint256 tokenIndex = _ownedTokensIndex[tokenId]; | |
// When the token to delete is the last token, the swap operation is unnecessary | |
if (tokenIndex != lastTokenIndex) { | |
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; | |
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token | |
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index | |
} | |
// This also deletes the contents at the last position of the array | |
delete _ownedTokensIndex[tokenId]; | |
delete _ownedTokens[from][lastTokenIndex]; | |
} | |
/** | |
* @dev Private function to remove a token from this extension's token tracking data structures. | |
* This has O(1) time complexity, but alters the order of the _allTokens array. | |
* @param tokenId uint256 ID of the token to be removed from the tokens list | |
*/ | |
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { | |
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and | |
// then delete the last slot (swap and pop). | |
uint256 lastTokenIndex = _allTokens.length - 1; | |
uint256 tokenIndex = _allTokensIndex[tokenId]; | |
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so | |
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding | |
// an 'if' statement (like in _removeTokenFromOwnerEnumeration) | |
uint256 lastTokenId = _allTokens[lastTokenIndex]; | |
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token | |
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index | |
// This also deletes the contents at the last position of the array | |
delete _allTokensIndex[tokenId]; | |
_allTokens.pop(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../ERC721.sol"; | |
import "../../../security/Pausable.sol"; | |
/** | |
* @dev ERC721 token with pausable token transfers, minting and burning. | |
* | |
* Useful for scenarios such as preventing trades until the end of an evaluation | |
* period, or having an emergency switch for freezing all token transfers in the | |
* event of a large bug. | |
*/ | |
abstract contract ERC721Pausable is ERC721, Pausable { | |
/** | |
* @dev See {ERC721-_beforeTokenTransfer}. | |
* | |
* Requirements: | |
* | |
* - the contract must not be paused. | |
*/ | |
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { | |
super._beforeTokenTransfer(from, to, tokenId); | |
require(!paused(), "ERC721Pausable: token transfer while paused"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../IERC721.sol"; | |
/** | |
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension | |
* @dev See https://eips.ethereum.org/EIPS/eip-721 | |
*/ | |
interface IERC721Enumerable is IERC721 { | |
/** | |
* @dev Returns the total amount of tokens stored by the contract. | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @dev Returns a token ID owned by `owner` at a given `index` of its token list. | |
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens. | |
*/ | |
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); | |
/** | |
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract. | |
* Use along with {totalSupply} to enumerate all tokens. | |
*/ | |
function tokenByIndex(uint256 index) external view returns (uint256); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../IERC721.sol"; | |
/** | |
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension | |
* @dev See https://eips.ethereum.org/EIPS/eip-721 | |
*/ | |
interface IERC721Metadata is IERC721 { | |
/** | |
* @dev Returns the token collection name. | |
*/ | |
function name() external view returns (string memory); | |
/** | |
* @dev Returns the token collection symbol. | |
*/ | |
function symbol() external view returns (string memory); | |
/** | |
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. | |
*/ | |
function tokenURI(uint256 tokenId) external view returns (string memory); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../../utils/introspection/IERC165.sol"; | |
/** | |
* @dev Required interface of an ERC721 compliant contract. | |
*/ | |
interface IERC721 is IERC165 { | |
/** | |
* @dev Emitted when `tokenId` token is transferred from `from` to `to`. | |
*/ | |
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); | |
/** | |
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. | |
*/ | |
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); | |
/** | |
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. | |
*/ | |
event ApprovalForAll(address indexed owner, address indexed operator, bool approved); | |
/** | |
* @dev Returns the number of tokens in ``owner``'s account. | |
*/ | |
function balanceOf(address owner) external view returns (uint256 balance); | |
/** | |
* @dev Returns the owner of the `tokenId` token. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
*/ | |
function ownerOf(uint256 tokenId) external view returns (address owner); | |
/** | |
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients | |
* are aware of the ERC721 protocol to prevent tokens from being forever locked. | |
* | |
* Requirements: | |
* | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* - `tokenId` token must exist and be owned by `from`. | |
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. | |
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function safeTransferFrom(address from, address to, uint256 tokenId) external; | |
/** | |
* @dev Transfers `tokenId` token from `from` to `to`. | |
* | |
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. | |
* | |
* Requirements: | |
* | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* - `tokenId` token must be owned by `from`. | |
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transferFrom(address from, address to, uint256 tokenId) external; | |
/** | |
* @dev Gives permission to `to` to transfer `tokenId` token to another account. | |
* The approval is cleared when the token is transferred. | |
* | |
* Only a single account can be approved at a time, so approving the zero address clears previous approvals. | |
* | |
* Requirements: | |
* | |
* - The caller must own the token or be an approved operator. | |
* - `tokenId` must exist. | |
* | |
* Emits an {Approval} event. | |
*/ | |
function approve(address to, uint256 tokenId) external; | |
/** | |
* @dev Returns the account approved for `tokenId` token. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
*/ | |
function getApproved(uint256 tokenId) external view returns (address operator); | |
/** | |
* @dev Approve or remove `operator` as an operator for the caller. | |
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. | |
* | |
* Requirements: | |
* | |
* - The `operator` cannot be the caller. | |
* | |
* Emits an {ApprovalForAll} event. | |
*/ | |
function setApprovalForAll(address operator, bool _approved) external; | |
/** | |
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. | |
* | |
* See {setApprovalForAll} | |
*/ | |
function isApprovedForAll(address owner, address operator) external view returns (bool); | |
/** | |
* @dev Safely transfers `tokenId` token from `from` to `to`. | |
* | |
* Requirements: | |
* | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* - `tokenId` token must exist and be owned by `from`. | |
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. | |
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @title ERC721 token receiver interface | |
* @dev Interface for any contract that wants to support safeTransfers | |
* from ERC721 asset contracts. | |
*/ | |
interface IERC721Receiver { | |
/** | |
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} | |
* by `operator` from `from`, this function is called. | |
* | |
* It must return its Solidity selector to confirm the token transfer. | |
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. | |
* | |
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. | |
*/ | |
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Collection of functions related to the address type | |
*/ | |
library Address { | |
/** | |
* @dev Returns true if `account` is a contract. | |
* | |
* [IMPORTANT] | |
* ==== | |
* It is unsafe to assume that an address for which this function returns | |
* false is an externally-owned account (EOA) and not a contract. | |
* | |
* Among others, `isContract` will return false for the following | |
* types of addresses: | |
* | |
* - an externally-owned account | |
* - a contract in construction | |
* - an address where a contract will be created | |
* - an address where a contract lived, but was destroyed | |
* ==== | |
*/ | |
function isContract(address account) internal view returns (bool) { | |
// This method relies on extcodesize, which returns 0 for contracts in | |
// construction, since the code is only stored at the end of the | |
// constructor execution. | |
uint256 size; | |
// solhint-disable-next-line no-inline-assembly | |
assembly { size := extcodesize(account) } | |
return size > 0; | |
} | |
/** | |
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to | |
* `recipient`, forwarding all available gas and reverting on errors. | |
* | |
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost | |
* of certain opcodes, possibly making contracts go over the 2300 gas limit | |
* imposed by `transfer`, making them unable to receive funds via | |
* `transfer`. {sendValue} removes this limitation. | |
* | |
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. | |
* | |
* IMPORTANT: because control is transferred to `recipient`, care must be | |
* taken to not create reentrancy vulnerabilities. Consider using | |
* {ReentrancyGuard} or the | |
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. | |
*/ | |
function sendValue(address payable recipient, uint256 amount) internal { | |
require(address(this).balance >= amount, "Address: insufficient balance"); | |
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value | |
(bool success, ) = recipient.call{ value: amount }(""); | |
require(success, "Address: unable to send value, recipient may have reverted"); | |
} | |
/** | |
* @dev Performs a Solidity function call using a low level `call`. A | |
* plain`call` is an unsafe replacement for a function call: use this | |
* function instead. | |
* | |
* If `target` reverts with a revert reason, it is bubbled up by this | |
* function (like regular Solidity function calls). | |
* | |
* Returns the raw returned data. To convert to the expected return value, | |
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. | |
* | |
* Requirements: | |
* | |
* - `target` must be a contract. | |
* - calling `target` with `data` must not revert. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCall(address target, bytes memory data) internal returns (bytes memory) { | |
return functionCall(target, data, "Address: low-level call failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with | |
* `errorMessage` as a fallback revert reason when `target` reverts. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { | |
return functionCallWithValue(target, data, 0, errorMessage); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
* but also transferring `value` wei to `target`. | |
* | |
* Requirements: | |
* | |
* - the calling contract must have an ETH balance of at least `value`. | |
* - the called Solidity function must be `payable`. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { | |
return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but | |
* with `errorMessage` as a fallback revert reason when `target` reverts. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { | |
require(address(this).balance >= value, "Address: insufficient balance for call"); | |
require(isContract(target), "Address: call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = target.call{ value: value }(data); | |
return _verifyCallResult(success, returndata, errorMessage); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
* but performing a static call. | |
* | |
* _Available since v3.3._ | |
*/ | |
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { | |
return functionStaticCall(target, data, "Address: low-level static call failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], | |
* but performing a static call. | |
* | |
* _Available since v3.3._ | |
*/ | |
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { | |
require(isContract(target), "Address: static call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = target.staticcall(data); | |
return _verifyCallResult(success, returndata, errorMessage); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
* but performing a delegate call. | |
* | |
* _Available since v3.4._ | |
*/ | |
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { | |
return functionDelegateCall(target, data, "Address: low-level delegate call failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], | |
* but performing a delegate call. | |
* | |
* _Available since v3.4._ | |
*/ | |
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { | |
require(isContract(target), "Address: delegate call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = target.delegatecall(data); | |
return _verifyCallResult(success, returndata, errorMessage); | |
} | |
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { | |
if (success) { | |
return returndata; | |
} else { | |
// Look for revert reason and bubble it up if present | |
if (returndata.length > 0) { | |
// The easiest way to bubble the revert reason is using memory via assembly | |
// solhint-disable-next-line no-inline-assembly | |
assembly { | |
let returndata_size := mload(returndata) | |
revert(add(32, returndata), returndata_size) | |
} | |
} else { | |
revert(errorMessage); | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/* | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct | |
* manner, since when dealing with meta-transactions the account sending and | |
* paying for execution may not be the actual sender (as far as an application | |
* is concerned). | |
* | |
* This contract is only required for intermediate, library-like contracts. | |
*/ | |
abstract contract Context { | |
function _msgSender() internal view virtual returns (address) { | |
return msg.sender; | |
} | |
function _msgData() internal view virtual returns (bytes calldata) { | |
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 | |
return msg.data; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @title Counters | |
* @author Matt Condon (@shrugs) | |
* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number | |
* of elements in a mapping, issuing ERC721 ids, or counting request ids. | |
* | |
* Include with `using Counters for Counters.Counter;` | |
*/ | |
library Counters { | |
struct Counter { | |
// This variable should never be directly accessed by users of the library: interactions must be restricted to | |
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add | |
// this feature: see https://github.com/ethereum/solidity/issues/4637 | |
uint256 _value; // default: 0 | |
} | |
function current(Counter storage counter) internal view returns (uint256) { | |
return counter._value; | |
} | |
function increment(Counter storage counter) internal { | |
unchecked { | |
counter._value += 1; | |
} | |
} | |
function decrement(Counter storage counter) internal { | |
uint256 value = counter._value; | |
require(value > 0, "Counter: decrement overflow"); | |
unchecked { | |
counter._value = value - 1; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "./IERC165.sol"; | |
/** | |
* @dev Implementation of the {IERC165} interface. | |
* | |
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check | |
* for the additional interface id that will be supported. For example: | |
* | |
* ```solidity | |
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); | |
* } | |
* ``` | |
* | |
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. | |
*/ | |
abstract contract ERC165 is IERC165 { | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
return interfaceId == type(IERC165).interfaceId; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Interface of the ERC165 standard, as defined in the | |
* https://eips.ethereum.org/EIPS/eip-165[EIP]. | |
* | |
* Implementers can declare support of contract interfaces, which can then be | |
* queried by others ({ERC165Checker}). | |
* | |
* For an implementation, see {ERC165}. | |
*/ | |
interface IERC165 { | |
/** | |
* @dev Returns true if this contract implements the interface defined by | |
* `interfaceId`. See the corresponding | |
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] | |
* to learn more about how these ids are created. | |
* | |
* This function call must use less than 30 000 gas. | |
*/ | |
function supportsInterface(bytes4 interfaceId) external view returns (bool); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @dev String operations. | |
*/ | |
library Strings { | |
bytes16 private constant alphabet = "0123456789abcdef"; | |
/** | |
* @dev Converts a `uint256` to its ASCII `string` decimal representation. | |
*/ | |
function toString(uint256 value) internal pure returns (string memory) { | |
// Inspired by OraclizeAPI's implementation - MIT licence | |
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol | |
if (value == 0) { | |
return "0"; | |
} | |
uint256 temp = value; | |
uint256 digits; | |
while (temp != 0) { | |
digits++; | |
temp /= 10; | |
} | |
bytes memory buffer = new bytes(digits); | |
while (value != 0) { | |
digits -= 1; | |
buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); | |
value /= 10; | |
} | |
return string(buffer); | |
} | |
/** | |
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. | |
*/ | |
function toHexString(uint256 value) internal pure returns (string memory) { | |
if (value == 0) { | |
return "0x00"; | |
} | |
uint256 temp = value; | |
uint256 length = 0; | |
while (temp != 0) { | |
length++; | |
temp >>= 8; | |
} | |
return toHexString(value, length); | |
} | |
/** | |
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. | |
*/ | |
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { | |
bytes memory buffer = new bytes(2 * length + 2); | |
buffer[0] = "0"; | |
buffer[1] = "x"; | |
for (uint256 i = 2 * length + 1; i > 1; --i) { | |
buffer[i] = alphabet[value & 0xf]; | |
value >>= 4; | |
} | |
require(value == 0, "Strings: hex length insufficient"); | |
return string(buffer); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Library for managing | |
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive | |
* types. | |
* | |
* Sets have the following properties: | |
* | |
* - Elements are added, removed, and checked for existence in constant time | |
* (O(1)). | |
* - Elements are enumerated in O(n). No guarantees are made on the ordering. | |
* | |
* ``` | |
* contract Example { | |
* // Add the library methods | |
* using EnumerableSet for EnumerableSet.AddressSet; | |
* | |
* // Declare a set state variable | |
* EnumerableSet.AddressSet private mySet; | |
* } | |
* ``` | |
* | |
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) | |
* and `uint256` (`UintSet`) are supported. | |
*/ | |
library EnumerableSet { | |
// To implement this library for multiple types with as little code | |
// repetition as possible, we write it in terms of a generic Set type with | |
// bytes32 values. | |
// The Set implementation uses private functions, and user-facing | |
// implementations (such as AddressSet) are just wrappers around the | |
// underlying Set. | |
// This means that we can only create new EnumerableSets for types that fit | |
// in bytes32. | |
struct Set { | |
// Storage of set values | |
bytes32[] _values; | |
// Position of the value in the `values` array, plus 1 because index 0 | |
// means a value is not in the set. | |
mapping (bytes32 => uint256) _indexes; | |
} | |
/** | |
* @dev Add a value to a set. O(1). | |
* | |
* Returns true if the value was added to the set, that is if it was not | |
* already present. | |
*/ | |
function _add(Set storage set, bytes32 value) private returns (bool) { | |
if (!_contains(set, value)) { | |
set._values.push(value); | |
// The value is stored at length-1, but we add 1 to all indexes | |
// and use 0 as a sentinel value | |
set._indexes[value] = set._values.length; | |
return true; | |
} else { | |
return false; | |
} | |
} | |
/** | |
* @dev Removes a value from a set. O(1). | |
* | |
* Returns true if the value was removed from the set, that is if it was | |
* present. | |
*/ | |
function _remove(Set storage set, bytes32 value) private returns (bool) { | |
// We read and store the value's index to prevent multiple reads from the same storage slot | |
uint256 valueIndex = set._indexes[value]; | |
if (valueIndex != 0) { // Equivalent to contains(set, value) | |
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in | |
// the array, and then remove the last element (sometimes called as 'swap and pop'). | |
// This modifies the order of the array, as noted in {at}. | |
uint256 toDeleteIndex = valueIndex - 1; | |
uint256 lastIndex = set._values.length - 1; | |
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs | |
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. | |
bytes32 lastvalue = set._values[lastIndex]; | |
// Move the last value to the index where the value to delete is | |
set._values[toDeleteIndex] = lastvalue; | |
// Update the index for the moved value | |
set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex | |
// Delete the slot where the moved value was stored | |
set._values.pop(); | |
// Delete the index for the deleted slot | |
delete set._indexes[value]; | |
return true; | |
} else { | |
return false; | |
} | |
} | |
/** | |
* @dev Returns true if the value is in the set. O(1). | |
*/ | |
function _contains(Set storage set, bytes32 value) private view returns (bool) { | |
return set._indexes[value] != 0; | |
} | |
/** | |
* @dev Returns the number of values on the set. O(1). | |
*/ | |
function _length(Set storage set) private view returns (uint256) { | |
return set._values.length; | |
} | |
/** | |
* @dev Returns the value stored at position `index` in the set. O(1). | |
* | |
* Note that there are no guarantees on the ordering of values inside the | |
* array, and it may change when more values are added or removed. | |
* | |
* Requirements: | |
* | |
* - `index` must be strictly less than {length}. | |
*/ | |
function _at(Set storage set, uint256 index) private view returns (bytes32) { | |
require(set._values.length > index, "EnumerableSet: index out of bounds"); | |
return set._values[index]; | |
} | |
// Bytes32Set | |
struct Bytes32Set { | |
Set _inner; | |
} | |
/** | |
* @dev Add a value to a set. O(1). | |
* | |
* Returns true if the value was added to the set, that is if it was not | |
* already present. | |
*/ | |
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { | |
return _add(set._inner, value); | |
} | |
/** | |
* @dev Removes a value from a set. O(1). | |
* | |
* Returns true if the value was removed from the set, that is if it was | |
* present. | |
*/ | |
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { | |
return _remove(set._inner, value); | |
} | |
/** | |
* @dev Returns true if the value is in the set. O(1). | |
*/ | |
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { | |
return _contains(set._inner, value); | |
} | |
/** | |
* @dev Returns the number of values in the set. O(1). | |
*/ | |
function length(Bytes32Set storage set) internal view returns (uint256) { | |
return _length(set._inner); | |
} | |
/** | |
* @dev Returns the value stored at position `index` in the set. O(1). | |
* | |
* Note that there are no guarantees on the ordering of values inside the | |
* array, and it may change when more values are added or removed. | |
* | |
* Requirements: | |
* | |
* - `index` must be strictly less than {length}. | |
*/ | |
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { | |
return _at(set._inner, index); | |
} | |
// AddressSet | |
struct AddressSet { | |
Set _inner; | |
} | |
/** | |
* @dev Add a value to a set. O(1). | |
* | |
* Returns true if the value was added to the set, that is if it was not | |
* already present. | |
*/ | |
function add(AddressSet storage set, address value) internal returns (bool) { | |
return _add(set._inner, bytes32(uint256(uint160(value)))); | |
} | |
/** | |
* @dev Removes a value from a set. O(1). | |
* | |
* Returns true if the value was removed from the set, that is if it was | |
* present. | |
*/ | |
function remove(AddressSet storage set, address value) internal returns (bool) { | |
return _remove(set._inner, bytes32(uint256(uint160(value)))); | |
} | |
/** | |
* @dev Returns true if the value is in the set. O(1). | |
*/ | |
function contains(AddressSet storage set, address value) internal view returns (bool) { | |
return _contains(set._inner, bytes32(uint256(uint160(value)))); | |
} | |
/** | |
* @dev Returns the number of values in the set. O(1). | |
*/ | |
function length(AddressSet storage set) internal view returns (uint256) { | |
return _length(set._inner); | |
} | |
/** | |
* @dev Returns the value stored at position `index` in the set. O(1). | |
* | |
* Note that there are no guarantees on the ordering of values inside the | |
* array, and it may change when more values are added or removed. | |
* | |
* Requirements: | |
* | |
* - `index` must be strictly less than {length}. | |
*/ | |
function at(AddressSet storage set, uint256 index) internal view returns (address) { | |
return address(uint160(uint256(_at(set._inner, index)))); | |
} | |
// UintSet | |
struct UintSet { | |
Set _inner; | |
} | |
/** | |
* @dev Add a value to a set. O(1). | |
* | |
* Returns true if the value was added to the set, that is if it was not | |
* already present. | |
*/ | |
function add(UintSet storage set, uint256 value) internal returns (bool) { | |
return _add(set._inner, bytes32(value)); | |
} | |
/** | |
* @dev Removes a value from a set. O(1). | |
* | |
* Returns true if the value was removed from the set, that is if it was | |
* present. | |
*/ | |
function remove(UintSet storage set, uint256 value) internal returns (bool) { | |
return _remove(set._inner, bytes32(value)); | |
} | |
/** | |
* @dev Returns true if the value is in the set. O(1). | |
*/ | |
function contains(UintSet storage set, uint256 value) internal view returns (bool) { | |
return _contains(set._inner, bytes32(value)); | |
} | |
/** | |
* @dev Returns the number of values on the set. O(1). | |
*/ | |
function length(UintSet storage set) internal view returns (uint256) { | |
return _length(set._inner); | |
} | |
/** | |
* @dev Returns the value stored at position `index` in the set. O(1). | |
* | |
* Note that there are no guarantees on the ordering of values inside the | |
* array, and it may change when more values are added or removed. | |
* | |
* Requirements: | |
* | |
* - `index` must be strictly less than {length}. | |
*/ | |
function at(UintSet storage set, uint256 index) internal view returns (uint256) { | |
return uint256(_at(set._inner, index)); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REMIX EXAMPLE PROJECT | |
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
It contains 3 directories: | |
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
SCRIPTS | |
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract. | |
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required). | |
Scripts have full access to the web3.js and ethers.js libraries. | |
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
Output from script will appear in remix terminal. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.0; | |
import "../contracts/BareNFT.sol"; | |
contract Auction is IERC721Receiver { | |
BareNFT nftContract; | |
address payable owner; | |
struct Bid { | |
address bidder; | |
uint256 bid; | |
} | |
struct Auction { | |
bool open; | |
bool sold; | |
bool canceled; | |
address payable seller; | |
uint256 startingBid; | |
uint256 reservePrice; | |
uint256 endBlock; | |
uint256 tokenId; | |
uint256 maxBid; | |
address payable maxBidder; | |
uint256 numBids; | |
Bid[] bids; | |
} | |
mapping(uint256 => Auction) auctions; | |
mapping(uint256 => Auction[]) tokenIdToAuction; | |
uint256 numAuctions; | |
constructor (address tokenAddress) public { | |
numAuctions = 0; | |
nftContract = BareNFT(tokenAddress); | |
owner = payable(msg.sender); | |
} | |
function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) override public returns (bytes4) { | |
return bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")); | |
} | |
function setTokenContract(address tokenAddress) public { | |
require(msg.sender == owner, "Only the owner can call this function"); | |
nftContract = BareNFT(tokenAddress); | |
} | |
function getTokenContract() public view returns (address) { | |
return address(nftContract); | |
} | |
function getOwner() public view returns (address) { | |
return owner; | |
} | |
function isOwner() public view returns (bool) { | |
return msg.sender == owner; | |
} | |
function setOwner(address payable newOwner) public { | |
require(msg.sender == owner); | |
owner = newOwner; | |
} | |
// Emergency function for handling smart contract errors | |
function transferNft(uint256 tokenId, address to) public { | |
require(msg.sender == owner); | |
nftContract.safeTransferFrom(address(this), to, tokenId); | |
} | |
// Emergency function for handling smart contract errors | |
function transferFunds(uint256 amount, address payable to) public { | |
require(msg.sender == owner); | |
to.transfer(amount); | |
} | |
function claimTokenFromAuctionByTokenId(uint256 tokenId) public { | |
require(isAuctionOpenByTokenId(tokenId) && isAuctionFinishedByTokenId(tokenId), "The auction is not open"); | |
Auction storage auction = tokenIdToAuction[tokenId][getAuctionHistorySizeByTokenId(tokenId)- 1]; | |
address seller = auction.seller; | |
address maxBidder = auction.maxBidder; | |
require(msg.sender == maxBidder || msg.sender == seller, "You must be the max bidder or seller to claim"); | |
if (maxBidder == address(0)) { | |
nftContract.safeTransferFrom(address(this), seller, tokenId); | |
auction.sold = false; | |
} | |
else if (auction.maxBid < auction.reservePrice ) { | |
nftContract.safeTransferFrom(address(this), seller, tokenId); | |
(bool success, ) = auction.maxBidder.call{value:auction.maxBid}(""); | |
require(success, "Transfer failed"); | |
auction.sold = false; | |
} | |
else { | |
(bool success, ) = auction.seller.call{value:auction.maxBid}(""); | |
nftContract.safeTransferFrom(address(this), maxBidder, tokenId); | |
auction.sold = true; | |
} | |
auction.open = false; | |
} | |
function createNewAuction(uint256 endBlock, uint256 reserve, uint256 tokenId, uint256 startingBid) public { | |
require(address(this) == nftContract.ownerOf(tokenId), "Please transfer the NFT to this contract."); | |
require(endBlock > block.number, "Auction will end too soon"); | |
require(msg.sender != address(0)); | |
require(msg.sender == owner, "Only the owner can create an auction"); | |
require(getAuctionHistorySizeByTokenId(tokenId) == 0 || | |
isAuctionFinishedByTokenId(tokenId) == true, "There is already an auction going on"); | |
Auction storage newAuction = auctions[numAuctions]; | |
newAuction.open = true; | |
newAuction.sold = false; | |
newAuction.canceled = false; | |
newAuction.seller = payable(msg.sender); | |
newAuction.startingBid = startingBid; | |
newAuction.reservePrice = reserve; | |
newAuction.endBlock = endBlock; | |
newAuction.tokenId = tokenId; | |
newAuction.maxBid = 0; | |
newAuction.maxBidder = payable(address(0)); | |
newAuction.numBids = 0; | |
tokenIdToAuction[tokenId].push(newAuction); | |
numAuctions += 1; | |
} | |
function cancelAuctionByTokenId(uint256 tokenId) public payable { | |
require(address(this) == nftContract.ownerOf(tokenId), "Please transfer the NFT to this contract"); | |
require(isAuctionOpenByTokenId(tokenId) == true, "Auction is already closed"); | |
require(msg.sender == owner, "Only the seller can close this auction"); | |
Auction storage auction = tokenIdToAuction[tokenId][getAuctionHistorySizeByTokenId(tokenId)- 1]; | |
if (auction.maxBidder != payable(address(0))) { | |
(bool success, ) = auction.maxBidder.call{value:auction.maxBid}(""); | |
require(success, "Transfer failed"); | |
} | |
nftContract.safeTransferFrom(address(this), auction.seller, tokenId); | |
auction.open = false; | |
auction.sold = false; | |
auction.canceled = true; | |
} | |
function bid(uint256 tokenId) public payable { | |
require(getAuctionHistorySizeByTokenId(tokenId) > 0, "There are no auctions with this token"); | |
require(isAuctionFinishedByTokenId(tokenId) == false, "This auction has expired"); | |
require(msg.value >= getAuctionStartingBidByTokenId(tokenId), "Your bid should be greater than or equal to the starting bid"); | |
require(msg.value > getAuctionMaxBidByTokenId(tokenId), "Your bid should be greater than the maximum bid"); | |
require(msg.sender != address(0)); | |
Auction storage auction = tokenIdToAuction[tokenId][getAuctionHistorySizeByTokenId(tokenId)- 1]; | |
if (auction.maxBidder != payable(address(0))) { | |
(bool success, ) = auction.maxBidder.call{value:auction.maxBid}(""); | |
require(success, "Transfer failed"); | |
} | |
auction.maxBid = msg.value; | |
auction.maxBidder = payable(address(msg.sender)); | |
auction.bids.push(Bid(msg.sender, msg.value)); | |
auction.numBids++; | |
} | |
function getNumAuctions() public view returns (uint256) { | |
return numAuctions; | |
} | |
function getAuctionById(uint256 id) public view returns(Auction memory) { | |
return auctions[id]; | |
} | |
function getAuctionByTokenId(uint256 tokenId) public view returns (Auction memory) { | |
return getAuctionHistoryByTokenId(tokenId, getAuctionHistorySizeByTokenId(tokenId) - 1); | |
} | |
function getAuctionHistorySizeByTokenId(uint256 tokenId) public view returns (uint256) { | |
return tokenIdToAuction[tokenId].length; | |
} | |
function getAuctionHistoryByTokenId(uint256 tokenId, uint256 index) public view returns (Auction memory) { | |
return tokenIdToAuction[tokenId][index]; | |
} | |
function setAuctionOpenByTokenId(uint256 tokenId, bool open) public { | |
require(msg.sender == owner); | |
tokenIdToAuction[tokenId][getAuctionHistorySizeByTokenId(tokenId) - 1].open = open; | |
} | |
function isAuctionOpenByTokenId(uint256 tokenId) public view returns (bool) { | |
return getAuctionByTokenId(tokenId).open; | |
} | |
function isAuctionFinishedByTokenId(uint256 tokenId) public view returns (bool) { | |
Auction memory auction = getAuctionByTokenId(tokenId); | |
return block.number >= auction.endBlock || !auction.open; | |
} | |
function isAuctionSoldByTokenId(uint256 tokenId) public view returns (bool) { | |
return getAuctionByTokenId(tokenId).sold; | |
} | |
function isAuctionCanceledByTokenId(uint256 tokenId) public view returns (bool) { | |
return getAuctionByTokenId(tokenId).canceled; | |
} | |
function getAuctionMaxBidByTokenId(uint256 tokenId) public view returns (uint256) { | |
return getAuctionByTokenId(tokenId).maxBid; | |
} | |
function getAuctionMaxBidderByTokenId(uint256 tokenId) public view returns (address) { | |
return getAuctionByTokenId(tokenId).maxBidder; | |
} | |
function getAuctionSellerByTokenId(uint256 tokenId) public view returns (address) { | |
return getAuctionByTokenId(tokenId).seller; | |
} | |
function getAuctionStartingBidByTokenId(uint256 tokenId) public view returns (uint256) { | |
return getAuctionByTokenId(tokenId).startingBid; | |
} | |
function getAuctionBidsByTokenId(uint256 tokenId) public view returns (Bid[] memory) { | |
return getAuctionByTokenId(tokenId).bids; | |
} | |
function equals(Auction memory _first, Auction memory _second) public pure returns (bool) { | |
return (keccak256(abi.encodePacked(_first.open, | |
_first.seller, _first.startingBid, _first.reservePrice, | |
_first.endBlock, _first.tokenId, _first.maxBid, _first.maxBidder)) == | |
keccak256(abi.encodePacked(_second.open, _second.seller, _second.startingBid, _second.reservePrice, | |
_second.endBlock, _second.tokenId, _second.maxBid, _second.maxBidder))); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.0; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/token/ERC721/ERC721.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/token/ERC721/extensions/ERC721Burnable.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/token/ERC721/extensions/ERC721Pausable.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/access/AccessControlEnumerable.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/utils/Context.sol"; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/utils/Counters.sol"; | |
/** | |
* @dev {ERC721} token, including: | |
* | |
* - ability for holders to burn (destroy) their tokens | |
* - a minter role that allows for token minting (creation) | |
* - a pauser role that allows to stop all token transfers | |
* - manual setting of token URIs. | |
* | |
* This contract uses {AccessControl} to lock permissioned functions using the | |
* different roles - head to its documentation for details. | |
* | |
* The account that deploys the contract will be granted the minter and pauser | |
* roles, as well as the default admin role, which will let it grant both minter | |
* and pauser roles to other accounts. | |
* | |
* Adapted from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.1.0/contracts/token/ERC721/presets/ERC721PresetMinterPauserAutoId.sol | |
*/ | |
contract BareNFT is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable { | |
using Counters for Counters.Counter; | |
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); | |
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); | |
string private _baseTokenURI; | |
/** | |
* @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the | |
* account that deploys the contract. | |
* | |
* Token URIs will be autogenerated based on `baseURI` and their token IDs. | |
* See {ERC721-tokenURI}. | |
*/ | |
constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) { | |
_baseTokenURI = baseTokenURI; | |
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); | |
_setupRole(MINTER_ROLE, _msgSender()); | |
_setupRole(PAUSER_ROLE, _msgSender()); | |
} | |
function _baseURI() internal view virtual override returns (string memory) { | |
return _baseTokenURI; | |
} | |
/** | |
* @dev Creates a new token for `to`. Its token ID will be automatically | |
* assigned (and available on the emitted {IERC721-Transfer} event), and the token | |
* URI autogenerated based on the base URI passed at construction. | |
* | |
* See {ERC721-_mint}. | |
* | |
* Requirements: | |
* | |
* - the caller must have the `MINTER_ROLE`. | |
*/ | |
function mint(address to, uint256 tokenId, string memory tokenURI) public { | |
require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint"); | |
_mint(to, tokenId); | |
_setTokenURI(tokenId, tokenURI); | |
} | |
function mint(uint256 tokenId, string memory tokenURI) public { | |
mint(msg.sender, tokenId, tokenURI); | |
} | |
/** | |
* @dev Pauses all token transfers. | |
* | |
* See {ERC721Pausable} and {Pausable-_pause}. | |
* | |
* Requirements: | |
* | |
* - the caller must have the `PAUSER_ROLE`. | |
*/ | |
function pause() public virtual { | |
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause"); | |
_pause(); | |
} | |
/** | |
* @dev Unpauses all token transfers. | |
* | |
* See {ERC721Pausable} and {Pausable-_unpause}. | |
* | |
* Requirements: | |
* | |
* - the caller must have the `PAUSER_ROLE`. | |
*/ | |
function unpause() public virtual { | |
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"); | |
_unpause(); | |
} | |
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { | |
super._beforeTokenTransfer(from, to, tokenId); | |
} | |
/** | |
* @dev See {IERC165-supportsInterface}. | |
*/ | |
function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) { | |
return super.supportsInterface(interfaceId); | |
} | |
/***** Start custom token URI functionality *****/ | |
mapping(uint256 => string) private _tokenURIs; | |
/** | |
* @dev Internal function to set the token URI for a given token. | |
* Reverts if the token ID does not exist. | |
* @param tokenId uint256 ID of the token to set its URI | |
* @param uri string URI to assign | |
*/ | |
function _setTokenURI(uint256 tokenId, string memory uri) internal { | |
_tokenURIs[tokenId] = uri; | |
} | |
/** | |
* @dev Returns an URI for a given token ID. | |
* Throws if the token ID does not exist. May return an empty string. | |
* @param tokenId uint256 ID of the token to query | |
*/ | |
function tokenURI(uint256 tokenId) override public view returns (string memory) { | |
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); | |
return string(abi.encodePacked(_baseTokenURI, _tokenURIs[tokenId])); | |
} | |
/***** End custom token URI functionality *****/ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: UNLICENSED | |
pragma solidity ^0.8.0; | |
import "../contracts/BareNFT.sol"; | |
contract Reserve is IERC721Receiver { | |
struct Listing { | |
bool open; | |
bool sold; | |
address payable seller; | |
uint256 price; | |
uint256 tokenId; | |
} | |
BareNFT nftContract; | |
address payable owner; | |
mapping(uint256 => Listing) listings; | |
mapping(uint256 => Listing[]) tokenIdToListing; | |
uint256 numListings; | |
constructor (address tokenAddress) { | |
numListings = 0; | |
nftContract = BareNFT(tokenAddress); | |
owner = payable(msg.sender); | |
} | |
function getNftContract() public view returns (address) { | |
return address(nftContract); | |
} | |
function getOwner() public view returns (address) { | |
return owner; | |
} | |
function setOwner(address payable newOwner) public { | |
require(msg.sender == owner); | |
owner = newOwner; | |
} | |
function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) override public returns (bytes4) { | |
return bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")); | |
} | |
function createNewListing(uint256 tokenId, uint256 price) public { | |
require(address(this) == nftContract.ownerOf(tokenId), "Please transfer the NFT to this contract."); | |
require(msg.sender == owner, "Only owner can create listings"); | |
Listing memory newlisting = Listing(true, false, payable(msg.sender), price, tokenId); | |
listings[numListings] = newlisting; | |
tokenIdToListing[tokenId].push(newlisting); | |
numListings += 1; | |
} | |
function buy(uint256 tokenId) public payable { | |
Listing storage listing = tokenIdToListing[tokenId][getListingHistorySize(tokenId) - 1]; | |
require(msg.sender != listing.seller, "You cannot buy your own item."); | |
require(listing.open, "This listing has been closed."); | |
require(msg.value >= listing.price, "Not enough paid"); | |
listing.seller.transfer(msg.value); | |
nftContract.safeTransferFrom(address(this), msg.sender, tokenId); | |
listing.open = false; | |
listing.sold = true; | |
} | |
function cancelListing(uint256 tokenId) public { | |
Listing storage listing = tokenIdToListing[tokenId][getListingHistorySize(tokenId) - 1]; | |
require(listing.open, "This listing is already closed."); | |
require(msg.sender == listing.seller, "Only the seller can close this listing"); | |
require(msg.sender != address(0)); | |
nftContract.safeTransferFrom(address(this), listing.seller, tokenId); | |
listing.open = false; | |
} | |
// Emergency function for handling smart contract errors | |
function transferNft(uint256 tokenId, address to) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
nftContract.safeTransferFrom(address(this), to, tokenId); | |
} | |
// Emergency function for handling smart contract errors | |
function transferFunds(uint256 amount, address payable to) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
to.transfer(amount); | |
} | |
function getNumListings() public view returns (uint256) { | |
return numListings; | |
} | |
function getListingById(uint256 listingID) public view returns (Listing memory) { | |
return listings[listingID]; | |
} | |
function isListingOpen(uint256 listingID) public view returns (bool) { | |
return listings[listingID].open; | |
} | |
function closeListing(uint256 listingID) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
require(listings[listingID].sold == false, "This action cannot be performed on a sold listing."); | |
listings[listingID].open = false; | |
} | |
function openListing(uint256 listingID) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
require(listings[listingID].sold == false, "This action cannot be performed on a sold listing."); | |
listings[listingID].open = true; | |
} | |
function isListingSold(uint256 listingID) public view returns (bool) { | |
return listings[listingID].sold; | |
} | |
function getListingSeller(uint256 listingID) public view returns (address) { | |
return listings[listingID].seller; | |
} | |
function getListingPrice(uint256 listingID) public view returns (uint256) { | |
return listings[listingID].price; | |
} | |
function setListingPrice(uint256 listingID, uint newPrice) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
require(listings[listingID].sold == false, "This action cannot be performed on a sold listing."); | |
listings[listingID].price = newPrice; | |
} | |
function isListingOpenByTokenId(uint256 tokenId) public view returns (bool) { | |
Listing memory listing = getLastListingByTokenId(tokenId); | |
return listing.open; | |
} | |
function closeListingByTokenId(uint256 tokenId) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
Listing storage listing = tokenIdToListing[tokenId][getListingHistorySize(tokenId) - 1]; | |
require(listing.sold == false, "This action cannot be performed on a sold listing."); | |
listing.open = false; | |
} | |
function openListingByTokenId(uint256 tokenId) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
Listing storage listing = tokenIdToListing[tokenId][getListingHistorySize(tokenId) - 1]; | |
require(listing.sold == false, "This action cannot be performed on a sold listing."); | |
listing.open = true; | |
} | |
function isListingSoldByTokenId(uint256 tokenId) public view returns (bool) { | |
Listing memory listing = getLastListingByTokenId(tokenId); | |
return listing.sold; | |
} | |
function getListingSellerByTokenId(uint256 tokenId) public view returns (address) { | |
Listing memory listing = getLastListingByTokenId(tokenId); | |
return listing.seller; | |
} | |
function getListingPriceByTokenId(uint256 tokenId) public view returns (uint256) { | |
Listing memory listing = getLastListingByTokenId(tokenId); | |
return listing.price; | |
} | |
function setListingPriceByTokenId(uint256 tokenId, uint newPrice) public { | |
require(msg.sender == owner, "Only the contract owner can call this function."); | |
Listing storage listing = tokenIdToListing[tokenId][getListingHistorySize(tokenId) - 1]; | |
require(listing.sold == false, "This action cannot be performed on a sold listing."); | |
listing.price = newPrice; | |
} | |
function getListingTokenId(uint256 listingID) public view returns (uint256) { | |
return listings[listingID].tokenId; | |
} | |
function getListingHistoryByTokenId(uint256 tokenId, uint256 index) public view returns (Listing memory) { | |
return tokenIdToListing[tokenId][index]; | |
} | |
function getListingHistorySize(uint256 tokenId) public view returns (uint256) { | |
return tokenIdToListing[tokenId].length; | |
} | |
function getLastListingByTokenId(uint256 tokenId) public view returns (Listing memory) { | |
return getListingHistoryByTokenId(tokenId, getListingHistorySize(tokenId) - 1); | |
} | |
} |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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:805:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "70:80:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "80:22:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "95:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "89:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "89:13:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "80:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "138:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "111:26:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "111:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "111:33:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "48:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "56:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "64:5:20", | |
"type": "" | |
} | |
], | |
"src": "7:143:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "233:207:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "279:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "288:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "291:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "281:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "281:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "281:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "254:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "263:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "250:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "250:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "275:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "246:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "246:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "243:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "305:128:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "320:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "334:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "324:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "349:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "395:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "406:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "391:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "391:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "415:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_fromMemory", | |
"nodeType": "YulIdentifier", | |
"src": "359:31:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "359:64:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "349:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "203:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "214:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "226:6:20", | |
"type": "" | |
} | |
], | |
"src": "156:284:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "491:51:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "501:35:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "530:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "512:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "512:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "501:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "473:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "483:7:20", | |
"type": "" | |
} | |
], | |
"src": "446:96:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "593:81:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "603:65:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "618:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "625:42:20", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "614:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "614:54:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "603:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "575:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "585:7:20", | |
"type": "" | |
} | |
], | |
"src": "548:126:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "723:79:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "780:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "789:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "792:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "782:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "782:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "782:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "746:5:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "771:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "753:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "753:24:20" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "743:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "743:35:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "736:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "736:43:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "733:2:20" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "716:5:20", | |
"type": "" | |
} | |
], | |
"src": "680:122:20" | |
} | |
] | |
}, | |
"contents": "{\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n", | |
"id": 20, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"linkReferences": {}, | |
"object": "60806040523480156200001157600080fd5b5060405162004033380380620040338339818101604052810190620000379190620000de565b6000600481905550806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000158565b600081519050620000d8816200013e565b92915050565b600060208284031215620000f157600080fd5b60006200010184828501620000c7565b91505092915050565b600062000117826200011e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b62000149816200010a565b81146200015557600080fd5b50565b613ecb80620001686000396000f3fe6080604052600436106101b75760003560e01c8063893d20e8116100ec578063c0e0a3ab1161008a578063d082d7e011610064578063d082d7e014610672578063e39d701a146106af578063ee14cb68146106ec578063f08e362f14610729576101b7565b8063c0e0a3ab146105bb578063c68733cb146105f8578063cca8dadd14610635576101b7565b80638fcd706e116100c65780638fcd706e146104db578063959b19d014610518578063b18db8f214610555578063bbcd5bbe14610592576101b7565b8063893d20e8146104485780638bb9a6c5146104735780638f32d59b146104b0576101b7565b80633f5fddcc116101595780636bb02fcd116101335780636bb02fcd1461037a57806377413267146103a3578063823e88e6146103e0578063879a30f71461041d576101b7565b80633f5fddcc14610305578063454a2ab3146103425780634acc200f1461035e576101b7565b806318111ada1161019557806318111ada1461024b57806321c2f88314610288578063285a71d4146102b157806328b7bede146102da576101b7565b806313af4035146101bc578063150b7a02146101e5578063168a0b3214610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b8d565b610752565b005b3480156101f157600080fd5b5061020c60048036038101906102079190612bb6565b6107f0565b6040516102199190613489565b60405180910390f35b34801561022e57600080fd5b5061024960048036038101906102449190612c9d565b61081d565b005b34801561025757600080fd5b50610272600480360381019061026d9190612c9d565b610dbf565b60405161027f9190613684565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612d3e565b610fe5565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190612db6565b6110cb565b005b3480156102e657600080fd5b506102ef611686565b6040516102fc91906133c3565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612c31565b6116af565b604051610339919061346e565b60405180910390f35b61035c60048036038101906103579190612c9d565b611768565b005b61037860048036038101906103739190612c9d565b611b85565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612cc6565b612027565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612c9d565b612114565b6040516103d79190613684565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612c9d565b612141565b604051610414919061346e565b60405180910390f35b34801561042957600080fd5b50610432612157565b60405161043f91906136a6565b60405180910390f35b34801561045457600080fd5b5061045d612161565b60405161046a91906133c3565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612d7a565b61218b565b6040516104a79190613684565b60405180910390f35b3480156104bc57600080fd5b506104c56123f8565b6040516104d2919061346e565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612c9d565b612450565b60405161050f919061346e565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612c9d565b612466565b60405161054c91906136a6565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612c9d565b61247c565b60405161058991906136a6565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612b3b565b612493565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c9d565b612566565b6040516105ef91906133c3565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612c9d565b61257d565b60405161062c919061344c565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612c9d565b612594565b604051610669919061346e565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612c9d565b6125aa565b6040516106a691906133c3565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612c9d565b6125c0565b6040516106e391906136a6565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612c9d565b6125e0565b604051610720919061346e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612d02565b61260b565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ac57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f150b7a023d4804d13e8c85fb27262cb750cf6ba9f9dd3bb30d90f482ceeb4b1f9050949350505050565b61082681612141565b80156108375750610836816125e0565b5b610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d90613544565b60405180910390fd5b6000600360008381526020019081526020016000206001610896846125c0565b6108a091906137ff565b815481106108d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060090201905060008160000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008260060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061099e57508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d4906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac35760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084876040518463ffffffff1660e01b8152600401610a6f93929190613415565b600060405180830381600087803b158015610a8957600080fd5b505af1158015610a9d573d6000803e3d6000fd5b5050505060008360000160016101000a81548160ff021916908315150217905550610d9c565b826002015483600501541015610c595760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084876040518463ffffffff1660e01b8152600401610b3093929190613415565b600060405180830381600087803b158015610b4a57600080fd5b505af1158015610b5e573d6000803e3d6000fd5b5050505060008360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168460050154604051610bb0906133ae565b60006040518083038185875af1925050503d8060008114610bed576040519150601f19603f3d011682016040523d82523d6000602084013e610bf2565b606091505b5050905080610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613504565b60405180910390fd5b60008460000160016101000a81548160ff02191690831515021790555050610d9b565b60008360000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168460050154604051610ca7906133ae565b60006040518083038185875af1925050503d8060008114610ce4576040519150601f19603f3d011682016040523d82523d6000602084013e610ce9565b606091505b5050905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084886040518463ffffffff1660e01b8152600401610d4a93929190613415565b600060405180830381600087803b158015610d6457600080fd5b505af1158015610d78573d6000803e3d6000fd5b5050505060018460000160016101000a81548160ff021916908315150217905550505b5b60008360000160006101000a81548160ff02191690831515021790555050505050565b610dc76126b0565b60026000838152602001908152602001600020604051806101800160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff161515151581526020016000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016007820154815260200160088201805480602002602001604051908101604052809291908181526020016000905b82821015610fd657838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505081526020019060010190610f44565b50505050815250509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461103f57600080fd5b8060036000848152602001908152602001600020600161105e856125c0565b61106891906137ff565b8154811061109f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906009020160000160006101000a81548160ff0219169083151502179055505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161112491906136a6565b60206040518083038186803b15801561113c57600080fd5b505afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190612b64565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906134e4565b60405180910390fd5b438411611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613564565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561125d57600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613584565b60405180910390fd5b60006112f8836125c0565b148061131057506001151561130c836125e0565b1515145b61134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613524565b60405180910390fd5b6000600260006004548152602001908152602001600020905060018160000160006101000a81548160ff02191690831515021790555060008160000160016101000a81548160ff02191690831515021790555060008160000160026101000a81548160ff021916908315150217905550338160000160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181600101819055508381600201819055508481600301819055508281600401819055506000816005018190555060008160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008160070181905550600360008481526020019081526020016000208190806001815401808255809150506001900390600052602060002090600902016000909190919091506000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900460ff168160000160016101000a81548160ff0219169083151502179055506000820160029054906101000a900460ff168160000160026101000a81548160ff0219169083151502179055506000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201548160010155600282015481600201556003820154816003015560048201548160040155600582015481600501556006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600782015481600701556008820181600801908054611662929190612743565b50505060016004600082825461167891906137a9565b925050819055505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008160000151826060015183608001518460a001518560c001518660e001518761010001518861012001516040516020016116f298979695949392919061331c565b604051602081830303815290604052805190602001208360000151846060015185608001518660a001518760c001518860e001518961010001518a610120015160405160200161174998979695949392919061331c565b6040516020818303038152906040528051906020012014905092915050565b6000611773826125c0565b116117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613624565b60405180910390fd5b600015156117c0826125e0565b151514611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906135c4565b60405180910390fd5b61180b81612466565b34101561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613644565b60405180910390fd5b6118568161247c565b3411611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156118d157600080fd5b60006003600083815260200190815260200160002060016118f1846125c0565b6118fb91906137ff565b81548110611932577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a705760008160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682600501546040516119e8906133ae565b60006040518083038185875af1925050503d8060008114611a25576040519150601f19603f3d011682016040523d82523d6000602084013e611a2a565b606091505b5050905080611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590613504565b60405180910390fd5b505b348160050181905550338160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060080160405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200134815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050806007016000815480929190611b7c9061392f565b91905055505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401611bde91906136a6565b60206040518083038186803b158015611bf657600080fd5b505afa158015611c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2e9190612b64565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613604565b60405180910390fd5b60011515611ca882612141565b151514611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce1906135a4565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190613664565b60405180910390fd5b6000600360008381526020019081526020016000206001611d9a846125c0565b611da491906137ff565b81548110611ddb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f195760008160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260050154604051611e91906133ae565b60006040518083038185875af1925050503d8060008114611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b5050905080611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613504565b60405180910390fd5b505b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e308360000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611f9a939291906133de565b600060405180830381600087803b158015611fb457600080fd5b505af1158015611fc8573d6000803e3d6000fd5b5050505060008160000160006101000a81548160ff02191690831515021790555060008160000160016101000a81548160ff02191690831515021790555060018160000160026101000a81548160ff0219169083151502179055505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461208157600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b81526004016120de93929190613415565b600060405180830381600087803b1580156120f857600080fd5b505af115801561210c573d6000803e3d6000fd5b505050505050565b61211c6126b0565b61213a82600161212b856125c0565b61213591906137ff565b61218b565b9050919050565b600061214c82612114565b600001519050919050565b6000600454905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121936126b0565b6003600084815260200190815260200160002082815481106121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060090201604051806101800160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff161515151581526020016000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016007820154815260200160088201805480602002602001604051908101604052809291908181526020016000905b828210156123e857838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505081526020019060010190612356565b5050505081525050905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600061245b82612114565b602001519050919050565b600061247182612114565b608001519050919050565b600061248782612114565b61010001519050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906134a4565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061257182612114565b61012001519050919050565b606061258882612114565b61016001519050919050565b600061259f82612114565b604001519050919050565b60006125b582612114565b606001519050919050565b600060036000838152602001908152602001600020805490509050919050565b6000806125ec83612114565b90508060c001514310158061260357508060000151155b915050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461266557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156126ab573d6000803e3d6000fd5b505050565b604051806101800160405280600015158152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001606081525090565b8280548282559060005260206000209060020281019282156127fb5760005260206000209160020282015b828111156127fa5782826000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001820154816001015550509160020191906002019061276e565b5b509050612808919061280c565b5090565b5b8082111561284e57600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560018201600090555060020161280d565b5090565b6000612865612860846136e6565b6136c1565b9050808382526020820190508285604086028201111561288457600080fd5b60005b858110156128b4578161289a8882612ada565b845260208401935060408301925050600181019050612887565b5050509392505050565b60006128d16128cc84613712565b6136c1565b9050828152602081018484840111156128e957600080fd5b6128f48482856138ef565b509392505050565b60008135905061290b81613e39565b92915050565b60008151905061292081613e39565b92915050565b60008135905061293581613e50565b92915050565b600082601f83011261294c57600080fd5b813561295c848260208601612852565b91505092915050565b60008135905061297481613e67565b92915050565b600082601f83011261298b57600080fd5b813561299b8482602086016128be565b91505092915050565b600061018082840312156129b757600080fd5b6129c26101806136c1565b905060006129d284828501612965565b60008301525060206129e684828501612965565b60208301525060406129fa84828501612965565b6040830152506060612a0e84828501612926565b6060830152506080612a2284828501612b26565b60808301525060a0612a3684828501612b26565b60a08301525060c0612a4a84828501612b26565b60c08301525060e0612a5e84828501612b26565b60e083015250610100612a7384828501612b26565b61010083015250610120612a8984828501612926565b61012083015250610140612a9f84828501612b26565b6101408301525061016082013567ffffffffffffffff811115612ac157600080fd5b612acd8482850161293b565b6101608301525092915050565b600060408284031215612aec57600080fd5b612af660406136c1565b90506000612b06848285016128fc565b6000830152506020612b1a84828501612b26565b60208301525092915050565b600081359050612b3581613e7e565b92915050565b600060208284031215612b4d57600080fd5b6000612b5b848285016128fc565b91505092915050565b600060208284031215612b7657600080fd5b6000612b8484828501612911565b91505092915050565b600060208284031215612b9f57600080fd5b6000612bad84828501612926565b91505092915050565b60008060008060808587031215612bcc57600080fd5b6000612bda878288016128fc565b9450506020612beb878288016128fc565b9350506040612bfc87828801612b26565b925050606085013567ffffffffffffffff811115612c1957600080fd5b612c258782880161297a565b91505092959194509250565b60008060408385031215612c4457600080fd5b600083013567ffffffffffffffff811115612c5e57600080fd5b612c6a858286016129a4565b925050602083013567ffffffffffffffff811115612c8757600080fd5b612c93858286016129a4565b9150509250929050565b600060208284031215612caf57600080fd5b6000612cbd84828501612b26565b91505092915050565b60008060408385031215612cd957600080fd5b6000612ce785828601612b26565b9250506020612cf8858286016128fc565b9150509250929050565b60008060408385031215612d1557600080fd5b6000612d2385828601612b26565b9250506020612d3485828601612926565b9150509250929050565b60008060408385031215612d5157600080fd5b6000612d5f85828601612b26565b9250506020612d7085828601612965565b9150509250929050565b60008060408385031215612d8d57600080fd5b6000612d9b85828601612b26565b9250506020612dac85828601612b26565b9150509250929050565b60008060008060808587031215612dcc57600080fd5b6000612dda87828801612b26565b9450506020612deb87828801612b26565b9350506040612dfc87828801612b26565b9250506060612e0d87828801612b26565b91505092959194509250565b6000612e2583836132b8565b60408301905092915050565b612e3a816138b9565b82525050565b612e4981613845565b82525050565b612e60612e5b82613845565b613978565b82525050565b612e6f81613833565b82525050565b612e7e81613833565b82525050565b6000612e8f82613753565b612e99818561376b565b9350612ea483613743565b8060005b83811015612ed5578151612ebc8882612e19565b9750612ec78361375e565b925050600181019050612ea8565b5085935050505092915050565b6000612eed82613753565b612ef7818561377c565b9350612f0283613743565b8060005b83811015612f33578151612f1a8882612e19565b9750612f258361375e565b925050600181019050612f06565b5085935050505092915050565b612f4981613857565b82525050565b612f5881613857565b82525050565b612f6f612f6a82613857565b61398a565b82525050565b612f7e81613863565b82525050565b6000612f91602583613798565b9150612f9c82613a53565b604082019050919050565b6000612fb4602f83613798565b9150612fbf82613aa2565b604082019050919050565b6000612fd7602983613798565b9150612fe282613af1565b604082019050919050565b6000612ffa600f83613798565b915061300582613b40565b602082019050919050565b600061301d602483613798565b915061302882613b69565b604082019050919050565b6000613040601783613798565b915061304b82613bb8565b602082019050919050565b6000613063601983613798565b915061306e82613be1565b602082019050919050565b6000613086602483613798565b915061309182613c0a565b604082019050919050565b60006130a9601983613798565b91506130b482613c59565b602082019050919050565b60006130cc601883613798565b91506130d782613c82565b602082019050919050565b60006130ef602d83613798565b91506130fa82613cab565b604082019050919050565b6000613112602883613798565b915061311d82613cfa565b604082019050919050565b6000613135602583613798565b915061314082613d49565b604082019050919050565b600061315860008361378d565b915061316382613d98565b600082019050919050565b600061317b603c83613798565b915061318682613d9b565b604082019050919050565b600061319e602683613798565b91506131a982613dea565b604082019050919050565b6000610180830160008301516131cd6000860182612f40565b5060208301516131e06020860182612f40565b5060408301516131f36040860182612f40565b5060608301516132066060860182612e40565b50608083015161321960808601826132e7565b5060a083015161322c60a08601826132e7565b5060c083015161323f60c08601826132e7565b5060e083015161325260e08601826132e7565b506101008301516132676101008601826132e7565b5061012083015161327c610120860182612e40565b506101408301516132916101408601826132e7565b506101608301518482036101608601526132ab8282612e84565b9150508091505092915050565b6040820160008201516132ce6000850182612e66565b5060208201516132e160208501826132e7565b50505050565b6132f0816138af565b82525050565b6132ff816138af565b82525050565b613316613311826138af565b6139ae565b82525050565b6000613328828b612f5e565b600182019150613338828a612e4f565b6014820191506133488289613305565b6020820191506133588288613305565b6020820191506133688287613305565b6020820191506133788286613305565b6020820191506133888285613305565b6020820191506133988284612e4f565b6014820191508190509998505050505050505050565b60006133b98261314b565b9150819050919050565b60006020820190506133d86000830184612e75565b92915050565b60006060820190506133f36000830186612e75565b6134006020830185612e31565b61340d60408301846132f6565b949350505050565b600060608201905061342a6000830186612e75565b6134376020830185612e75565b61344460408301846132f6565b949350505050565b600060208201905081810360008301526134668184612ee2565b905092915050565b60006020820190506134836000830184612f4f565b92915050565b600060208201905061349e6000830184612f75565b92915050565b600060208201905081810360008301526134bd81612f84565b9050919050565b600060208201905081810360008301526134dd81612fa7565b9050919050565b600060208201905081810360008301526134fd81612fca565b9050919050565b6000602082019050818103600083015261351d81612fed565b9050919050565b6000602082019050818103600083015261353d81613010565b9050919050565b6000602082019050818103600083015261355d81613033565b9050919050565b6000602082019050818103600083015261357d81613056565b9050919050565b6000602082019050818103600083015261359d81613079565b9050919050565b600060208201905081810360008301526135bd8161309c565b9050919050565b600060208201905081810360008301526135dd816130bf565b9050919050565b600060208201905081810360008301526135fd816130e2565b9050919050565b6000602082019050818103600083015261361d81613105565b9050919050565b6000602082019050818103600083015261363d81613128565b9050919050565b6000602082019050818103600083015261365d8161316e565b9050919050565b6000602082019050818103600083015261367d81613191565b9050919050565b6000602082019050818103600083015261369e81846131b4565b905092915050565b60006020820190506136bb60008301846132f6565b92915050565b60006136cb6136dc565b90506136d782826138fe565b919050565b6000604051905090565b600067ffffffffffffffff821115613701576137006139f9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561372d5761372c6139f9565b5b61373682613a28565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006137b4826138af565b91506137bf836138af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137f4576137f36139ca565b5b828201905092915050565b600061380a826138af565b9150613815836138af565b925082821015613828576138276139ca565b5b828203905092915050565b600061383e8261388f565b9050919050565b60006138508261388f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006138c4826138cb565b9050919050565b60006138d6826138dd565b9050919050565b60006138e88261388f565b9050919050565b82818337600083830152505050565b61390782613a28565b810181811067ffffffffffffffff82111715613926576139256139f9565b5b80604052505050565b600061393a826138af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561396d5761396c6139ca565b5b600182019050919050565b60006139838261399c565b9050919050565b6000613995826139b8565b9050919050565b60006139a782613a46565b9050919050565b6000819050919050565b60006139c382613a39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206269642073686f756c642062652067726561746572207468616e2060008201527f746865206d6178696d756d206269640000000000000000000000000000000000602082015250565b7f506c65617365207472616e7366657220746865204e465420746f20746869732060008201527f636f6e74726163742e0000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f546865726520697320616c726561647920616e2061756374696f6e20676f696e60008201527f67206f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f5468652061756374696f6e206973206e6f74206f70656e000000000000000000600082015250565b7f41756374696f6e2077696c6c20656e6420746f6f20736f6f6e00000000000000600082015250565b7f4f6e6c7920746865206f776e65722063616e2063726561746520616e2061756360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f41756374696f6e20697320616c726561647920636c6f73656400000000000000600082015250565b7f546869732061756374696f6e2068617320657870697265640000000000000000600082015250565b7f596f75206d75737420626520746865206d617820626964646572206f7220736560008201527f6c6c657220746f20636c61696d00000000000000000000000000000000000000602082015250565b7f506c65617365207472616e7366657220746865204e465420746f20746869732060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2061756374696f6e73207769746820746869732060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f596f7572206269642073686f756c642062652067726561746572207468616e2060008201527f6f7220657175616c20746f20746865207374617274696e672062696400000000602082015250565b7f4f6e6c79207468652073656c6c65722063616e20636c6f73652074686973206160008201527f756374696f6e0000000000000000000000000000000000000000000000000000602082015250565b613e4281613833565b8114613e4d57600080fd5b50565b613e5981613845565b8114613e6457600080fd5b50565b613e7081613857565b8114613e7b57600080fd5b50565b613e87816138af565b8114613e9257600080fd5b5056fea26469706673582212208b5e071815b5e6f7e051fc0eb38c7b760c11dc1ed14086f53da4f19d5233e75664736f6c63430008040033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x4033 CODESIZE SUB DUP1 PUSH3 0x4033 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0xDE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP PUSH3 0x158 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0xD8 DUP2 PUSH3 0x13E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x101 DUP5 DUP3 DUP6 ADD PUSH3 0xC7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x117 DUP3 PUSH3 0x11E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x149 DUP2 PUSH3 0x10A JUMP JUMPDEST DUP2 EQ PUSH3 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3ECB DUP1 PUSH3 0x168 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1B7 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 GT PUSH2 0xEC JUMPI DUP1 PUSH4 0xC0E0A3AB GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xD082D7E0 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xD082D7E0 EQ PUSH2 0x672 JUMPI DUP1 PUSH4 0xE39D701A EQ PUSH2 0x6AF JUMPI DUP1 PUSH4 0xEE14CB68 EQ PUSH2 0x6EC JUMPI DUP1 PUSH4 0xF08E362F EQ PUSH2 0x729 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0xC0E0A3AB EQ PUSH2 0x5BB JUMPI DUP1 PUSH4 0xC68733CB EQ PUSH2 0x5F8 JUMPI DUP1 PUSH4 0xCCA8DADD EQ PUSH2 0x635 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x8FCD706E GT PUSH2 0xC6 JUMPI DUP1 PUSH4 0x8FCD706E EQ PUSH2 0x4DB JUMPI DUP1 PUSH4 0x959B19D0 EQ PUSH2 0x518 JUMPI DUP1 PUSH4 0xB18DB8F2 EQ PUSH2 0x555 JUMPI DUP1 PUSH4 0xBBCD5BBE EQ PUSH2 0x592 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0x8BB9A6C5 EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x8F32D59B EQ PUSH2 0x4B0 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x3F5FDDCC GT PUSH2 0x159 JUMPI DUP1 PUSH4 0x6BB02FCD GT PUSH2 0x133 JUMPI DUP1 PUSH4 0x6BB02FCD EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x77413267 EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0x823E88E6 EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x879A30F7 EQ PUSH2 0x41D JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x3F5FDDCC EQ PUSH2 0x305 JUMPI DUP1 PUSH4 0x454A2AB3 EQ PUSH2 0x342 JUMPI DUP1 PUSH4 0x4ACC200F EQ PUSH2 0x35E JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x18111ADA GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x18111ADA EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0x21C2F883 EQ PUSH2 0x288 JUMPI DUP1 PUSH4 0x285A71D4 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x28B7BEDE EQ PUSH2 0x2DA JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x13AF4035 EQ PUSH2 0x1BC JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1E5 JUMPI DUP1 PUSH4 0x168A0B32 EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST PUSH2 0x752 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2BB6 JUMP JUMPDEST PUSH2 0x7F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x3489 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x249 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x81D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x272 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0xDBF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27F SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x294 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x2D3E JUMP JUMPDEST PUSH2 0xFE5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x2DB6 JUMP JUMPDEST PUSH2 0x10CB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x1686 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FC SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x311 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x327 SWAP2 SWAP1 PUSH2 0x2C31 JUMP JUMPDEST PUSH2 0x16AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x1768 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x378 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x373 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x1B85 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39C SWAP2 SWAP1 PUSH2 0x2CC6 JUMP JUMPDEST PUSH2 0x2027 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C5 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D7 SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x407 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x402 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2141 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x414 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x429 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x432 PUSH2 0x2157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x43F SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45D PUSH2 0x2161 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46A SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x47F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x49A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x495 SWAP2 SWAP1 PUSH2 0x2D7A JUMP JUMPDEST PUSH2 0x218B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A7 SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4C5 PUSH2 0x23F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D2 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x502 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4FD SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50F SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x524 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x53F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x53A SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2466 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54C SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x561 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x57C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x577 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x247C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x589 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B4 SWAP2 SWAP1 PUSH2 0x2B3B JUMP JUMPDEST PUSH2 0x2493 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5DD SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5EF SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x604 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x61F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x61A SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x257D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x62C SWAP2 SWAP1 PUSH2 0x344C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x65C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x657 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2594 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x669 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x699 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x694 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6A6 SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6D6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6D1 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x713 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x70E SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x750 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x74B SWAP2 SWAP1 PUSH2 0x2D02 JUMP JUMPDEST PUSH2 0x260B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x150B7A023D4804D13E8C85FB27262CB750CF6BA9F9DD3BB30D90F482CEEB4B1F SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x826 DUP2 PUSH2 0x2141 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x837 JUMPI POP PUSH2 0x836 DUP2 PUSH2 0x25E0 JUMP JUMPDEST JUMPDEST PUSH2 0x876 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86D SWAP1 PUSH2 0x3544 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x896 DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x8A0 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x8D7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x99E JUMPI POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D4 SWAP1 PUSH2 0x35E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAC3 JUMPI PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA89 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA9D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xD9C JUMP JUMPDEST DUP3 PUSH1 0x2 ADD SLOAD DUP4 PUSH1 0x5 ADD SLOAD LT ISZERO PUSH2 0xC59 JUMPI PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB30 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB4A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB5E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP4 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xBB0 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBED JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBF2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xC36 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC2D SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP PUSH2 0xD9B JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xCA7 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCE4 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCE9 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD78 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x1 DUP5 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0xDC7 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xFD6 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xF44 JUMP JUMPDEST POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x103F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x105E DUP6 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x1068 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x109F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1124 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1150 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 0x1174 SWAP2 SWAP1 PUSH2 0x2B64 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11D8 SWAP1 PUSH2 0x34E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST NUMBER DUP5 GT PUSH2 0x1223 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x121A SWAP1 PUSH2 0x3564 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12ED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12E4 SWAP1 PUSH2 0x3584 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x12F8 DUP4 PUSH2 0x25C0 JUMP JUMPDEST EQ DUP1 PUSH2 0x1310 JUMPI POP PUSH1 0x1 ISZERO ISZERO PUSH2 0x130C DUP4 PUSH2 0x25E0 JUMP JUMPDEST ISZERO ISZERO EQ JUMPDEST PUSH2 0x134F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1346 SWAP1 PUSH2 0x3524 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 PUSH1 0x4 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP5 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP DUP3 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x7 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 ADD SLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x2 DUP3 ADD SLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x3 DUP3 ADD SLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x4 DUP3 ADD SLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0x5 DUP3 ADD SLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x7 DUP3 ADD SLOAD DUP2 PUSH1 0x7 ADD SSTORE PUSH1 0x8 DUP3 ADD DUP2 PUSH1 0x8 ADD SWAP1 DUP1 SLOAD PUSH2 0x1662 SWAP3 SWAP2 SWAP1 PUSH2 0x2743 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1678 SWAP2 SWAP1 PUSH2 0x37A9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x80 ADD MLOAD DUP5 PUSH1 0xA0 ADD MLOAD DUP6 PUSH1 0xC0 ADD MLOAD DUP7 PUSH1 0xE0 ADD MLOAD DUP8 PUSH2 0x100 ADD MLOAD DUP9 PUSH2 0x120 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x16F2 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x331C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP4 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD DUP6 PUSH1 0x80 ADD MLOAD DUP7 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xC0 ADD MLOAD DUP9 PUSH1 0xE0 ADD MLOAD DUP10 PUSH2 0x100 ADD MLOAD DUP11 PUSH2 0x120 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1749 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x331C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1773 DUP3 PUSH2 0x25C0 JUMP JUMPDEST GT PUSH2 0x17B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17AA SWAP1 PUSH2 0x3624 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH2 0x17C0 DUP3 PUSH2 0x25E0 JUMP JUMPDEST ISZERO ISZERO EQ PUSH2 0x1802 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17F9 SWAP1 PUSH2 0x35C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x180B DUP2 PUSH2 0x2466 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0x184D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1844 SWAP1 PUSH2 0x3644 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1856 DUP2 PUSH2 0x247C JUMP JUMPDEST CALLVALUE GT PUSH2 0x1897 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x188E SWAP1 PUSH2 0x34C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x18D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x18F1 DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x18FB SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1932 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A70 JUMPI PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0x19E8 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A25 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A2A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x1A6E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A65 SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST CALLVALUE DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP CALLER DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x8 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD CALLVALUE DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP DUP1 PUSH1 0x7 ADD PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1B7C SWAP1 PUSH2 0x392F JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BDE SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C0A 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 0x1C2E SWAP2 SWAP1 PUSH2 0x2B64 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C92 SWAP1 PUSH2 0x3604 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH2 0x1CA8 DUP3 PUSH2 0x2141 JUMP JUMPDEST ISZERO ISZERO EQ PUSH2 0x1CEA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CE1 SWAP1 PUSH2 0x35A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1D7A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D71 SWAP1 PUSH2 0x3664 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x1D9A DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x1DA4 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1DDB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F19 JUMPI PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0x1E91 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1ECE JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x1F17 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F0E SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP4 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F9A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x33DE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FC8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2081 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP4 DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20DE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x20F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x210C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x211C PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x213A DUP3 PUSH1 0x1 PUSH2 0x212B DUP6 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x2135 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST PUSH2 0x218B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x214C DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x2193 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x21DE JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x23E8 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2356 JUMP JUMPDEST POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245B DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x20 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2471 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x80 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2487 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x100 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2523 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x251A SWAP1 PUSH2 0x34A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2571 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x120 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2588 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x160 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259F DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x40 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25B5 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x60 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x25EC DUP4 PUSH2 0x2114 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xC0 ADD MLOAD NUMBER LT ISZERO DUP1 PUSH2 0x2603 JUMPI POP DUP1 PUSH1 0x0 ADD MLOAD ISZERO JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x26AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x27FB JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x2 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x27FA JUMPI DUP3 DUP3 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 ADD SLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP SWAP2 PUSH1 0x2 ADD SWAP2 SWAP1 PUSH1 0x2 ADD SWAP1 PUSH2 0x276E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2808 SWAP2 SWAP1 PUSH2 0x280C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x284E JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x280D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2865 PUSH2 0x2860 DUP5 PUSH2 0x36E6 JUMP JUMPDEST PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x40 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2884 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x28B4 JUMPI DUP2 PUSH2 0x289A DUP9 DUP3 PUSH2 0x2ADA JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x40 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2887 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28D1 PUSH2 0x28CC DUP5 PUSH2 0x3712 JUMP JUMPDEST PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x28E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x28F4 DUP5 DUP3 DUP6 PUSH2 0x38EF JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x290B DUP2 PUSH2 0x3E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2920 DUP2 PUSH2 0x3E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2935 DUP2 PUSH2 0x3E50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x294C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x295C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2852 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2974 DUP2 PUSH2 0x3E67 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x298B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x299B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x29B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x29C2 PUSH2 0x180 PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x29D2 DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x29E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP PUSH1 0x40 PUSH2 0x29FA DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE POP PUSH1 0x60 PUSH2 0x2A0E DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE POP PUSH1 0x80 PUSH2 0x2A22 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP PUSH1 0xA0 PUSH2 0x2A36 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE POP PUSH1 0xC0 PUSH2 0x2A4A DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE POP PUSH1 0xE0 PUSH2 0x2A5E DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP PUSH2 0x100 PUSH2 0x2A73 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x100 DUP4 ADD MSTORE POP PUSH2 0x120 PUSH2 0x2A89 DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST PUSH2 0x120 DUP4 ADD MSTORE POP PUSH2 0x140 PUSH2 0x2A9F DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x140 DUP4 ADD MSTORE POP PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2AC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2ACD DUP5 DUP3 DUP6 ADD PUSH2 0x293B JUMP JUMPDEST PUSH2 0x160 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2AF6 PUSH1 0x40 PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2B06 DUP5 DUP3 DUP6 ADD PUSH2 0x28FC JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2B1A DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B35 DUP2 PUSH2 0x3E7E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B5B DUP5 DUP3 DUP6 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B84 DUP5 DUP3 DUP6 ADD PUSH2 0x2911 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B9F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2BAD DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2BCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2BDA DUP8 DUP3 DUP9 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2BEB DUP8 DUP3 DUP9 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2BFC DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C25 DUP8 DUP3 DUP9 ADD PUSH2 0x297A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C6A DUP6 DUP3 DUP7 ADD PUSH2 0x29A4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C93 DUP6 DUP3 DUP7 ADD PUSH2 0x29A4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2CAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2CBD DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2CD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2CE7 DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2CF8 DUP6 DUP3 DUP7 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D23 DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D34 DUP6 DUP3 DUP7 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D5F DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D70 DUP6 DUP3 DUP7 ADD PUSH2 0x2965 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D8D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D9B DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2DAC DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2DCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2DDA DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2DEB DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2DFC DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x2E0D DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E25 DUP4 DUP4 PUSH2 0x32B8 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2E3A DUP2 PUSH2 0x38B9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E49 DUP2 PUSH2 0x3845 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E60 PUSH2 0x2E5B DUP3 PUSH2 0x3845 JUMP JUMPDEST PUSH2 0x3978 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E6F DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E7E DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E8F DUP3 PUSH2 0x3753 JUMP JUMPDEST PUSH2 0x2E99 DUP2 DUP6 PUSH2 0x376B JUMP JUMPDEST SWAP4 POP PUSH2 0x2EA4 DUP4 PUSH2 0x3743 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2ED5 JUMPI DUP2 MLOAD PUSH2 0x2EBC DUP9 DUP3 PUSH2 0x2E19 JUMP JUMPDEST SWAP8 POP PUSH2 0x2EC7 DUP4 PUSH2 0x375E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2EA8 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EED DUP3 PUSH2 0x3753 JUMP JUMPDEST PUSH2 0x2EF7 DUP2 DUP6 PUSH2 0x377C JUMP JUMPDEST SWAP4 POP PUSH2 0x2F02 DUP4 PUSH2 0x3743 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2F33 JUMPI DUP2 MLOAD PUSH2 0x2F1A DUP9 DUP3 PUSH2 0x2E19 JUMP JUMPDEST SWAP8 POP PUSH2 0x2F25 DUP4 PUSH2 0x375E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2F06 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F49 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F58 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F6F PUSH2 0x2F6A DUP3 PUSH2 0x3857 JUMP JUMPDEST PUSH2 0x398A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F7E DUP2 PUSH2 0x3863 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F91 PUSH1 0x25 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F9C DUP3 PUSH2 0x3A53 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FB4 PUSH1 0x2F DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FBF DUP3 PUSH2 0x3AA2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FD7 PUSH1 0x29 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FE2 DUP3 PUSH2 0x3AF1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FFA PUSH1 0xF DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3005 DUP3 PUSH2 0x3B40 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301D PUSH1 0x24 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3028 DUP3 PUSH2 0x3B69 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3040 PUSH1 0x17 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x304B DUP3 PUSH2 0x3BB8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3063 PUSH1 0x19 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x306E DUP3 PUSH2 0x3BE1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3086 PUSH1 0x24 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3091 DUP3 PUSH2 0x3C0A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30A9 PUSH1 0x19 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30B4 DUP3 PUSH2 0x3C59 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30CC PUSH1 0x18 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30D7 DUP3 PUSH2 0x3C82 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30EF PUSH1 0x2D DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30FA DUP3 PUSH2 0x3CAB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3112 PUSH1 0x28 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x311D DUP3 PUSH2 0x3CFA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3135 PUSH1 0x25 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3140 DUP3 PUSH2 0x3D49 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3158 PUSH1 0x0 DUP4 PUSH2 0x378D JUMP JUMPDEST SWAP2 POP PUSH2 0x3163 DUP3 PUSH2 0x3D98 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317B PUSH1 0x3C DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3186 DUP3 PUSH2 0x3D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x319E PUSH1 0x26 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x31A9 DUP3 PUSH2 0x3DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD PUSH2 0x31CD PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x31E0 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x31F3 PUSH1 0x40 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x3206 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0x2E40 JUMP JUMPDEST POP PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x3219 PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x322C PUSH1 0xA0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH2 0x323F PUSH1 0xC0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xE0 DUP4 ADD MLOAD PUSH2 0x3252 PUSH1 0xE0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x3267 PUSH2 0x100 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x327C PUSH2 0x120 DUP7 ADD DUP3 PUSH2 0x2E40 JUMP JUMPDEST POP PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x3291 PUSH2 0x140 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH2 0x160 DUP7 ADD MSTORE PUSH2 0x32AB DUP3 DUP3 PUSH2 0x2E84 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x32CE PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2E66 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x32E1 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x32F0 DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32FF DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3316 PUSH2 0x3311 DUP3 PUSH2 0x38AF JUMP JUMPDEST PUSH2 0x39AE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3328 DUP3 DUP12 PUSH2 0x2F5E JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x3338 DUP3 DUP11 PUSH2 0x2E4F JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x3348 DUP3 DUP10 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3358 DUP3 DUP9 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3368 DUP3 DUP8 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3378 DUP3 DUP7 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3388 DUP3 DUP6 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3398 DUP3 DUP5 PUSH2 0x2E4F JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33B9 DUP3 PUSH2 0x314B JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x33D8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2E75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x33F3 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3400 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2E31 JUMP JUMPDEST PUSH2 0x340D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x342A PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3437 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3444 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3466 DUP2 DUP5 PUSH2 0x2EE2 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3483 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F4F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x349E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34BD DUP2 PUSH2 0x2F84 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34DD DUP2 PUSH2 0x2FA7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34FD DUP2 PUSH2 0x2FCA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x351D DUP2 PUSH2 0x2FED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x353D DUP2 PUSH2 0x3010 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x355D DUP2 PUSH2 0x3033 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x357D DUP2 PUSH2 0x3056 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x359D DUP2 PUSH2 0x3079 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35BD DUP2 PUSH2 0x309C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35DD DUP2 PUSH2 0x30BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35FD DUP2 PUSH2 0x30E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x361D DUP2 PUSH2 0x3105 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x363D DUP2 PUSH2 0x3128 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x365D DUP2 PUSH2 0x316E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x367D DUP2 PUSH2 0x3191 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x369E DUP2 DUP5 PUSH2 0x31B4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x36BB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36CB PUSH2 0x36DC JUMP JUMPDEST SWAP1 POP PUSH2 0x36D7 DUP3 DUP3 PUSH2 0x38FE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3701 JUMPI PUSH2 0x3700 PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x372D JUMPI PUSH2 0x372C PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST PUSH2 0x3736 DUP3 PUSH2 0x3A28 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37B4 DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH2 0x37BF DUP4 PUSH2 0x38AF JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x37F4 JUMPI PUSH2 0x37F3 PUSH2 0x39CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x380A DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH2 0x3815 DUP4 PUSH2 0x38AF JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3828 JUMPI PUSH2 0x3827 PUSH2 0x39CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x383E DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3850 DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38C4 DUP3 PUSH2 0x38CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D6 DUP3 PUSH2 0x38DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38E8 DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x3907 DUP3 PUSH2 0x3A28 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3926 JUMPI PUSH2 0x3925 PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x393A DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x396D JUMPI PUSH2 0x396C PUSH2 0x39CA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3983 DUP3 PUSH2 0x399C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3995 DUP3 PUSH2 0x39B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39A7 DUP3 PUSH2 0x3A46 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C3 DUP3 PUSH2 0x3A39 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xF8 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7920746865206F776E65722063616E2063616C6C20746869732066756E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6374696F6E000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x596F7572206269642073686F756C642062652067726561746572207468616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746865206D6178696D756D206269640000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207472616E7366657220746865204E465420746F207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x636F6E74726163742E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5472616E73666572206661696C65640000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546865726520697320616C726561647920616E2061756374696F6E20676F696E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x67206F6E00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5468652061756374696F6E206973206E6F74206F70656E000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41756374696F6E2077696C6C20656E6420746F6F20736F6F6E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920746865206F776E65722063616E2063726561746520616E20617563 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74696F6E00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41756374696F6E20697320616C726561647920636C6F73656400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546869732061756374696F6E2068617320657870697265640000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x596F75206D75737420626520746865206D617820626964646572206F72207365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C657220746F20636C61696D00000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207472616E7366657220746865204E465420746F207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x636F6E7472616374000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546865726520617265206E6F2061756374696F6E732077697468207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x596F7572206269642073686F756C642062652067726561746572207468616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F7220657175616C20746F20746865207374617274696E672062696400000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C79207468652073656C6C65722063616E20636C6F736520746869732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x756374696F6E0000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x3E42 DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E59 DUP2 PUSH2 0x3845 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E70 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E87 DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP2 EQ PUSH2 0x3E92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP12 0x5E SMOD XOR ISZERO 0xB5 0xE6 0xF7 0xE0 MLOAD 0xFC 0xE 0xB3 DUP13 PUSH28 0x760C11DC1ED14086F53DA4F19D5233E75664736F6C63430008040033 ", | |
"sourceMap": "101:9277:0:-:0;;;760:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;826:1;812:11;:15;;;;860:12;837:11;;:36;;;;;;;;;;;;;;;;;;899:10;883:5;;:27;;;;;;;;;;;;;;;;;;760:157;101:9277;;7:143:20;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;70:80;;;;:::o;156:284::-;226:6;275:2;263:9;254:7;250:23;246:32;243:2;;;291:1;288;281:12;243:2;334:1;359:64;415:7;406:6;395:9;391:22;359:64;:::i;:::-;349:74;;305:128;233:207;;;;:::o;446:96::-;483:7;512:24;530:5;512:24;:::i;:::-;501:35;;491:51;;;:::o;548:126::-;585:7;625:42;618:5;614:54;603:65;;593:81;;;:::o;680:122::-;753:24;771:5;753:24;:::i;:::-;746:5;743:35;733:2;;792:1;789;782:12;733:2;723:79;:::o;101:9277:0:-;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:43234:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "156:591:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "166:109:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "267:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "191:75:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "191:83:20" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "175:15:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "175:100:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "166:5:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "284:16:20", | |
"value": { | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "295:5:20" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "288:3:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "317:5:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "324:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "310:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "310:21:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "310:21:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "340:23:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "351:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "358:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "347:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "347:16:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "340:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "373:17:20", | |
"value": { | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "384:6:20" | |
}, | |
"variables": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "377:3:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "439:36:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "460:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "463:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "453:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "453:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "453:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "409:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "418:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "426:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "414:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "414:17:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "405:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "405:27:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "434:3:20" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "402:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "402:36:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "399:2:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "544:197:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "559:21:20", | |
"value": { | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "577:3:20" | |
}, | |
"variables": [ | |
{ | |
"name": "elementPos", | |
"nodeType": "YulTypedName", | |
"src": "563:10:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "601:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "elementPos", | |
"nodeType": "YulIdentifier", | |
"src": "646:10:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "658:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "606:39:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "606:56:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "594:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "594:69:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "594:69:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "676:21:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "687:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "692:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "683:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "683:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "676:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "710:21:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "721:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "726:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "717:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "717:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "710:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "506:1:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "509:6:20" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "503:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "503:13:20" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "517:18:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "519:14:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "528:1:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "531:1:20", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "524:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "524:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "519:1:20" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "488:14:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "490:10:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "499:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "494:1:20", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "484:257:20" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "126:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "134:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "142:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "150:5:20", | |
"type": "" | |
} | |
], | |
"src": "35:712:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "836:260:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "846:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "912:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "871:40:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "871:48:20" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "855:15:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "855:65:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "846:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "936:5:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "943:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "929:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "929:21:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "929:21:20" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "959:27:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "974:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "981:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "970:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "970:16:20" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "963:3:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1024:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1033:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1036:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "1026:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1026:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1026:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "1005:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1010:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1001:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1001:16:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1019:3:20" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "998:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "998:25:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "995:2:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "1073:3:20" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "1078:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1083:6:20" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "1049:23:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1049:41:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1049:41:20" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "809:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "814:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "822:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "830:5:20", | |
"type": "" | |
} | |
], | |
"src": "753:343:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1154:87:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1164:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1186:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "1173:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1173:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1164:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1229:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1202:26:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1202:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1202:33:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1132:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1140:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "1148:5:20", | |
"type": "" | |
} | |
], | |
"src": "1102:139:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1310:80:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1320:22:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1335:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "1329:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1329:13:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1320:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1378:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1351:26:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1351:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1351:33:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1288:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1296:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "1304:5:20", | |
"type": "" | |
} | |
], | |
"src": "1247:143:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1456:95:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1466:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1488:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "1475:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1475:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1466:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1539:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "1504:34:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1504:41:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1504:41:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1434:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1442:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "1450:5:20", | |
"type": "" | |
} | |
], | |
"src": "1396:155:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1681:245:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1730:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1739:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1742:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "1732:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1732:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1732:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1709:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1717:4:20", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1705:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1705:17:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1724:3:20" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1701:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1701:27:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "1694:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1694:35:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "1691:2:20" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1755:34:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1782:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "1769:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1769:20:20" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1759:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1798:122:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1893:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1901:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1889:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1889:17:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1908:6:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1916:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "1807:81:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1807:113:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1798:5:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1659:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1667:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "1675:5:20", | |
"type": "" | |
} | |
], | |
"src": "1585:341:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1981:84:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1991:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2013:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2000:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2000:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1991:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2053:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "2029:23:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2029:30:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2029:30:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1959:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1967:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "1975:5:20", | |
"type": "" | |
} | |
], | |
"src": "1932:133:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2145:210:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2194:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2203:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2206:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "2196:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2196:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2196:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2173:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2181:4:20", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2169:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2169:17:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2188:3:20" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2165:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2165:27:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "2158:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2158:35:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "2155:2:20" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2219:34:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2246:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2233:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2233:20:20" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "2223:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2262:87:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2322:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2330:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2318:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2318:17:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2337:6:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2345:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "2271:46:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2271:78:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "2262:5:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2123:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2131:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "2139:5:20", | |
"type": "" | |
} | |
], | |
"src": "2084:271:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2469:2239:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2515:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2524:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2527:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "2517:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2517:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2517:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2490:3:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2495:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "2486:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2486:19:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2507:6:20", | |
"type": "", | |
"value": "0x0180" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2482:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2482:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "2479:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2540:32:20", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2565:6:20", | |
"type": "", | |
"value": "0x0180" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "2549:15:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2549:23:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2540:5:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2582:147:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2617:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2631:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2621:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2657:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2664:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2653:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2653:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2693:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2704:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2689:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2689:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2713:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "2671:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2671:46:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "2646:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2646:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2646:72:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2739:148:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2774:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2788:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2778:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2815:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2822:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2811:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2811:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2851:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2862:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2847:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2847:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2871:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "2829:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2829:46:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "2804:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2804:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2804:72:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2897:152:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2936:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2950:2:20", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2940:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2977:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2984:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2973:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2973:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3013:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3024:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3009:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3009:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3033:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "2991:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2991:46:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "2966:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2966:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2966:72:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3059:161:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3096:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3110:2:20", | |
"type": "", | |
"value": "96" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3100:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3137:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3144:4:20", | |
"type": "", | |
"value": "0x60" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3133:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3133:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3184:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3195:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3180:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3180:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3204:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "3151:28:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3151:57:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3126:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3126:83:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3126:83:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3230:159:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3272:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3286:3:20", | |
"type": "", | |
"value": "128" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3276:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3314:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3321:4:20", | |
"type": "", | |
"value": "0x80" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3310:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3310:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3353:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3364:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3349:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3349:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3373:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3328:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3328:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3303:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3303:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3303:75:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3399:160:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3442:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3456:3:20", | |
"type": "", | |
"value": "160" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3446:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3484:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3491:4:20", | |
"type": "", | |
"value": "0xa0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3480:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3480:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3523:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3534:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3519:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3519:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3543:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3498:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3498:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3473:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3473:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3473:75:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3569:156:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3608:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3622:3:20", | |
"type": "", | |
"value": "192" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3612:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3650:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3657:4:20", | |
"type": "", | |
"value": "0xc0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3646:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3646:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3689:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3700:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3685:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3685:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3709:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3664:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3664:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3639:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3639:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3639:75:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3735:155:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3773:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3787:3:20", | |
"type": "", | |
"value": "224" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3777:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3815:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3822:4:20", | |
"type": "", | |
"value": "0xe0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3811:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3811:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3854:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3865:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3850:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3850:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3874:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3829:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3829:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3804:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3804:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3804:75:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3900:156:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3937:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3951:3:20", | |
"type": "", | |
"value": "256" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3941:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3979:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3986:6:20", | |
"type": "", | |
"value": "0x0100" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3975:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3975:18:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4020:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4031:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4016:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4016:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4040:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3995:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3995:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3968:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3968:77:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3968:77:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4066:167:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4106:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4120:3:20", | |
"type": "", | |
"value": "288" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4110:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4148:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4155:6:20", | |
"type": "", | |
"value": "0x0120" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4144:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4144:18:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4197:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4208:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4193:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4193:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4217:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "4164:28:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4164:57:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4137:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4137:85:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4137:85:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4243:157:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4281:17:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4295:3:20", | |
"type": "", | |
"value": "320" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4285:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4323:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4330:6:20", | |
"type": "", | |
"value": "0x0140" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4319:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4319:18:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4364:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4375:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4360:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4360:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4384:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4339:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4339:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4312:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4312:77:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4312:77:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4410:291:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4445:47:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4476:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4487:3:20", | |
"type": "", | |
"value": "352" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4472:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4472:19:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "4459:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4459:33:20" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4449:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4539:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4548:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4551:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4541:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4541:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4541:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4511:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4519:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "4508:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4508:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "4505:2:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4580:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4587:6:20", | |
"type": "", | |
"value": "0x0160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4576:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4576:18:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4665:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4676:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4661:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4661:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4685:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "4596:64:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4596:93:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4569:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4569:121:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4569:121:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_struct$_Auction_$41_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "2444:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2455:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "2463:5:20", | |
"type": "" | |
} | |
], | |
"src": "2391:2317:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4814:428:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4858:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4867:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4870:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4860:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4860:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4860:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4835:3:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4840:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4831:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4831:19:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4852:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "4827:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4827:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "4824:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4883:30:20", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4908:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "4892:15:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4892:21:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4883:5:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4923:152:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4960:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4974:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4964:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5000:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5007:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4996:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4996:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5039:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5050:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5035:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5035:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "5059:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "5014:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5014:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4989:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4989:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4989:75:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5085:150:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5119:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5133:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5123:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5160:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5167:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5156:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5156:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5199:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5210:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5195:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5195:22:20" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "5219:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "5174:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5174:49:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5149:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5149:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5149:75:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "4789:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4800:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4808:5:20", | |
"type": "" | |
} | |
], | |
"src": "4740:502:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5300:87:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5310:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5332:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "5319:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5319:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5310:5:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5375:5:20" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "5348:26:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5348:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5348:33:20" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5278:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "5286:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "5294:5:20", | |
"type": "" | |
} | |
], | |
"src": "5248:139:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5459:196:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5505:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5514:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5517:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5507:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5507:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5507:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5480:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5489:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5476:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5476:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5501:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5472:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5472:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "5469:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5531:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5546:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5560:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5550:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5575:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5610:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5621:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5606:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5606:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5630:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "5585:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5585:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5575:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5429:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5440:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5452:6:20", | |
"type": "" | |
} | |
], | |
"src": "5393:262:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5738:207:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5784:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5793:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5796:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5786:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5786:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5786:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5759:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5768:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5755:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5755:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5780:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5751:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5751:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "5748:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5810:128:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5825:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5839:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5829:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5854:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5900:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5911:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5896:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5896:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5920:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_fromMemory", | |
"nodeType": "YulIdentifier", | |
"src": "5864:31:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5864:64:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5854:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5708:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5719:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5731:6:20", | |
"type": "" | |
} | |
], | |
"src": "5661:284:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6025:204:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6071:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6080:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6083:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "6073:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6073:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6073:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6046:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6055:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "6042:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6042:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6067:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "6038:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6038:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "6035:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6097:125:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6112:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6126:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6116:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6141:71:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6184:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6195:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6180:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6180:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6204:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "6151:28:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6151:61:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6141:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5995:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "6006:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6018:6:20", | |
"type": "" | |
} | |
], | |
"src": "5951:278:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6361:683:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6408:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6417:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6420:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "6410:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6410:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6410:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6382:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6391:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "6378:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6378:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6403:3:20", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "6374:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6374:33:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "6371:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6434:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6449:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6463:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6453:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6478:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6513:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6524:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6509:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6509:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6533:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "6488:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6488:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6478:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6561:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6576:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6590:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6580:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6606:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6641:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6652:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6637:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6637:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6661:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "6616:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6616:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "6606:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6689:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6704:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6718:2:20", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6708:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6734:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6769:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6780:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6765:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6765:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6789:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "6744:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6744:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "6734:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6817:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6832:46:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6863:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6874:2:20", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6859:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6859:18:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "6846:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6846:32:20" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6836:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6925:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6934:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6937:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "6927:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6927:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6927:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6897:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6905:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "6894:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6894:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "6891:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6955:72:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6999:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7010:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6995:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6995:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7019:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6965:29:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6965:62:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "6955:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6307:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "6318:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6330:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "6338:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "6346:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "6354:6:20", | |
"type": "" | |
} | |
], | |
"src": "6235:809:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7179:556:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7225:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7234:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7237:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "7227:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7227:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7227:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7200:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7209:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "7196:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7196:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7221:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "7192:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7192:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "7189:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "7251:233:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "7266:45:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7297:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7308:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7293:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7293:17:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "7280:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7280:31:20" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "7270:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7358:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7367:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7370:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "7360:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7360:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7360:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7330:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7338:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "7327:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7327:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "7324:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7388:86:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7446:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7457:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7442:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7442:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7466:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_struct$_Auction_$41_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7398:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7398:76:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "7388:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "7494:234:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "7509:46:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7540:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7551:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7536:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7536:18:20" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "7523:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7523:32:20" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "7513:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7602:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7611:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7614:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "7604:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7604:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7604:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7574:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7582:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "7571:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7571:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "7568:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7632:86:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7690:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7701:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7686:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7686:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7710:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_struct$_Auction_$41_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7642:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7642:76:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "7632:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_struct$_Auction_$41_memory_ptrt_struct$_Auction_$41_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "7141:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "7152:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "7164:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "7172:6:20", | |
"type": "" | |
} | |
], | |
"src": "7050:685:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7807:196:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7853:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7862:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7865:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "7855:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7855:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7855:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7828:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7837:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "7824:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7824:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7849:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "7820:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7820:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "7817:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "7879:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "7894:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7908:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "7898:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7923:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7958:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "7969:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7954:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7954:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "7978:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "7933:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7933:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "7923:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "7777:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "7788:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "7800:6:20", | |
"type": "" | |
} | |
], | |
"src": "7741:262:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8092:324:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8138:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8147:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8150:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "8140:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8140:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8140:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8113:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8122:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8109:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8109:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8134:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "8105:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8105:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "8102:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8164:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8179:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8193:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "8183:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8208:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8243:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "8254:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8239:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8239:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8263:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "8218:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8218:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "8208:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8291:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8306:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8320:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "8310:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8336:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8371:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "8382:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8367:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8367:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8391:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "8346:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8346:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "8336:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8054:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "8065:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "8077:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "8085:6:20", | |
"type": "" | |
} | |
], | |
"src": "8009:407:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8513:332:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8559:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8568:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8571:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "8561:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8561:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8561:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8534:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8543:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8530:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8530:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8555:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "8526:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8526:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "8523:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8585:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8600:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8614:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "8604:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8629:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8664:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "8675:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8660:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8660:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8684:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "8639:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8639:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "8629:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8712:126:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8727:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8741:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "8731:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8757:71:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8800:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "8811:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8796:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8796:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8820:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "8767:28:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8767:61:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "8757:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8475:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "8486:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "8498:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "8506:6:20", | |
"type": "" | |
} | |
], | |
"src": "8422:423:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8931:321:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8977:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8986:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8989:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "8979:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8979:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8979:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "8952:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8961:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8948:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8948:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8973:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "8944:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8944:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "8941:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9003:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9018:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9032:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "9022:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9047:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9082:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "9093:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9078:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9078:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9102:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "9057:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9057:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "9047:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9130:115:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9145:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9159:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "9149:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9175:60:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9207:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "9218:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9203:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9203:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9227:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "9185:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9185:50:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "9175:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8893:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "8904:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "8916:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "8924:6:20", | |
"type": "" | |
} | |
], | |
"src": "8851:401:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9341:324:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9387:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9396:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9399:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "9389:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9389:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9389:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9362:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9371:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "9358:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9358:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9383:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "9354:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9354:32:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "9351:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9413:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9428:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9442:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "9432:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9457:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9492:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "9503:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9488:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9488:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9512:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "9467:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9467:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "9457:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9540:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9555:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9569:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "9559:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9585:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9620:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "9631:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9616:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9616:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9640:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "9595:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9595:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "9585:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "9303:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "9314:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "9326:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "9334:6:20", | |
"type": "" | |
} | |
], | |
"src": "9258:407:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9788:581:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9835:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9844:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9847:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "9837:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9837:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9837:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9809:7:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9818:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "9805:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9805:23:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9830:3:20", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "9801:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9801:33:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "9798:2:20" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9861:117:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9876:15:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9890:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "9880:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9905:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9940:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "9951:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9936:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9936:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "9960:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "9915:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9915:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "9905:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9988:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10003:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10017:2:20", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "10007:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10033:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10068:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "10079:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10064:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10064:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "10088:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "10043:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10043:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "10033:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "10116:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10131:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10145:2:20", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "10135:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10161:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10196:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "10207:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10192:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10192:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "10216:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "10171:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10171:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "10161:6:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "10244:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10259:16:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10273:2:20", | |
"type": "", | |
"value": "96" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "10263:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10289:63:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10324:9:20" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "10335:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10320:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10320:22:20" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "10344:7:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "10299:20:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10299:53:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "10289:6:20" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_uint256t_uint256t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "9734:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "9745:7:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "9757:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "9765:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "9773:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "9781:6:20", | |
"type": "" | |
} | |
], | |
"src": "9671:698:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10493:137:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "10575:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10583:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10503:71:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10503:84:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10503:84:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10596:28:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10614:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10619:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10610:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10610:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulIdentifier", | |
"src": "10596:10:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "10466:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "10474:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulTypedName", | |
"src": "10482:10:20", | |
"type": "" | |
} | |
], | |
"src": "10375:255:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10709:74:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10726:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "10770:5:20" | |
} | |
], | |
"functionName": { | |
"name": "convert_t_address_payable_to_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "10731:38:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10731:45:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10719:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10719:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10719:58:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_payable_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "10697:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "10704:3:20", | |
"type": "" | |
} | |
], | |
"src": "10636:147:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10860:61:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10877:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "10908:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "10882:25:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10882:32:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10870:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10870:45:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10870:45:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_payable_to_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "10848:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "10855:3:20", | |
"type": "" | |
} | |
], | |
"src": "10789:132:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11026:90:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11043:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "11102:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "11076:25:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11076:32:20" | |
} | |
], | |
"functionName": { | |
"name": "leftAlign_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "11048:27:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11048:61:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11036:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11036:74:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11036:74:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "11014:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11021:3:20", | |
"type": "" | |
} | |
], | |
"src": "10927:189:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11177:53:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11194:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "11217:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "11199:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11199:24:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11187:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11187:37:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11187:37:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "11165:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11172:3:20", | |
"type": "" | |
} | |
], | |
"src": "11122:108:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11301:53:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11318:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "11341:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "11323:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11323:24:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11311:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11311:37:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11311:37:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "11289:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11296:3:20", | |
"type": "" | |
} | |
], | |
"src": "11236:118:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11564:712:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "11574:87:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "11655:5:20" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "11588:66:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11588:73:20" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "11578:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11670:102:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11760:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "11765:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "11677:82:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11677:95:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11670:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "11781:90:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "11865:5:20" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "11796:68:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11796:75:20" | |
}, | |
"variables": [ | |
{ | |
"name": "baseRef", | |
"nodeType": "YulTypedName", | |
"src": "11785:7:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "11880:21:20", | |
"value": { | |
"name": "baseRef", | |
"nodeType": "YulIdentifier", | |
"src": "11894:7:20" | |
}, | |
"variables": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulTypedName", | |
"src": "11884:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11970:281:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "11984:34:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "12011:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "12005:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12005:13:20" | |
}, | |
"variables": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulTypedName", | |
"src": "11988:13:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12031:108:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulIdentifier", | |
"src": "12120:13:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12135:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12038:81:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12038:101:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12031:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12152:89:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "12234:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12162:71:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12162:79:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "12152:6:20" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "11932:1:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "11935:6:20" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "11929:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11929:13:20" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "11943:18:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11945:14:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "11954:1:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11957:1:20", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11950:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11950:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "11945:1:20" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "11914:14:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "11916:10:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11925:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "11920:1:20", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "11910:341:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12260:10:20", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12267:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12260:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "11543:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11550:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "11559:3:20", | |
"type": "" | |
} | |
], | |
"src": "11412:864:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12496:722:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12506:87:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12587:5:20" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12520:66:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12520:73:20" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12510:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12602:112:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12702:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12707:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12609:92:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12609:105:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12602:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12723:90:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12807:5:20" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12738:68:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12738:75:20" | |
}, | |
"variables": [ | |
{ | |
"name": "baseRef", | |
"nodeType": "YulTypedName", | |
"src": "12727:7:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12822:21:20", | |
"value": { | |
"name": "baseRef", | |
"nodeType": "YulIdentifier", | |
"src": "12836:7:20" | |
}, | |
"variables": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulTypedName", | |
"src": "12826:6:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12912:281:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12926:34:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "12953:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "12947:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12947:13:20" | |
}, | |
"variables": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulTypedName", | |
"src": "12930:13:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12973:108:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulIdentifier", | |
"src": "13062:13:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13077:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12980:81:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12980:101:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12973:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13094:89:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "13176:6:20" | |
} | |
], | |
"functionName": { | |
"name": "array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "13104:71:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13104:79:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "13094:6:20" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "12874:1:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12877:6:20" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "12871:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12871:13:20" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "12885:18:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12887:14:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "12896:1:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12899:1:20", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12892:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12892:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "12887:1:20" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "12856:14:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12858:10:20", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12867:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "12862:1:20", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "12852:341:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13202:10:20", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13209:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "13202:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "12475:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12482:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12491:3:20", | |
"type": "" | |
} | |
], | |
"src": "12334:884:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13273:50:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13290:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13310:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "13295:14:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13295:21:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13283:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13283:34:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13283:34:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13261:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "13268:3:20", | |
"type": "" | |
} | |
], | |
"src": "13224:99:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13388:50:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13405:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13425:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "13410:14:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13410:21:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13398:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13398:34:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13398:34:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13376:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "13383:3:20", | |
"type": "" | |
} | |
], | |
"src": "13329:109:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13521:68:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13538:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13575:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "13560:14:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13560:21:20" | |
} | |
], | |
"functionName": { | |
"name": "leftAlign_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "13543:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13543:39:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13531:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13531:52:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13531:52:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13509:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "13516:3:20", | |
"type": "" | |
} | |
], | |
"src": "13444:145:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13658:52:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13675:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13697:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bytes4", | |
"nodeType": "YulIdentifier", | |
"src": "13680:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13680:23:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13668:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13668:36:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13668:36:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13646:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "13653:3:20", | |
"type": "" | |
} | |
], | |
"src": "13595:115:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13862:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13872:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13938:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13943:2:20", | |
"type": "", | |
"value": "37" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13879:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13879:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "13872:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14044:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face", | |
"nodeType": "YulIdentifier", | |
"src": "13955:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13955:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13955:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14057:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14068:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14073:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14064:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14064:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "14057:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "13850:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "13858:3:20", | |
"type": "" | |
} | |
], | |
"src": "13716:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14234:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14244:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14310:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14315:2:20", | |
"type": "", | |
"value": "47" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "14251:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14251:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14244:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14416:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff", | |
"nodeType": "YulIdentifier", | |
"src": "14327:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14327:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14327:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14429:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14440:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14445:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14436:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14436:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "14429:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "14222:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "14230:3:20", | |
"type": "" | |
} | |
], | |
"src": "14088:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14606:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14616:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14682:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14687:2:20", | |
"type": "", | |
"value": "41" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "14623:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14623:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14616:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14788:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d", | |
"nodeType": "YulIdentifier", | |
"src": "14699:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14699:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14699:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14801:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14812:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14817:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14808:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14808:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "14801:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "14594:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "14602:3:20", | |
"type": "" | |
} | |
], | |
"src": "14460:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14978:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14988:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15054:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15059:2:20", | |
"type": "", | |
"value": "15" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "14995:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14995:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "14988:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15160:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51", | |
"nodeType": "YulIdentifier", | |
"src": "15071:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15071:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15071:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15173:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15184:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15189:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15180:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15180:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "15173:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "14966:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "14974:3:20", | |
"type": "" | |
} | |
], | |
"src": "14832:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15350:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15360:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15426:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15431:2:20", | |
"type": "", | |
"value": "36" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "15367:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15367:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15360:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15532:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444", | |
"nodeType": "YulIdentifier", | |
"src": "15443:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15443:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15443:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15545:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15556:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15561:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15552:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15552:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "15545:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "15338:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "15346:3:20", | |
"type": "" | |
} | |
], | |
"src": "15204:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15722:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15732:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15798:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15803:2:20", | |
"type": "", | |
"value": "23" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "15739:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15739:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15732:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15904:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8", | |
"nodeType": "YulIdentifier", | |
"src": "15815:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15815:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15815:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15917:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "15928:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15933:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15924:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15924:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "15917:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "15710:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "15718:3:20", | |
"type": "" | |
} | |
], | |
"src": "15576:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "16094:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16104:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16170:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16175:2:20", | |
"type": "", | |
"value": "25" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16111:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16111:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16104:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16276:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90", | |
"nodeType": "YulIdentifier", | |
"src": "16187:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16187:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "16187:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16289:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16300:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16305:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16296:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16296:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "16289:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "16082:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "16090:3:20", | |
"type": "" | |
} | |
], | |
"src": "15948:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "16466:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16476:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16542:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16547:2:20", | |
"type": "", | |
"value": "36" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16483:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16483:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16476:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16648:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff", | |
"nodeType": "YulIdentifier", | |
"src": "16559:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16559:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "16559:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16661:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16672:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16677:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16668:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16668:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "16661:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "16454:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "16462:3:20", | |
"type": "" | |
} | |
], | |
"src": "16320:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "16838:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16848:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16914:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16919:2:20", | |
"type": "", | |
"value": "25" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16855:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16855:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "16848:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17020:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df", | |
"nodeType": "YulIdentifier", | |
"src": "16931:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16931:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "16931:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17033:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17044:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17049:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17040:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17040:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "17033:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "16826:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "16834:3:20", | |
"type": "" | |
} | |
], | |
"src": "16692:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "17210:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17220:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17286:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17291:2:20", | |
"type": "", | |
"value": "24" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "17227:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17227:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17220:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17392:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a", | |
"nodeType": "YulIdentifier", | |
"src": "17303:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17303:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "17303:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17405:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17416:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17421:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17412:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17412:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "17405:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "17198:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "17206:3:20", | |
"type": "" | |
} | |
], | |
"src": "17064:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "17582:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17592:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17658:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17663:2:20", | |
"type": "", | |
"value": "45" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "17599:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17599:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17592:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17764:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2", | |
"nodeType": "YulIdentifier", | |
"src": "17675:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17675:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "17675:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17777:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17788:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17793:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17784:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17784:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "17777:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "17570:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "17578:3:20", | |
"type": "" | |
} | |
], | |
"src": "17436:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "17954:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17964:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18030:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18035:2:20", | |
"type": "", | |
"value": "40" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "17971:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17971:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "17964:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18136:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f", | |
"nodeType": "YulIdentifier", | |
"src": "18047:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18047:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18047:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18149:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18160:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18165:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18156:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18156:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "18149:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "17942:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "17950:3:20", | |
"type": "" | |
} | |
], | |
"src": "17808:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "18326:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18336:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18402:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18407:2:20", | |
"type": "", | |
"value": "37" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "18343:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18343:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18336:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18508:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6", | |
"nodeType": "YulIdentifier", | |
"src": "18419:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18419:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18419:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18521:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18532:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18537:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18528:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18528:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "18521:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "18314:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "18322:3:20", | |
"type": "" | |
} | |
], | |
"src": "18180:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "18715:235:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18725:90:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18808:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18813:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "18732:75:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18732:83:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18725:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18913:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
"nodeType": "YulIdentifier", | |
"src": "18824:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18824:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18824:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18926:18:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "18937:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18942:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18933:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18933:11:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "18926:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "18703:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "18711:3:20", | |
"type": "" | |
} | |
], | |
"src": "18552:398:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19102:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19112:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19178:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19183:2:20", | |
"type": "", | |
"value": "60" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "19119:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19119:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19112:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19284:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d", | |
"nodeType": "YulIdentifier", | |
"src": "19195:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19195:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "19195:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19297:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19308:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19313:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19304:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19304:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "19297:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "19090:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "19098:3:20", | |
"type": "" | |
} | |
], | |
"src": "18956:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19474:220:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19484:74:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19550:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19555:2:20", | |
"type": "", | |
"value": "38" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "19491:58:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19491:67:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19484:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19656:3:20" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738", | |
"nodeType": "YulIdentifier", | |
"src": "19567:88:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19567:93:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "19567:93:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19669:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19680:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19685:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19676:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19676:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "19669:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "19462:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "19470:3:20", | |
"type": "" | |
} | |
], | |
"src": "19328:366:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19876:2360:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "19886:28:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "19902:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19907:6:20", | |
"type": "", | |
"value": "0x0180" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19898:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19898:16:20" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "19890:4:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "19924:158:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "19959:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "19989:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19996:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19985:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19985:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "19979:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19979:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "19963:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20043:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20061:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20066:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20057:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20057:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "20015:27:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20015:57:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20015:57:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20092:158:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "20127:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20157:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20164:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20153:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20153:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20147:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20147:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "20131:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20211:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20229:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20234:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20225:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20225:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "20183:27:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20183:57:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20183:57:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20260:162:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "20299:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20329:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20336:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20325:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20325:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20319:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20319:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "20303:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20383:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20401:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20406:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20397:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20397:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "20355:27:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20355:57:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20355:57:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20432:182:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "20469:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20499:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20506:4:20", | |
"type": "", | |
"value": "0x60" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20495:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20495:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20489:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20489:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "20473:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20575:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20593:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20598:4:20", | |
"type": "", | |
"value": "0x60" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20589:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20589:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "20525:49:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20525:79:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20525:79:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20624:171:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "20666:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20696:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20703:4:20", | |
"type": "", | |
"value": "0x80" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20692:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20692:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20686:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20686:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "20670:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20756:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20774:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20779:4:20", | |
"type": "", | |
"value": "0x80" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20770:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20770:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "20722:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20722:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20722:63:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20805:172:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "20848:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20878:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20885:4:20", | |
"type": "", | |
"value": "0xa0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20874:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20874:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20868:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20868:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "20852:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "20938:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20956:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20961:4:20", | |
"type": "", | |
"value": "0xa0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20952:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20952:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "20904:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20904:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20904:63:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "20987:168:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21026:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21056:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21063:4:20", | |
"type": "", | |
"value": "0xc0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21052:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21052:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21046:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21046:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21030:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "21116:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21134:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21139:4:20", | |
"type": "", | |
"value": "0xc0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21130:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21130:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21082:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21082:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21082:63:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "21165:167:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21203:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21233:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21240:4:20", | |
"type": "", | |
"value": "0xe0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21229:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21229:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21223:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21223:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21207:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "21293:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21311:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21316:4:20", | |
"type": "", | |
"value": "0xe0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21307:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21307:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21259:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21259:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21259:63:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "21342:170:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21379:45:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21409:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21416:6:20", | |
"type": "", | |
"value": "0x0100" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21405:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21405:18:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21399:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21399:25:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21383:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "21471:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21489:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21494:6:20", | |
"type": "", | |
"value": "0x0100" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21485:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21485:16:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21437:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21437:65:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21437:65:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "21522:189:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21562:45:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21592:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21599:6:20", | |
"type": "", | |
"value": "0x0120" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21588:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21588:18:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21582:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21582:25:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21566:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "21670:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21688:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21693:6:20", | |
"type": "", | |
"value": "0x0120" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21684:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21684:16:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "21620:49:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21620:81:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21620:81:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "21721:171:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21759:45:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21789:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21796:6:20", | |
"type": "", | |
"value": "0x0140" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21785:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21785:18:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21779:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21779:25:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21763:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "21851:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21869:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21874:6:20", | |
"type": "", | |
"value": "0x0140" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21865:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21865:16:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21817:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21817:65:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21817:65:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "21902:307:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "21937:45:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "21967:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21974:6:20", | |
"type": "", | |
"value": "0x0160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21963:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21963:18:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "21957:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21957:25:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "21941:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22007:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22012:6:20", | |
"type": "", | |
"value": "0x0160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22003:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22003:16:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "22025:4:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22031:3:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "22021:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22021:14:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "21996:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21996:40:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21996:40:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22049:149:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "22179:12:20" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "22193:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "22057:121:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22057:141:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "22049:4:20" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22219:11:20", | |
"value": { | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "22226:4:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "22219:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_struct$_Auction_$41_memory_ptr_to_t_struct$_Auction_$41_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "19855:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "19862:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "19871:3:20", | |
"type": "" | |
} | |
], | |
"src": "19756:2480:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22384:392:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "22394:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22410:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22415:4:20", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22406:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22406:14:20" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "22398:4:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "22430:166:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "22467:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22497:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22504:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22493:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22493:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "22487:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22487:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "22471:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "22557:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22575:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22580:4:20", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22571:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22571:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "22523:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22523:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22523:63:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "22606:163:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "22640:43:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22670:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22677:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22666:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22666:16:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "22660:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22660:23:20" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "22644:12:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "22730:12:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22748:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22753:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22744:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22744:14:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "22696:33:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22696:63:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22696:63:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22371:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "22378:3:20", | |
"type": "" | |
} | |
], | |
"src": "22290:486:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22837:53:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22854:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22877:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "22859:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22859:24:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "22847:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22847:37:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22847:37:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22825:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "22832:3:20", | |
"type": "" | |
} | |
], | |
"src": "22782:108:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22961:53:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "22978:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23001:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "22983:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22983:24:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "22971:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22971:37:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22971:37:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22949:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "22956:3:20", | |
"type": "" | |
} | |
], | |
"src": "22896:118:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23103:74:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23120:3:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23163:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "23145:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23145:24:20" | |
} | |
], | |
"functionName": { | |
"name": "leftAlign_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "23125:19:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23125:45:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "23113:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23113:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23113:58:20" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "23091:5:20", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "23098:3:20", | |
"type": "" | |
} | |
], | |
"src": "23020:157:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23521:956:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "23588:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23597:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "23532:55:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23532:69:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23532:69:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23610:18:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23621:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23626:1:20", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23617:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23617:11:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23610:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "23716:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23725:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "23638:77:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23638:91:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23638:91:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23738:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23749:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23754:2:20", | |
"type": "", | |
"value": "20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23745:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23745:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23738:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "23829:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23838:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "23767:61:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23767:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23767:75:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23851:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23862:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23867:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23858:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23858:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23851:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "23942:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23951:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "23880:61:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23880:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23880:75:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23964:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23975:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23980:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23971:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23971:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "23964:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value4", | |
"nodeType": "YulIdentifier", | |
"src": "24055:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24064:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "23993:61:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23993:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23993:75:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24077:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24088:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24093:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "24084:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24084:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24077:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value5", | |
"nodeType": "YulIdentifier", | |
"src": "24168:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24177:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "24106:61:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24106:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24106:75:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24190:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24201:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24206:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "24197:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24197:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24190:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value6", | |
"nodeType": "YulIdentifier", | |
"src": "24281:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24290:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "24219:61:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24219:75:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24219:75:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24303:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24314:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24319:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "24310:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24310:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24303:3:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value7", | |
"nodeType": "YulIdentifier", | |
"src": "24410:6:20" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24419:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "24332:77:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24332:91:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24332:91:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24432:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24443:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24448:2:20", | |
"type": "", | |
"value": "20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "24439:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24439:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24432:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24461:10:20", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24468:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "24461:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_bool_t_address_payable_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_payable__to_t_bool_t_address_payable_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_payable__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "23444:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "value7", | |
"nodeType": "YulTypedName", | |
"src": "23450:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value6", | |
"nodeType": "YulTypedName", | |
"src": "23458:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value5", | |
"nodeType": "YulTypedName", | |
"src": "23466:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value4", | |
"nodeType": "YulTypedName", | |
"src": "23474:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "23482:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "23490:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "23498:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "23506:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "23517:3:20", | |
"type": "" | |
} | |
], | |
"src": "23183:1294:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24671:191:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24682:154:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24832:3:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "24689:141:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24689:147:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24682:3:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24846:10:20", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "24853:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "24846:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "24658:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "24667:3:20", | |
"type": "" | |
} | |
], | |
"src": "24483:379:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24966:124:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24976:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "24988:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24999:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "24984:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24984:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "24976:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "25056:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25069:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25080:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25065:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25065:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25012:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25012:71:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25012:71:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "24938:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "24950:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "24961:4:20", | |
"type": "" | |
} | |
], | |
"src": "24868:222:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25258:296:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "25268:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25280:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25291:2:20", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25276:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25276:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "25268:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "25348:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25361:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25372:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25357:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25357:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25304:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25304:71:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25304:71:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "25437:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25450:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25461:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25446:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25446:18:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25385:51:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25385:80:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25385:80:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "25519:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25532:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25543:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25528:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25528:18:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25475:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25475:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25475:72:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address_t_address_payable_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "25214:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "25226:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "25234:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "25242:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "25253:4:20", | |
"type": "" | |
} | |
], | |
"src": "25096:458:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25714:288:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "25724:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25736:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25747:2:20", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25732:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25732:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "25724:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "25804:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25817:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25828:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25813:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25813:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25760:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25760:71:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25760:71:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "25885:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25898:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25909:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25894:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25894:18:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25841:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25841:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25841:72:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "25967:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "25980:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25991:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25976:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25976:18:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "25923:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25923:72:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25923:72:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "25670:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "25682:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "25690:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "25698:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "25709:4:20", | |
"type": "" | |
} | |
], | |
"src": "25560:442:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26194:263:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "26204:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26216:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26227:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26212:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26212:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26204:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26251:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26262:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26247:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26247:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26270:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26276:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "26266:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26266:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26240:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26240:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26240:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "26296:154:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "26436:6:20" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26445:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "26304:131:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26304:146:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26296:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "26166:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "26178:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "26189:4:20", | |
"type": "" | |
} | |
], | |
"src": "26008:449:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26555:118:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "26565:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26577:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26588:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26573:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26573:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26565:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "26639:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26652:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26663:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26648:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26648:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "26601:37:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26601:65:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26601:65:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "26527:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "26539:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "26550:4:20", | |
"type": "" | |
} | |
], | |
"src": "26463:210:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26775:122:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "26785:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26797:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26808:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26793:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26793:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "26785:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "26863:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "26876:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26887:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26872:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26872:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "26821:41:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26821:69:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26821:69:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "26747:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "26759:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "26770:4:20", | |
"type": "" | |
} | |
], | |
"src": "26679:218:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27074:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "27084:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27096:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27107:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27092:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27092:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27084:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27131:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27142:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27127:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27127:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27150:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27156:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "27146:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27146:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27120:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27120:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27120:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "27176:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27310:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "27184:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27184:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27176:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "27054:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "27069:4:20", | |
"type": "" | |
} | |
], | |
"src": "26903:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27499:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "27509:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27521:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27532:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27517:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27517:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27509:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27556:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27567:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27552:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27552:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27575:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27581:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "27571:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27571:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27545:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27545:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27545:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "27601:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27735:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "27609:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27609:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27601:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "27479:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "27494:4:20", | |
"type": "" | |
} | |
], | |
"src": "27328:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27924:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "27934:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27946:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27957:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27942:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27942:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "27934:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "27981:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27992:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27977:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27977:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28000:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28006:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "27996:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27996:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27970:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27970:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27970:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "28026:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28160:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "28034:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28034:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28026:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "27904:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "27919:4:20", | |
"type": "" | |
} | |
], | |
"src": "27753:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28349:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "28359:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28371:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28382:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28367:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28367:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28359:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28406:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28417:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28402:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28402:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28425:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28431:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "28421:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28421:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28395:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28395:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28395:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "28451:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28585:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "28459:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28459:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28451:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "28329:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "28344:4:20", | |
"type": "" | |
} | |
], | |
"src": "28178:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28774:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "28784:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28796:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28807:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28792:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28792:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28784:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28831:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28842:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28827:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28827:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28850:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "28856:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "28846:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28846:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28820:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28820:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28820:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "28876:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29010:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "28884:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28884:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "28876:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "28754:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "28769:4:20", | |
"type": "" | |
} | |
], | |
"src": "28603:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "29199:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "29209:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29221:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "29232:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "29217:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29217:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29209:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29256:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "29267:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "29252:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29252:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29275:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29281:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "29271:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29271:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "29245:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29245:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "29245:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "29301:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29435:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "29309:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29309:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29301:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "29179:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "29194:4:20", | |
"type": "" | |
} | |
], | |
"src": "29028:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "29624:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "29634:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29646:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "29657:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "29642:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29642:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29634:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29681:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "29692:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "29677:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29677:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29700:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "29706:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "29696:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29696:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "29670:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29670:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "29670:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "29726:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29860:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "29734:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "29734:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "29726:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "29604:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "29619:4:20", | |
"type": "" | |
} | |
], | |
"src": "29453:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "30049:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "30059:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30071:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30082:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30067:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30067:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30059:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30106:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30117:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30102:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30102:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30125:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30131:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "30121:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30121:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "30095:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30095:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "30095:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "30151:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30285:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "30159:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30159:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30151:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "30029:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "30044:4:20", | |
"type": "" | |
} | |
], | |
"src": "29878:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "30474:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "30484:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30496:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30507:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30492:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30492:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30484:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30531:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30542:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30527:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30527:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30550:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30556:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "30546:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30546:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "30520:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30520:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "30520:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "30576:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30710:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "30584:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30584:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30576:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "30454:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "30469:4:20", | |
"type": "" | |
} | |
], | |
"src": "30303:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "30899:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "30909:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30921:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30932:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30917:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30917:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30909:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30956:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "30967:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "30952:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30952:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "30975:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "30981:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "30971:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30971:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "30945:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "30945:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "30945:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "31001:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31135:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "31009:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31009:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31001:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "30879:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "30894:4:20", | |
"type": "" | |
} | |
], | |
"src": "30728:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "31324:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "31334:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31346:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "31357:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "31342:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31342:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31334:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31381:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "31392:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "31377:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31377:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31400:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31406:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "31396:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31396:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "31370:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31370:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "31370:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "31426:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31560:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "31434:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31434:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31426:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "31304:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "31319:4:20", | |
"type": "" | |
} | |
], | |
"src": "31153:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "31749:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "31759:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31771:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "31782:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "31767:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31767:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31759:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31806:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "31817:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "31802:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31802:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31825:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "31831:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "31821:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31821:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "31795:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31795:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "31795:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "31851:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31985:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "31859:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "31859:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "31851:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "31729:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "31744:4:20", | |
"type": "" | |
} | |
], | |
"src": "31578:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "32174:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "32184:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32196:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "32207:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "32192:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32192:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32184:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32231:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "32242:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "32227:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32227:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32250:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32256:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "32246:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32246:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "32220:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32220:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "32220:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "32276:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32410:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "32284:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32284:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32276:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "32154:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "32169:4:20", | |
"type": "" | |
} | |
], | |
"src": "32003:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "32599:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "32609:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32621:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "32632:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "32617:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32617:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32609:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32656:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "32667:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "32652:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32652:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32675:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "32681:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "32671:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32671:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "32645:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32645:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "32645:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "32701:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32835:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "32709:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "32709:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "32701:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "32579:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "32594:4:20", | |
"type": "" | |
} | |
], | |
"src": "32428:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "33024:248:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33034:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33046:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33057:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33042:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33042:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33034:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33081:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33092:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33077:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33077:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33100:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33106:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "33096:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33096:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "33070:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33070:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "33070:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33126:139:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33260:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "33134:124:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33134:131:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33126:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "33004:9:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "33019:4:20", | |
"type": "" | |
} | |
], | |
"src": "32853:419:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "33422:221:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33432:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33444:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33455:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33440:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33440:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33432:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33479:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33490:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33475:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33475:17:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33498:4:20" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33504:9:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "33494:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33494:20:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "33468:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33468:47:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "33468:47:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33524:112:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "33622:6:20" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33631:4:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_struct$_Auction_$41_memory_ptr_to_t_struct$_Auction_$41_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "33532:89:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33532:104:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33524:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_struct$_Auction_$41_memory_ptr__to_t_struct$_Auction_$41_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "33394:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "33406:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "33417:4:20", | |
"type": "" | |
} | |
], | |
"src": "33278:365:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "33747:124:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33757:26:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33769:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33780:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33765:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33765:18:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "33757:4:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "33837:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "33850:9:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "33861:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "33846:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33846:17:20" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "33793:43:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33793:71:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "33793:71:20" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "33719:9:20", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "33731:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "33742:4:20", | |
"type": "" | |
} | |
], | |
"src": "33649:222:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "33918:88:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "33928:30:20", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nodeType": "YulIdentifier", | |
"src": "33938:18:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33938:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "33928:6:20" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "33987:6:20" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "33995:4:20" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nodeType": "YulIdentifier", | |
"src": "33967:19:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "33967:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "33967:33:20" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "33902:4:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "33911:6:20", | |
"type": "" | |
} | |
], | |
"src": "33877:129:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34052:35:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34062:19:20", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34078:2:20", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "34072:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34072:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "34062:6:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "34045:6:20", | |
"type": "" | |
} | |
], | |
"src": "34012:75:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34194:229:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34299:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "34301:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34301:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "34301:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "34271:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34279:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "34268:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34268:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "34265:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34331:25:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "34343:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34351:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "34339:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34339:17:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34331:4:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34393:23:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34405:4:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34411:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "34401:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34401:15:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34393:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "34178:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "34189:4:20", | |
"type": "" | |
} | |
], | |
"src": "34093:330:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34495:241:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34600:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "34602:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34602:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "34602:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "34572:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34580:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "34569:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34569:30:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "34566:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34632:37:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "34662:6:20" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "34640:21:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34640:29:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34632:4:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34706:23:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34718:4:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34724:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "34714:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34714:15:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "34706:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "34479:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "34490:4:20", | |
"type": "" | |
} | |
], | |
"src": "34429:307:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34833:60:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34843:11:20", | |
"value": { | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "34851:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "34843:4:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "34864:22:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "34876:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "34881:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "34872:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "34872:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "34864:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "34820:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "34828:4:20", | |
"type": "" | |
} | |
], | |
"src": "34742:151:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "34992:40:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35003:22:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "35019:5:20" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "35013:5:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35013:12:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "35003:6:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "34975:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "34985:6:20", | |
"type": "" | |
} | |
], | |
"src": "34899:133:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35132:38:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35142:22:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "35154:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "35159:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "35150:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35150:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "next", | |
"nodeType": "YulIdentifier", | |
"src": "35142:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "35119:3:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "next", | |
"nodeType": "YulTypedName", | |
"src": "35127:4:20", | |
"type": "" | |
} | |
], | |
"src": "35038:132:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35296:73:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35313:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "35318:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "35306:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35306:19:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "35306:19:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35334:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35353:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "35358:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "35349:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35349:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "35334:11:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "35268:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "35273:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "35284:11:20", | |
"type": "" | |
} | |
], | |
"src": "35176:193:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35505:73:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35522:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "35527:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "35515:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35515:19:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "35515:19:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35543:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35562:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "35567:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "35558:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35558:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "35543:11:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "35477:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "35482:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "35493:11:20", | |
"type": "" | |
} | |
], | |
"src": "35375:203:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35697:34:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35707:18:20", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35722:3:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "35707:11:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "35669:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "35674:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "35685:11:20", | |
"type": "" | |
} | |
], | |
"src": "35584:147:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35833:73:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35850:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "35855:6:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "35843:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35843:19:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "35843:19:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35871:29:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "35890:3:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "35895:4:20", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "35886:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35886:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "35871:11:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "35805:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "35810:6:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "35821:11:20", | |
"type": "" | |
} | |
], | |
"src": "35737:169:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "35956:261:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "35966:25:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "35989:1:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "35971:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "35971:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "35966:1:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36000:25:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36023:1:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "36005:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36005:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36000:1:20" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36163:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "36165:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36165:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "36165:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36084:1:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "36091:66:20", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36159:1:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "36087:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36087:74:20" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "36081:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36081:81:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "36078:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36195:16:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36206:1:20" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36209:1:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "36202:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36202:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "36195:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "35943:1:20", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "35946:1:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "35952:3:20", | |
"type": "" | |
} | |
], | |
"src": "35912:305:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36268:146:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36278:25:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36301:1:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "36283:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36283:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36278:1:20" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36312:25:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36335:1:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "36317:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36317:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36312:1:20" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36359:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "36361:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36361:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "36361:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36353:1:20" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36356:1:20" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "36350:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36350:8:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "36347:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36391:17:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "36403:1:20" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "36406:1:20" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "36399:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36399:9:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulIdentifier", | |
"src": "36391:4:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_sub_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "36254:1:20", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "36257:1:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulTypedName", | |
"src": "36263:4:20", | |
"type": "" | |
} | |
], | |
"src": "36223:191:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36465:51:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36475:35:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "36504:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "36486:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36486:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "36475:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "36447:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "36457:7:20", | |
"type": "" | |
} | |
], | |
"src": "36420:96:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36575:51:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36585:35:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "36614:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "36596:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36596:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "36585:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "36557:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "36567:7:20", | |
"type": "" | |
} | |
], | |
"src": "36522:104:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36674:48:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36684:32:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "36709:5:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "36702:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36702:13:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "36695:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36695:21:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "36684:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "36656:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "36666:7:20", | |
"type": "" | |
} | |
], | |
"src": "36632:90:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36772:105:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36782:89:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "36797:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "36804:66:20", | |
"type": "", | |
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "36793:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36793:78:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "36782:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bytes4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "36754:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "36764:7:20", | |
"type": "" | |
} | |
], | |
"src": "36728:149:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "36928:81:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "36938:65:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "36953:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "36960:42:20", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "36949:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "36949:54:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "36938:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "36910:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "36920:7:20", | |
"type": "" | |
} | |
], | |
"src": "36883:126:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37060:32:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "37070:16:20", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "37081:5:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "37070:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "37042:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "37052:7:20", | |
"type": "" | |
} | |
], | |
"src": "37015:77:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37166:66:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "37176:50:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "37220:5:20" | |
} | |
], | |
"functionName": { | |
"name": "convert_t_uint160_to_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "37189:30:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37189:37:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulIdentifier", | |
"src": "37176:9:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "convert_t_address_payable_to_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "37146:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulTypedName", | |
"src": "37156:9:20", | |
"type": "" | |
} | |
], | |
"src": "37098:134:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37298:66:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "37308:50:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "37352:5:20" | |
} | |
], | |
"functionName": { | |
"name": "convert_t_uint160_to_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "37321:30:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37321:37:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulIdentifier", | |
"src": "37308:9:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "convert_t_uint160_to_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "37278:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulTypedName", | |
"src": "37288:9:20", | |
"type": "" | |
} | |
], | |
"src": "37238:126:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37430:53:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "37440:37:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "37471:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "37453:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37453:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulIdentifier", | |
"src": "37440:9:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "convert_t_uint160_to_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "37410:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "converted", | |
"nodeType": "YulTypedName", | |
"src": "37420:9:20", | |
"type": "" | |
} | |
], | |
"src": "37370:113:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37540:103:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "37563:3:20" | |
}, | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "37568:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "37573:6:20" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nodeType": "YulIdentifier", | |
"src": "37550:12:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37550:30:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "37550:30:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "37621:3:20" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "37626:6:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "37617:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37617:16:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "37635:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "37610:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37610:27:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "37610:27:20" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "37522:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "37527:3:20", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "37532:6:20", | |
"type": "" | |
} | |
], | |
"src": "37489:154:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37692:238:20", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "37702:58:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "37724:6:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "37754:4:20" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "37732:21:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37732:27:20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "37720:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37720:40:20" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulTypedName", | |
"src": "37706:10:20", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37871:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "37873:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37873:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "37873:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "37814:10:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "37826:18:20", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "37811:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37811:34:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "37850:10:20" | |
}, | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "37862:6:20" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "37847:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37847:22:20" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "37808:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37808:62:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "37805:2:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "37909:2:20", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "37913:10:20" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "37902:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37902:22:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "37902:22:20" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "37678:6:20", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "37686:4:20", | |
"type": "" | |
} | |
], | |
"src": "37649:281:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "37979:190:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "37989:33:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38016:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "37998:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "37998:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "37989:5:20" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38112:22:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "38114:16:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38114:18:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38114:18:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38037:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38044:66:20", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "38034:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38034:77:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "38031:2:20" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38143:20:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38154:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38161:1:20", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "38150:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38150:13:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "38143:3:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "increment_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "37965:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulTypedName", | |
"src": "37975:3:20", | |
"type": "" | |
} | |
], | |
"src": "37936:233:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38230:53:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38240:37:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38271:5:20" | |
} | |
], | |
"functionName": { | |
"name": "leftAlign_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "38251:19:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38251:26:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulIdentifier", | |
"src": "38240:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "leftAlign_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "38212:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulTypedName", | |
"src": "38222:7:20", | |
"type": "" | |
} | |
], | |
"src": "38175:108:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38333:51:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38343:35:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38372:5:20" | |
} | |
], | |
"functionName": { | |
"name": "leftAlign_t_uint8", | |
"nodeType": "YulIdentifier", | |
"src": "38354:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38354:24:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulIdentifier", | |
"src": "38343:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "leftAlign_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "38315:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulTypedName", | |
"src": "38325:7:20", | |
"type": "" | |
} | |
], | |
"src": "38289:95:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38437:47:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38447:31:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38472:5:20" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_96", | |
"nodeType": "YulIdentifier", | |
"src": "38458:13:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38458:20:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulIdentifier", | |
"src": "38447:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "leftAlign_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "38419:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulTypedName", | |
"src": "38429:7:20", | |
"type": "" | |
} | |
], | |
"src": "38390:94:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38537:32:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38547:16:20", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38558:5:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulIdentifier", | |
"src": "38547:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "leftAlign_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "38519:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulTypedName", | |
"src": "38529:7:20", | |
"type": "" | |
} | |
], | |
"src": "38490:79:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38620:48:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "38630:32:20", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "38656:5:20" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_248", | |
"nodeType": "YulIdentifier", | |
"src": "38641:14:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38641:21:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulIdentifier", | |
"src": "38630:7:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "leftAlign_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "38602:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "aligned", | |
"nodeType": "YulTypedName", | |
"src": "38612:7:20", | |
"type": "" | |
} | |
], | |
"src": "38575:93:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38702:152:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38719:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38722:77:20", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "38712:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38712:88:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38712:88:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38816:1:20", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38819:4:20", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "38809:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38809:15:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38809:15:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38840:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38843:4:20", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "38833:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38833:15:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38833:15:20" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "38674:180:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "38888:152:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38905:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "38908:77:20", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "38898:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38898:88:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38898:88:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39002:1:20", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39005:4:20", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "38995:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "38995:15:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "38995:15:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39026:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39029:4:20", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "39019:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39019:15:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39019:15:20" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nodeType": "YulFunctionDefinition", | |
"src": "38860:180:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39094:54:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "39104:38:20", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "39122:5:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39129:2:20", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39118:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39118:14:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39138:2:20", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "39134:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39134:7:20" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "39114:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39114:28:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nodeType": "YulIdentifier", | |
"src": "39104:6:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "39077:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nodeType": "YulTypedName", | |
"src": "39087:6:20", | |
"type": "" | |
} | |
], | |
"src": "39046:102:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39197:53:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "39207:36:20", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39232:3:20", | |
"type": "", | |
"value": "248" | |
}, | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "39237:5:20" | |
} | |
], | |
"functionName": { | |
"name": "shl", | |
"nodeType": "YulIdentifier", | |
"src": "39228:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39228:15:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulIdentifier", | |
"src": "39207:8:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_left_248", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "39178:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulTypedName", | |
"src": "39188:8:20", | |
"type": "" | |
} | |
], | |
"src": "39154:96:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39298:52:20", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "39308:35:20", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39333:2:20", | |
"type": "", | |
"value": "96" | |
}, | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "39337:5:20" | |
} | |
], | |
"functionName": { | |
"name": "shl", | |
"nodeType": "YulIdentifier", | |
"src": "39329:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39329:14:20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulIdentifier", | |
"src": "39308:8:20" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_left_96", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "39279:5:20", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulTypedName", | |
"src": "39289:8:20", | |
"type": "" | |
} | |
], | |
"src": "39256:94:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39462:118:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "39484:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39492:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39480:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39480:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "39496:34:20", | |
"type": "", | |
"value": "Only the owner can call this fun" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "39473:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39473:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39473:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "39552:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39560:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39548:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39548:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "39565:7:20", | |
"type": "", | |
"value": "ction" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "39541:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39541:32:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39541:32:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "39454:6:20", | |
"type": "" | |
} | |
], | |
"src": "39356:224:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39692:128:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "39714:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39722:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39710:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39710:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "39726:34:20", | |
"type": "", | |
"value": "Your bid should be greater than " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "39703:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39703:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39703:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "39782:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39790:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39778:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39778:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "39795:17:20", | |
"type": "", | |
"value": "the maximum bid" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "39771:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39771:42:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39771:42:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "39684:6:20", | |
"type": "" | |
} | |
], | |
"src": "39586:234:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "39932:122:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "39954:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "39962:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "39950:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39950:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "39966:34:20", | |
"type": "", | |
"value": "Please transfer the NFT to this " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "39943:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "39943:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "39943:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40022:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40030:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40018:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40018:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40035:11:20", | |
"type": "", | |
"value": "contract." | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40011:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40011:36:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40011:36:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "39924:6:20", | |
"type": "" | |
} | |
], | |
"src": "39826:228:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "40166:59:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40188:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40196:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40184:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40184:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40200:17:20", | |
"type": "", | |
"value": "Transfer failed" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40177:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40177:41:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40177:41:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40158:6:20", | |
"type": "" | |
} | |
], | |
"src": "40060:165:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "40337:117:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40359:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40367:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40355:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40355:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40371:34:20", | |
"type": "", | |
"value": "There is already an auction goin" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40348:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40348:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40348:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40427:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40435:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40423:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40423:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40440:6:20", | |
"type": "", | |
"value": "g on" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40416:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40416:31:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40416:31:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40329:6:20", | |
"type": "" | |
} | |
], | |
"src": "40231:223:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "40566:67:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40588:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40596:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40584:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40584:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40600:25:20", | |
"type": "", | |
"value": "The auction is not open" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40577:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40577:49:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40577:49:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40558:6:20", | |
"type": "" | |
} | |
], | |
"src": "40460:173:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "40745:69:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40767:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40775:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40763:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40763:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40779:27:20", | |
"type": "", | |
"value": "Auction will end too soon" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40756:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40756:51:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40756:51:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40737:6:20", | |
"type": "" | |
} | |
], | |
"src": "40639:175:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "40926:117:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "40948:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "40956:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "40944:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40944:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "40960:34:20", | |
"type": "", | |
"value": "Only the owner can create an auc" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "40937:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "40937:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "40937:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41016:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41024:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41012:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41012:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41029:6:20", | |
"type": "", | |
"value": "tion" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41005:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41005:31:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41005:31:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40918:6:20", | |
"type": "" | |
} | |
], | |
"src": "40820:223:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "41155:69:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41177:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41185:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41173:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41173:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41189:27:20", | |
"type": "", | |
"value": "Auction is already closed" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41166:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41166:51:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41166:51:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "41147:6:20", | |
"type": "" | |
} | |
], | |
"src": "41049:175:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "41336:68:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41358:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41366:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41354:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41354:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41370:26:20", | |
"type": "", | |
"value": "This auction has expired" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41347:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41347:50:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41347:50:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "41328:6:20", | |
"type": "" | |
} | |
], | |
"src": "41230:174:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "41516:126:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41538:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41546:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41534:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41534:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41550:34:20", | |
"type": "", | |
"value": "You must be the max bidder or se" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41527:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41527:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41527:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41606:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41614:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41602:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41602:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41619:15:20", | |
"type": "", | |
"value": "ller to claim" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41595:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41595:40:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41595:40:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "41508:6:20", | |
"type": "" | |
} | |
], | |
"src": "41410:232:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "41754:121:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41776:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41784:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41772:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41772:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41788:34:20", | |
"type": "", | |
"value": "Please transfer the NFT to this " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41765:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41765:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41765:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "41844:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "41852:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "41840:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41840:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "41857:10:20", | |
"type": "", | |
"value": "contract" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41833:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41833:35:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41833:35:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "41746:6:20", | |
"type": "" | |
} | |
], | |
"src": "41648:227:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "41987:118:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42009:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42017:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42005:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42005:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42021:34:20", | |
"type": "", | |
"value": "There are no auctions with this " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "41998:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "41998:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "41998:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42077:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42085:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42073:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42073:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42090:7:20", | |
"type": "", | |
"value": "token" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "42066:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42066:32:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42066:32:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "41979:6:20", | |
"type": "" | |
} | |
], | |
"src": "41881:224:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42217:8:20", | |
"statements": [] | |
}, | |
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "42209:6:20", | |
"type": "" | |
} | |
], | |
"src": "42111:114:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42337:141:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42359:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42367:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42355:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42355:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42371:34:20", | |
"type": "", | |
"value": "Your bid should be greater than " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "42348:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42348:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42348:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42427:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42435:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42423:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42423:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42440:30:20", | |
"type": "", | |
"value": "or equal to the starting bid" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "42416:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42416:55:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42416:55:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "42329:6:20", | |
"type": "" | |
} | |
], | |
"src": "42231:247:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42590:119:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42612:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42620:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42608:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42608:14:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42624:34:20", | |
"type": "", | |
"value": "Only the seller can close this a" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "42601:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42601:58:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42601:58:20" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "42680:6:20" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42688:2:20", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "42676:3:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42676:15:20" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "42693:8:20", | |
"type": "", | |
"value": "uction" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "42669:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42669:33:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42669:33:20" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "42582:6:20", | |
"type": "" | |
} | |
], | |
"src": "42484:225:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42758:79:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42815:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42824:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42827:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "42817:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42817:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42817:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "42781:5:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "42806:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "42788:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42788:24:20" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "42778:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42778:35:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "42771:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42771:43:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "42768:2:20" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "42751:5:20", | |
"type": "" | |
} | |
], | |
"src": "42715:122:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42894:87:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "42959:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42968:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "42971:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "42961:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42961:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "42961:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "42917:5:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "42950:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address_payable", | |
"nodeType": "YulIdentifier", | |
"src": "42924:25:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42924:32:20" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "42914:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42914:43:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "42907:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "42907:51:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "42904:2:20" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address_payable", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "42887:5:20", | |
"type": "" | |
} | |
], | |
"src": "42843:138:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "43027:76:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "43081:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "43090:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "43093:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "43083:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43083:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "43083:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "43050:5:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "43072:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "43057:14:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43057:21:20" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "43047:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43047:32:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "43040:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43040:40:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "43037:2:20" | |
} | |
] | |
}, | |
"name": "validator_revert_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "43020:5:20", | |
"type": "" | |
} | |
], | |
"src": "42987:116:20" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "43152:79:20", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "43209:16:20", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "43218:1:20", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "43221:1:20", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "43211:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43211:12:20" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "43211:12:20" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "43175:5:20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "43200:5:20" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "43182:17:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43182:24:20" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "43172:2:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43172:35:20" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "43165:6:20" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "43165:43:20" | |
}, | |
"nodeType": "YulIf", | |
"src": "43162:2:20" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "43145:5:20", | |
"type": "" | |
} | |
], | |
"src": "43109:122:20" | |
} | |
] | |
}, | |
"contents": "{\n\n // struct Auction.Bid[]\n function abi_decode_available_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let src := offset\n if gt(add(src, mul(length, 0x40)), end) {\n revert(0, 0)\n }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_struct$_Bid_$14_memory_ptr(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x40)\n }\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\n }\n\n // struct Auction.Bid[]\n function abi_decode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // struct Auction.Auction\n function abi_decode_t_struct$_Auction_$41_memory_ptr(headStart, end) -> value {\n if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n value := allocate_memory(0x0180)\n\n {\n // open\n\n let offset := 0\n\n mstore(add(value, 0x00), abi_decode_t_bool(add(headStart, offset), end))\n\n }\n\n {\n // sold\n\n let offset := 32\n\n mstore(add(value, 0x20), abi_decode_t_bool(add(headStart, offset), end))\n\n }\n\n {\n // canceled\n\n let offset := 64\n\n mstore(add(value, 0x40), abi_decode_t_bool(add(headStart, offset), end))\n\n }\n\n {\n // seller\n\n let offset := 96\n\n mstore(add(value, 0x60), abi_decode_t_address_payable(add(headStart, offset), end))\n\n }\n\n {\n // startingBid\n\n let offset := 128\n\n mstore(add(value, 0x80), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // reservePrice\n\n let offset := 160\n\n mstore(add(value, 0xa0), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // endBlock\n\n let offset := 192\n\n mstore(add(value, 0xc0), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // tokenId\n\n let offset := 224\n\n mstore(add(value, 0xe0), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // maxBid\n\n let offset := 256\n\n mstore(add(value, 0x0100), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // maxBidder\n\n let offset := 288\n\n mstore(add(value, 0x0120), abi_decode_t_address_payable(add(headStart, offset), end))\n\n }\n\n {\n // numBids\n\n let offset := 320\n\n mstore(add(value, 0x0140), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n {\n // bids\n\n let offset := calldataload(add(headStart, 352))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n mstore(add(value, 0x0160), abi_decode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(add(headStart, offset), end))\n\n }\n\n }\n\n // struct Auction.Bid\n function abi_decode_t_struct$_Bid_$14_memory_ptr(headStart, end) -> value {\n if slt(sub(end, headStart), 0x40) { revert(0, 0) }\n value := allocate_memory(0x40)\n\n {\n // bidder\n\n let offset := 0\n\n mstore(add(value, 0x00), abi_decode_t_address(add(headStart, offset), end))\n\n }\n\n {\n // bid\n\n let offset := 32\n\n mstore(add(value, 0x20), abi_decode_t_uint256(add(headStart, offset), end))\n\n }\n\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address_payable(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_struct$_Auction_$41_memory_ptrt_struct$_Auction_$41_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_struct$_Auction_$41_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_struct$_Auction_$41_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_address_payable(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr(value0, pos) -> updatedPos {\n abi_encode_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr(value0, pos)\n updatedPos := add(pos, 0x40)\n }\n\n function abi_encode_t_address_payable_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_address_payable_to_t_address(value))\n }\n\n function abi_encode_t_address_payable_to_t_address_payable(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_address_payable(cleanup_t_address_payable(value)))\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // struct Auction.Bid[] -> struct Auction.Bid[]\n function abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n // struct Auction.Bid[] -> struct Auction.Bid[]\n function abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_t_bool_to_t_bool(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bool_to_t_bool_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_bool(cleanup_t_bool(value)))\n }\n\n function abi_encode_t_bytes4_to_t_bytes4_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes4(value))\n }\n\n function abi_encode_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 23)\n store_literal_in_memory_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, 0)\n store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(pos)\n end := add(pos, 0)\n }\n\n function abi_encode_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 60)\n store_literal_in_memory_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738(pos)\n end := add(pos, 64)\n }\n\n // struct Auction.Auction -> struct Auction.Auction\n function abi_encode_t_struct$_Auction_$41_memory_ptr_to_t_struct$_Auction_$41_memory_ptr_fromStack(value, pos) -> end {\n let tail := add(pos, 0x0180)\n\n {\n // open\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0x00))\n }\n\n {\n // sold\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0x20))\n }\n\n {\n // canceled\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_bool_to_t_bool(memberValue0, add(pos, 0x40))\n }\n\n {\n // seller\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_address_payable_to_t_address_payable(memberValue0, add(pos, 0x60))\n }\n\n {\n // startingBid\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n {\n // reservePrice\n\n let memberValue0 := mload(add(value, 0xa0))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0xa0))\n }\n\n {\n // endBlock\n\n let memberValue0 := mload(add(value, 0xc0))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0xc0))\n }\n\n {\n // tokenId\n\n let memberValue0 := mload(add(value, 0xe0))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0xe0))\n }\n\n {\n // maxBid\n\n let memberValue0 := mload(add(value, 0x0100))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0100))\n }\n\n {\n // maxBidder\n\n let memberValue0 := mload(add(value, 0x0120))\n abi_encode_t_address_payable_to_t_address_payable(memberValue0, add(pos, 0x0120))\n }\n\n {\n // numBids\n\n let memberValue0 := mload(add(value, 0x0140))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x0140))\n }\n\n {\n // bids\n\n let memberValue0 := mload(add(value, 0x0160))\n\n mstore(add(pos, 0x0160), sub(tail, pos))\n tail := abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(memberValue0, tail)\n\n }\n\n end := tail\n }\n\n // struct Auction.Bid -> struct Auction.Bid\n function abi_encode_t_struct$_Bid_$14_memory_ptr_to_t_struct$_Bid_$14_memory_ptr(value, pos) {\n let tail := add(pos, 0x40)\n\n {\n // bidder\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x00))\n }\n\n {\n // bid\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_tuple_packed_t_bool_t_address_payable_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_payable__to_t_bool_t_address_payable_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_payable__nonPadded_inplace_fromStack_reversed(pos , value7, value6, value5, value4, value3, value2, value1, value0) -> end {\n\n abi_encode_t_bool_to_t_bool_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 1)\n\n abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 20)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value2, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value3, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value4, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value5, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value6, pos)\n pos := add(pos, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_nonPadded_inplace_fromStack(value7, pos)\n pos := add(pos, 20)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_payable_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_payable_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes4_to_t_bytes4_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_struct$_Auction_$41_memory_ptr__to_t_struct$_Auction_$41_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_struct$_Auction_$41_memory_ptr_to_t_struct$_Auction_$41_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_dataslot_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_length_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_Bid_$14_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_address_payable_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(value)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function leftAlign_t_address_payable(value) -> aligned {\n aligned := leftAlign_t_uint160(value)\n }\n\n function leftAlign_t_bool(value) -> aligned {\n aligned := leftAlign_t_uint8(value)\n }\n\n function leftAlign_t_uint160(value) -> aligned {\n aligned := shift_left_96(value)\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\n }\n\n function leftAlign_t_uint8(value) -> aligned {\n aligned := shift_left_248(value)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function shift_left_248(value) -> newValue {\n newValue :=\n\n shl(248, value)\n\n }\n\n function shift_left_96(value) -> newValue {\n newValue :=\n\n shl(96, value)\n\n }\n\n function store_literal_in_memory_02c4ea565ba5dd10ca7507fa4aece08fe60d2b6b945dff193cdbce1647b7face(memPtr) {\n\n mstore(add(memPtr, 0), \"Only the owner can call this fun\")\n\n mstore(add(memPtr, 32), \"ction\")\n\n }\n\n function store_literal_in_memory_07514d7b210bc6762a785e09ef6dc7e0b8fd7444ec11c4d151baaf14271851ff(memPtr) {\n\n mstore(add(memPtr, 0), \"Your bid should be greater than \")\n\n mstore(add(memPtr, 32), \"the maximum bid\")\n\n }\n\n function store_literal_in_memory_09dc093938c4cf062981aad8337a259c94e3415119c01795fe64ab347159cd3d(memPtr) {\n\n mstore(add(memPtr, 0), \"Please transfer the NFT to this \")\n\n mstore(add(memPtr, 32), \"contract.\")\n\n }\n\n function store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51(memPtr) {\n\n mstore(add(memPtr, 0), \"Transfer failed\")\n\n }\n\n function store_literal_in_memory_57b81b1ee47941d810e0541b7d185ab9cae3e7cfed2001839fb8af8b29aca444(memPtr) {\n\n mstore(add(memPtr, 0), \"There is already an auction goin\")\n\n mstore(add(memPtr, 32), \"g on\")\n\n }\n\n function store_literal_in_memory_58ba8a307933e51676b246ec844f4ddb96216d0a2332ac4f53bde916089157a8(memPtr) {\n\n mstore(add(memPtr, 0), \"The auction is not open\")\n\n }\n\n function store_literal_in_memory_73aefc1b595247503b6e6e146613be492b655d1c9d91d54bb88ebe8d3c2adb90(memPtr) {\n\n mstore(add(memPtr, 0), \"Auction will end too soon\")\n\n }\n\n function store_literal_in_memory_9870105f04cdb320599272ae75049ad3607a5bf650137408f12945434dd238ff(memPtr) {\n\n mstore(add(memPtr, 0), \"Only the owner can create an auc\")\n\n mstore(add(memPtr, 32), \"tion\")\n\n }\n\n function store_literal_in_memory_a04a24055b7f8170ecc20b309de2bd797191a5b033dc275c4d8ed7468b3f35df(memPtr) {\n\n mstore(add(memPtr, 0), \"Auction is already closed\")\n\n }\n\n function store_literal_in_memory_a04a494e335f537820954ae061adf240f2af264b3e8756abdb661be96545635a(memPtr) {\n\n mstore(add(memPtr, 0), \"This auction has expired\")\n\n }\n\n function store_literal_in_memory_b58a8273299e5f134c4595dbba799f04e804f3cae3e9a2cddd925cf2ce8705d2(memPtr) {\n\n mstore(add(memPtr, 0), \"You must be the max bidder or se\")\n\n mstore(add(memPtr, 32), \"ller to claim\")\n\n }\n\n function store_literal_in_memory_bd3deb99990851c974b4c59f6d7943c539a301802da928fb98b27fe4fd3dc48f(memPtr) {\n\n mstore(add(memPtr, 0), \"Please transfer the NFT to this \")\n\n mstore(add(memPtr, 32), \"contract\")\n\n }\n\n function store_literal_in_memory_c46736ecf0084f2a36183ee3363a689fb8c2997c9cffaac071be2dcd7a5f04d6(memPtr) {\n\n mstore(add(memPtr, 0), \"There are no auctions with this \")\n\n mstore(add(memPtr, 32), \"token\")\n\n }\n\n function store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(memPtr) {\n\n }\n\n function store_literal_in_memory_e0369a19cb99df880a8967a758c906ac74f49cb50a5d1d89592441df5822349d(memPtr) {\n\n mstore(add(memPtr, 0), \"Your bid should be greater than \")\n\n mstore(add(memPtr, 32), \"or equal to the starting bid\")\n\n }\n\n function store_literal_in_memory_fa606651539dcccb64e06f102fdb950712a8be0673c59607f14aabf1b1cbb738(memPtr) {\n\n mstore(add(memPtr, 0), \"Only the seller can close this a\")\n\n mstore(add(memPtr, 32), \"uction\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n", | |
"id": 20, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "6080604052600436106101b75760003560e01c8063893d20e8116100ec578063c0e0a3ab1161008a578063d082d7e011610064578063d082d7e014610672578063e39d701a146106af578063ee14cb68146106ec578063f08e362f14610729576101b7565b8063c0e0a3ab146105bb578063c68733cb146105f8578063cca8dadd14610635576101b7565b80638fcd706e116100c65780638fcd706e146104db578063959b19d014610518578063b18db8f214610555578063bbcd5bbe14610592576101b7565b8063893d20e8146104485780638bb9a6c5146104735780638f32d59b146104b0576101b7565b80633f5fddcc116101595780636bb02fcd116101335780636bb02fcd1461037a57806377413267146103a3578063823e88e6146103e0578063879a30f71461041d576101b7565b80633f5fddcc14610305578063454a2ab3146103425780634acc200f1461035e576101b7565b806318111ada1161019557806318111ada1461024b57806321c2f88314610288578063285a71d4146102b157806328b7bede146102da576101b7565b806313af4035146101bc578063150b7a02146101e5578063168a0b3214610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612b8d565b610752565b005b3480156101f157600080fd5b5061020c60048036038101906102079190612bb6565b6107f0565b6040516102199190613489565b60405180910390f35b34801561022e57600080fd5b5061024960048036038101906102449190612c9d565b61081d565b005b34801561025757600080fd5b50610272600480360381019061026d9190612c9d565b610dbf565b60405161027f9190613684565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190612d3e565b610fe5565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190612db6565b6110cb565b005b3480156102e657600080fd5b506102ef611686565b6040516102fc91906133c3565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612c31565b6116af565b604051610339919061346e565b60405180910390f35b61035c60048036038101906103579190612c9d565b611768565b005b61037860048036038101906103739190612c9d565b611b85565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612cc6565b612027565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612c9d565b612114565b6040516103d79190613684565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612c9d565b612141565b604051610414919061346e565b60405180910390f35b34801561042957600080fd5b50610432612157565b60405161043f91906136a6565b60405180910390f35b34801561045457600080fd5b5061045d612161565b60405161046a91906133c3565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612d7a565b61218b565b6040516104a79190613684565b60405180910390f35b3480156104bc57600080fd5b506104c56123f8565b6040516104d2919061346e565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612c9d565b612450565b60405161050f919061346e565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612c9d565b612466565b60405161054c91906136a6565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612c9d565b61247c565b60405161058991906136a6565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612b3b565b612493565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612c9d565b612566565b6040516105ef91906133c3565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612c9d565b61257d565b60405161062c919061344c565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612c9d565b612594565b604051610669919061346e565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612c9d565b6125aa565b6040516106a691906133c3565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190612c9d565b6125c0565b6040516106e391906136a6565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612c9d565b6125e0565b604051610720919061346e565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612d02565b61260b565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ac57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f150b7a023d4804d13e8c85fb27262cb750cf6ba9f9dd3bb30d90f482ceeb4b1f9050949350505050565b61082681612141565b80156108375750610836816125e0565b5b610876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086d90613544565b60405180910390fd5b6000600360008381526020019081526020016000206001610896846125c0565b6108a091906137ff565b815481106108d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060090201905060008160000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008260060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061099e57508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d4906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac35760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084876040518463ffffffff1660e01b8152600401610a6f93929190613415565b600060405180830381600087803b158015610a8957600080fd5b505af1158015610a9d573d6000803e3d6000fd5b5050505060008360000160016101000a81548160ff021916908315150217905550610d9c565b826002015483600501541015610c595760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084876040518463ffffffff1660e01b8152600401610b3093929190613415565b600060405180830381600087803b158015610b4a57600080fd5b505af1158015610b5e573d6000803e3d6000fd5b5050505060008360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168460050154604051610bb0906133ae565b60006040518083038185875af1925050503d8060008114610bed576040519150601f19603f3d011682016040523d82523d6000602084013e610bf2565b606091505b5050905080610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613504565b60405180910390fd5b60008460000160016101000a81548160ff02191690831515021790555050610d9b565b60008360000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168460050154604051610ca7906133ae565b60006040518083038185875af1925050503d8060008114610ce4576040519150601f19603f3d011682016040523d82523d6000602084013e610ce9565b606091505b5050905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3084886040518463ffffffff1660e01b8152600401610d4a93929190613415565b600060405180830381600087803b158015610d6457600080fd5b505af1158015610d78573d6000803e3d6000fd5b5050505060018460000160016101000a81548160ff021916908315150217905550505b5b60008360000160006101000a81548160ff02191690831515021790555050505050565b610dc76126b0565b60026000838152602001908152602001600020604051806101800160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff161515151581526020016000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016007820154815260200160088201805480602002602001604051908101604052809291908181526020016000905b82821015610fd657838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505081526020019060010190610f44565b50505050815250509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461103f57600080fd5b8060036000848152602001908152602001600020600161105e856125c0565b61106891906137ff565b8154811061109f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906009020160000160006101000a81548160ff0219169083151502179055505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161112491906136a6565b60206040518083038186803b15801561113c57600080fd5b505afa158015611150573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111749190612b64565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906134e4565b60405180910390fd5b438411611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613564565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561125d57600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613584565b60405180910390fd5b60006112f8836125c0565b148061131057506001151561130c836125e0565b1515145b61134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613524565b60405180910390fd5b6000600260006004548152602001908152602001600020905060018160000160006101000a81548160ff02191690831515021790555060008160000160016101000a81548160ff02191690831515021790555060008160000160026101000a81548160ff021916908315150217905550338160000160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181600101819055508381600201819055508481600301819055508281600401819055506000816005018190555060008160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008160070181905550600360008481526020019081526020016000208190806001815401808255809150506001900390600052602060002090600902016000909190919091506000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900460ff168160000160016101000a81548160ff0219169083151502179055506000820160029054906101000a900460ff168160000160026101000a81548160ff0219169083151502179055506000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201548160010155600282015481600201556003820154816003015560048201548160040155600582015481600501556006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600782015481600701556008820181600801908054611662929190612743565b50505060016004600082825461167891906137a9565b925050819055505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008160000151826060015183608001518460a001518560c001518660e001518761010001518861012001516040516020016116f298979695949392919061331c565b604051602081830303815290604052805190602001208360000151846060015185608001518660a001518760c001518860e001518961010001518a610120015160405160200161174998979695949392919061331c565b6040516020818303038152906040528051906020012014905092915050565b6000611773826125c0565b116117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613624565b60405180910390fd5b600015156117c0826125e0565b151514611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906135c4565b60405180910390fd5b61180b81612466565b34101561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613644565b60405180910390fd5b6118568161247c565b3411611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156118d157600080fd5b60006003600083815260200190815260200160002060016118f1846125c0565b6118fb91906137ff565b81548110611932577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a705760008160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682600501546040516119e8906133ae565b60006040518083038185875af1925050503d8060008114611a25576040519150601f19603f3d011682016040523d82523d6000602084013e611a2a565b606091505b5050905080611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590613504565b60405180910390fd5b505b348160050181905550338160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060080160405180604001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200134815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050806007016000815480929190611b7c9061392f565b91905055505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401611bde91906136a6565b60206040518083038186803b158015611bf657600080fd5b505afa158015611c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2e9190612b64565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613604565b60405180910390fd5b60011515611ca882612141565b151514611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce1906135a4565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190613664565b60405180910390fd5b6000600360008381526020019081526020016000206001611d9a846125c0565b611da491906137ff565b81548110611ddb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f195760008160060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260050154604051611e91906133ae565b60006040518083038185875af1925050503d8060008114611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b5050905080611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613504565b60405180910390fd5b505b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e308360000160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611f9a939291906133de565b600060405180830381600087803b158015611fb457600080fd5b505af1158015611fc8573d6000803e3d6000fd5b5050505060008160000160006101000a81548160ff02191690831515021790555060008160000160016101000a81548160ff02191690831515021790555060018160000160026101000a81548160ff0219169083151502179055505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461208157600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3083856040518463ffffffff1660e01b81526004016120de93929190613415565b600060405180830381600087803b1580156120f857600080fd5b505af115801561210c573d6000803e3d6000fd5b505050505050565b61211c6126b0565b61213a82600161212b856125c0565b61213591906137ff565b61218b565b9050919050565b600061214c82612114565b600001519050919050565b6000600454905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121936126b0565b6003600084815260200190815260200160002082815481106121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060090201604051806101800160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff161515151581526020016000820160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016007820154815260200160088201805480602002602001604051908101604052809291908181526020016000905b828210156123e857838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505081526020019060010190612356565b5050505081525050905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600061245b82612114565b602001519050919050565b600061247182612114565b608001519050919050565b600061248782612114565b61010001519050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906134a4565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061257182612114565b61012001519050919050565b606061258882612114565b61016001519050919050565b600061259f82612114565b604001519050919050565b60006125b582612114565b606001519050919050565b600060036000838152602001908152602001600020805490509050919050565b6000806125ec83612114565b90508060c001514310158061260357508060000151155b915050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461266557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156126ab573d6000803e3d6000fd5b505050565b604051806101800160405280600015158152602001600015158152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001606081525090565b8280548282559060005260206000209060020281019282156127fb5760005260206000209160020282015b828111156127fa5782826000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001820154816001015550509160020191906002019061276e565b5b509050612808919061280c565b5090565b5b8082111561284e57600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560018201600090555060020161280d565b5090565b6000612865612860846136e6565b6136c1565b9050808382526020820190508285604086028201111561288457600080fd5b60005b858110156128b4578161289a8882612ada565b845260208401935060408301925050600181019050612887565b5050509392505050565b60006128d16128cc84613712565b6136c1565b9050828152602081018484840111156128e957600080fd5b6128f48482856138ef565b509392505050565b60008135905061290b81613e39565b92915050565b60008151905061292081613e39565b92915050565b60008135905061293581613e50565b92915050565b600082601f83011261294c57600080fd5b813561295c848260208601612852565b91505092915050565b60008135905061297481613e67565b92915050565b600082601f83011261298b57600080fd5b813561299b8482602086016128be565b91505092915050565b600061018082840312156129b757600080fd5b6129c26101806136c1565b905060006129d284828501612965565b60008301525060206129e684828501612965565b60208301525060406129fa84828501612965565b6040830152506060612a0e84828501612926565b6060830152506080612a2284828501612b26565b60808301525060a0612a3684828501612b26565b60a08301525060c0612a4a84828501612b26565b60c08301525060e0612a5e84828501612b26565b60e083015250610100612a7384828501612b26565b61010083015250610120612a8984828501612926565b61012083015250610140612a9f84828501612b26565b6101408301525061016082013567ffffffffffffffff811115612ac157600080fd5b612acd8482850161293b565b6101608301525092915050565b600060408284031215612aec57600080fd5b612af660406136c1565b90506000612b06848285016128fc565b6000830152506020612b1a84828501612b26565b60208301525092915050565b600081359050612b3581613e7e565b92915050565b600060208284031215612b4d57600080fd5b6000612b5b848285016128fc565b91505092915050565b600060208284031215612b7657600080fd5b6000612b8484828501612911565b91505092915050565b600060208284031215612b9f57600080fd5b6000612bad84828501612926565b91505092915050565b60008060008060808587031215612bcc57600080fd5b6000612bda878288016128fc565b9450506020612beb878288016128fc565b9350506040612bfc87828801612b26565b925050606085013567ffffffffffffffff811115612c1957600080fd5b612c258782880161297a565b91505092959194509250565b60008060408385031215612c4457600080fd5b600083013567ffffffffffffffff811115612c5e57600080fd5b612c6a858286016129a4565b925050602083013567ffffffffffffffff811115612c8757600080fd5b612c93858286016129a4565b9150509250929050565b600060208284031215612caf57600080fd5b6000612cbd84828501612b26565b91505092915050565b60008060408385031215612cd957600080fd5b6000612ce785828601612b26565b9250506020612cf8858286016128fc565b9150509250929050565b60008060408385031215612d1557600080fd5b6000612d2385828601612b26565b9250506020612d3485828601612926565b9150509250929050565b60008060408385031215612d5157600080fd5b6000612d5f85828601612b26565b9250506020612d7085828601612965565b9150509250929050565b60008060408385031215612d8d57600080fd5b6000612d9b85828601612b26565b9250506020612dac85828601612b26565b9150509250929050565b60008060008060808587031215612dcc57600080fd5b6000612dda87828801612b26565b9450506020612deb87828801612b26565b9350506040612dfc87828801612b26565b9250506060612e0d87828801612b26565b91505092959194509250565b6000612e2583836132b8565b60408301905092915050565b612e3a816138b9565b82525050565b612e4981613845565b82525050565b612e60612e5b82613845565b613978565b82525050565b612e6f81613833565b82525050565b612e7e81613833565b82525050565b6000612e8f82613753565b612e99818561376b565b9350612ea483613743565b8060005b83811015612ed5578151612ebc8882612e19565b9750612ec78361375e565b925050600181019050612ea8565b5085935050505092915050565b6000612eed82613753565b612ef7818561377c565b9350612f0283613743565b8060005b83811015612f33578151612f1a8882612e19565b9750612f258361375e565b925050600181019050612f06565b5085935050505092915050565b612f4981613857565b82525050565b612f5881613857565b82525050565b612f6f612f6a82613857565b61398a565b82525050565b612f7e81613863565b82525050565b6000612f91602583613798565b9150612f9c82613a53565b604082019050919050565b6000612fb4602f83613798565b9150612fbf82613aa2565b604082019050919050565b6000612fd7602983613798565b9150612fe282613af1565b604082019050919050565b6000612ffa600f83613798565b915061300582613b40565b602082019050919050565b600061301d602483613798565b915061302882613b69565b604082019050919050565b6000613040601783613798565b915061304b82613bb8565b602082019050919050565b6000613063601983613798565b915061306e82613be1565b602082019050919050565b6000613086602483613798565b915061309182613c0a565b604082019050919050565b60006130a9601983613798565b91506130b482613c59565b602082019050919050565b60006130cc601883613798565b91506130d782613c82565b602082019050919050565b60006130ef602d83613798565b91506130fa82613cab565b604082019050919050565b6000613112602883613798565b915061311d82613cfa565b604082019050919050565b6000613135602583613798565b915061314082613d49565b604082019050919050565b600061315860008361378d565b915061316382613d98565b600082019050919050565b600061317b603c83613798565b915061318682613d9b565b604082019050919050565b600061319e602683613798565b91506131a982613dea565b604082019050919050565b6000610180830160008301516131cd6000860182612f40565b5060208301516131e06020860182612f40565b5060408301516131f36040860182612f40565b5060608301516132066060860182612e40565b50608083015161321960808601826132e7565b5060a083015161322c60a08601826132e7565b5060c083015161323f60c08601826132e7565b5060e083015161325260e08601826132e7565b506101008301516132676101008601826132e7565b5061012083015161327c610120860182612e40565b506101408301516132916101408601826132e7565b506101608301518482036101608601526132ab8282612e84565b9150508091505092915050565b6040820160008201516132ce6000850182612e66565b5060208201516132e160208501826132e7565b50505050565b6132f0816138af565b82525050565b6132ff816138af565b82525050565b613316613311826138af565b6139ae565b82525050565b6000613328828b612f5e565b600182019150613338828a612e4f565b6014820191506133488289613305565b6020820191506133588288613305565b6020820191506133688287613305565b6020820191506133788286613305565b6020820191506133888285613305565b6020820191506133988284612e4f565b6014820191508190509998505050505050505050565b60006133b98261314b565b9150819050919050565b60006020820190506133d86000830184612e75565b92915050565b60006060820190506133f36000830186612e75565b6134006020830185612e31565b61340d60408301846132f6565b949350505050565b600060608201905061342a6000830186612e75565b6134376020830185612e75565b61344460408301846132f6565b949350505050565b600060208201905081810360008301526134668184612ee2565b905092915050565b60006020820190506134836000830184612f4f565b92915050565b600060208201905061349e6000830184612f75565b92915050565b600060208201905081810360008301526134bd81612f84565b9050919050565b600060208201905081810360008301526134dd81612fa7565b9050919050565b600060208201905081810360008301526134fd81612fca565b9050919050565b6000602082019050818103600083015261351d81612fed565b9050919050565b6000602082019050818103600083015261353d81613010565b9050919050565b6000602082019050818103600083015261355d81613033565b9050919050565b6000602082019050818103600083015261357d81613056565b9050919050565b6000602082019050818103600083015261359d81613079565b9050919050565b600060208201905081810360008301526135bd8161309c565b9050919050565b600060208201905081810360008301526135dd816130bf565b9050919050565b600060208201905081810360008301526135fd816130e2565b9050919050565b6000602082019050818103600083015261361d81613105565b9050919050565b6000602082019050818103600083015261363d81613128565b9050919050565b6000602082019050818103600083015261365d8161316e565b9050919050565b6000602082019050818103600083015261367d81613191565b9050919050565b6000602082019050818103600083015261369e81846131b4565b905092915050565b60006020820190506136bb60008301846132f6565b92915050565b60006136cb6136dc565b90506136d782826138fe565b919050565b6000604051905090565b600067ffffffffffffffff821115613701576137006139f9565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561372d5761372c6139f9565b5b61373682613a28565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006137b4826138af565b91506137bf836138af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137f4576137f36139ca565b5b828201905092915050565b600061380a826138af565b9150613815836138af565b925082821015613828576138276139ca565b5b828203905092915050565b600061383e8261388f565b9050919050565b60006138508261388f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006138c4826138cb565b9050919050565b60006138d6826138dd565b9050919050565b60006138e88261388f565b9050919050565b82818337600083830152505050565b61390782613a28565b810181811067ffffffffffffffff82111715613926576139256139f9565b5b80604052505050565b600061393a826138af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561396d5761396c6139ca565b5b600182019050919050565b60006139838261399c565b9050919050565b6000613995826139b8565b9050919050565b60006139a782613a46565b9050919050565b6000819050919050565b60006139c382613a39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b7f596f7572206269642073686f756c642062652067726561746572207468616e2060008201527f746865206d6178696d756d206269640000000000000000000000000000000000602082015250565b7f506c65617365207472616e7366657220746865204e465420746f20746869732060008201527f636f6e74726163742e0000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f546865726520697320616c726561647920616e2061756374696f6e20676f696e60008201527f67206f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f5468652061756374696f6e206973206e6f74206f70656e000000000000000000600082015250565b7f41756374696f6e2077696c6c20656e6420746f6f20736f6f6e00000000000000600082015250565b7f4f6e6c7920746865206f776e65722063616e2063726561746520616e2061756360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f41756374696f6e20697320616c726561647920636c6f73656400000000000000600082015250565b7f546869732061756374696f6e2068617320657870697265640000000000000000600082015250565b7f596f75206d75737420626520746865206d617820626964646572206f7220736560008201527f6c6c657220746f20636c61696d00000000000000000000000000000000000000602082015250565b7f506c65617365207472616e7366657220746865204e465420746f20746869732060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2061756374696f6e73207769746820746869732060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f596f7572206269642073686f756c642062652067726561746572207468616e2060008201527f6f7220657175616c20746f20746865207374617274696e672062696400000000602082015250565b7f4f6e6c79207468652073656c6c65722063616e20636c6f73652074686973206160008201527f756374696f6e0000000000000000000000000000000000000000000000000000602082015250565b613e4281613833565b8114613e4d57600080fd5b50565b613e5981613845565b8114613e6457600080fd5b50565b613e7081613857565b8114613e7b57600080fd5b50565b613e87816138af565b8114613e9257600080fd5b5056fea26469706673582212208b5e071815b5e6f7e051fc0eb38c7b760c11dc1ed14086f53da4f19d5233e75664736f6c63430008040033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1B7 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 GT PUSH2 0xEC JUMPI DUP1 PUSH4 0xC0E0A3AB GT PUSH2 0x8A JUMPI DUP1 PUSH4 0xD082D7E0 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xD082D7E0 EQ PUSH2 0x672 JUMPI DUP1 PUSH4 0xE39D701A EQ PUSH2 0x6AF JUMPI DUP1 PUSH4 0xEE14CB68 EQ PUSH2 0x6EC JUMPI DUP1 PUSH4 0xF08E362F EQ PUSH2 0x729 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0xC0E0A3AB EQ PUSH2 0x5BB JUMPI DUP1 PUSH4 0xC68733CB EQ PUSH2 0x5F8 JUMPI DUP1 PUSH4 0xCCA8DADD EQ PUSH2 0x635 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x8FCD706E GT PUSH2 0xC6 JUMPI DUP1 PUSH4 0x8FCD706E EQ PUSH2 0x4DB JUMPI DUP1 PUSH4 0x959B19D0 EQ PUSH2 0x518 JUMPI DUP1 PUSH4 0xB18DB8F2 EQ PUSH2 0x555 JUMPI DUP1 PUSH4 0xBBCD5BBE EQ PUSH2 0x592 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0x8BB9A6C5 EQ PUSH2 0x473 JUMPI DUP1 PUSH4 0x8F32D59B EQ PUSH2 0x4B0 JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x3F5FDDCC GT PUSH2 0x159 JUMPI DUP1 PUSH4 0x6BB02FCD GT PUSH2 0x133 JUMPI DUP1 PUSH4 0x6BB02FCD EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x77413267 EQ PUSH2 0x3A3 JUMPI DUP1 PUSH4 0x823E88E6 EQ PUSH2 0x3E0 JUMPI DUP1 PUSH4 0x879A30F7 EQ PUSH2 0x41D JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x3F5FDDCC EQ PUSH2 0x305 JUMPI DUP1 PUSH4 0x454A2AB3 EQ PUSH2 0x342 JUMPI DUP1 PUSH4 0x4ACC200F EQ PUSH2 0x35E JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x18111ADA GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x18111ADA EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0x21C2F883 EQ PUSH2 0x288 JUMPI DUP1 PUSH4 0x285A71D4 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x28B7BEDE EQ PUSH2 0x2DA JUMPI PUSH2 0x1B7 JUMP JUMPDEST DUP1 PUSH4 0x13AF4035 EQ PUSH2 0x1BC JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x1E5 JUMPI DUP1 PUSH4 0x168A0B32 EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DE SWAP2 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST PUSH2 0x752 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2BB6 JUMP JUMPDEST PUSH2 0x7F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x3489 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x249 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x81D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x272 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0xDBF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27F SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x294 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x2D3E JUMP JUMPDEST PUSH2 0xFE5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x2DB6 JUMP JUMPDEST PUSH2 0x10CB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x1686 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FC SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x311 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x327 SWAP2 SWAP1 PUSH2 0x2C31 JUMP JUMPDEST PUSH2 0x16AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x339 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x1768 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x378 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x373 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x1B85 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39C SWAP2 SWAP1 PUSH2 0x2CC6 JUMP JUMPDEST PUSH2 0x2027 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C5 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D7 SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x407 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x402 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2141 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x414 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x429 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x432 PUSH2 0x2157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x43F SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45D PUSH2 0x2161 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46A SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x47F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x49A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x495 SWAP2 SWAP1 PUSH2 0x2D7A JUMP JUMPDEST PUSH2 0x218B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A7 SWAP2 SWAP1 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4C5 PUSH2 0x23F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D2 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x502 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4FD SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50F SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x524 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x53F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x53A SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2466 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54C SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x561 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x57C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x577 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x247C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x589 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B4 SWAP2 SWAP1 PUSH2 0x2B3B JUMP JUMPDEST PUSH2 0x2493 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5DD SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5EF SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x604 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x61F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x61A SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x257D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x62C SWAP2 SWAP1 PUSH2 0x344C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x65C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x657 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x2594 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x669 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x699 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x694 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6A6 SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6D6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6D1 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x713 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x70E SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x25E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 SWAP1 PUSH2 0x346E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x735 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x750 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x74B SWAP2 SWAP1 PUSH2 0x2D02 JUMP JUMPDEST PUSH2 0x260B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x150B7A023D4804D13E8C85FB27262CB750CF6BA9F9DD3BB30D90F482CEEB4B1F SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x826 DUP2 PUSH2 0x2141 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x837 JUMPI POP PUSH2 0x836 DUP2 PUSH2 0x25E0 JUMP JUMPDEST JUMPDEST PUSH2 0x876 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86D SWAP1 PUSH2 0x3544 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x896 DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x8A0 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x8D7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x99E JUMPI POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9D4 SWAP1 PUSH2 0x35E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAC3 JUMPI PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA89 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA9D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xD9C JUMP JUMPDEST DUP3 PUSH1 0x2 ADD SLOAD DUP4 PUSH1 0x5 ADD SLOAD LT ISZERO PUSH2 0xC59 JUMPI PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP8 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB30 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB4A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB5E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP4 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xBB0 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBED JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xBF2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xC36 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC2D SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP PUSH2 0xD9B JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xCA7 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCE4 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCE9 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP5 DUP9 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD78 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x1 DUP5 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0xDC7 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xFD6 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xF44 JUMP JUMPDEST POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x103F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x105E DUP6 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x1068 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x109F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1124 SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1150 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 0x1174 SWAP2 SWAP1 PUSH2 0x2B64 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11D8 SWAP1 PUSH2 0x34E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST NUMBER DUP5 GT PUSH2 0x1223 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x121A SWAP1 PUSH2 0x3564 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12ED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12E4 SWAP1 PUSH2 0x3584 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x12F8 DUP4 PUSH2 0x25C0 JUMP JUMPDEST EQ DUP1 PUSH2 0x1310 JUMPI POP PUSH1 0x1 ISZERO ISZERO PUSH2 0x130C DUP4 PUSH2 0x25E0 JUMP JUMPDEST ISZERO ISZERO EQ JUMPDEST PUSH2 0x134F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1346 SWAP1 PUSH2 0x3524 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 PUSH1 0x4 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP5 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP DUP3 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x7 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 ADD SLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x2 DUP3 ADD SLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x3 DUP3 ADD SLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x4 DUP3 ADD SLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0x5 DUP3 ADD SLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x7 DUP3 ADD SLOAD DUP2 PUSH1 0x7 ADD SSTORE PUSH1 0x8 DUP3 ADD DUP2 PUSH1 0x8 ADD SWAP1 DUP1 SLOAD PUSH2 0x1662 SWAP3 SWAP2 SWAP1 PUSH2 0x2743 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1678 SWAP2 SWAP1 PUSH2 0x37A9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x80 ADD MLOAD DUP5 PUSH1 0xA0 ADD MLOAD DUP6 PUSH1 0xC0 ADD MLOAD DUP7 PUSH1 0xE0 ADD MLOAD DUP8 PUSH2 0x100 ADD MLOAD DUP9 PUSH2 0x120 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x16F2 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x331C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP4 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD DUP6 PUSH1 0x80 ADD MLOAD DUP7 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xC0 ADD MLOAD DUP9 PUSH1 0xE0 ADD MLOAD DUP10 PUSH2 0x100 ADD MLOAD DUP11 PUSH2 0x120 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1749 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x331C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1773 DUP3 PUSH2 0x25C0 JUMP JUMPDEST GT PUSH2 0x17B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17AA SWAP1 PUSH2 0x3624 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ISZERO ISZERO PUSH2 0x17C0 DUP3 PUSH2 0x25E0 JUMP JUMPDEST ISZERO ISZERO EQ PUSH2 0x1802 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17F9 SWAP1 PUSH2 0x35C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x180B DUP2 PUSH2 0x2466 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0x184D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1844 SWAP1 PUSH2 0x3644 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1856 DUP2 PUSH2 0x247C JUMP JUMPDEST CALLVALUE GT PUSH2 0x1897 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x188E SWAP1 PUSH2 0x34C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x18D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x18F1 DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x18FB SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1932 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A70 JUMPI PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0x19E8 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A25 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A2A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x1A6E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A65 SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST CALLVALUE DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP CALLER DUP2 PUSH1 0x6 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x8 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD CALLVALUE DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP DUP1 PUSH1 0x7 ADD PUSH1 0x0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x1B7C SWAP1 PUSH2 0x392F JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6352211E DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BDE SWAP2 SWAP1 PUSH2 0x36A6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C0A 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 0x1C2E SWAP2 SWAP1 PUSH2 0x2B64 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C92 SWAP1 PUSH2 0x3604 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH2 0x1CA8 DUP3 PUSH2 0x2141 JUMP JUMPDEST ISZERO ISZERO EQ PUSH2 0x1CEA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CE1 SWAP1 PUSH2 0x35A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1D7A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D71 SWAP1 PUSH2 0x3664 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 PUSH2 0x1D9A DUP5 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x1DA4 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1DDB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F19 JUMPI PUSH1 0x0 DUP2 PUSH1 0x6 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0x1E91 SWAP1 PUSH2 0x33AE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1ECE JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x1F17 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F0E SWAP1 PUSH2 0x3504 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP4 PUSH1 0x0 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F9A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x33DE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FC8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x0 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2081 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x42842E0E ADDRESS DUP4 DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20DE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3415 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x20F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x210C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x211C PUSH2 0x26B0 JUMP JUMPDEST PUSH2 0x213A DUP3 PUSH1 0x1 PUSH2 0x212B DUP6 PUSH2 0x25C0 JUMP JUMPDEST PUSH2 0x2135 SWAP2 SWAP1 PUSH2 0x37FF JUMP JUMPDEST PUSH2 0x218B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x214C DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x2193 PUSH2 0x26B0 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x21DE JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x6 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x7 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x8 DUP3 ADD DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x23E8 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2356 JUMP JUMPDEST POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245B DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x20 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2471 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x80 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2487 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x100 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2523 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x251A SWAP1 PUSH2 0x34A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2571 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x120 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2588 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH2 0x160 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259F DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x40 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25B5 DUP3 PUSH2 0x2114 JUMP JUMPDEST PUSH1 0x60 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x25EC DUP4 PUSH2 0x2114 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xC0 ADD MLOAD NUMBER LT ISZERO DUP1 PUSH2 0x2603 JUMPI POP DUP1 PUSH1 0x0 ADD MLOAD ISZERO JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x26AB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x27FB JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x2 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x27FA JUMPI DUP3 DUP3 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 ADD SLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP SWAP2 PUSH1 0x2 ADD SWAP2 SWAP1 PUSH1 0x2 ADD SWAP1 PUSH2 0x276E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2808 SWAP2 SWAP1 PUSH2 0x280C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x284E JUMPI PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x2 ADD PUSH2 0x280D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2865 PUSH2 0x2860 DUP5 PUSH2 0x36E6 JUMP JUMPDEST PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x40 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2884 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x28B4 JUMPI DUP2 PUSH2 0x289A DUP9 DUP3 PUSH2 0x2ADA JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x40 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2887 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28D1 PUSH2 0x28CC DUP5 PUSH2 0x3712 JUMP JUMPDEST PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x28E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x28F4 DUP5 DUP3 DUP6 PUSH2 0x38EF JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x290B DUP2 PUSH2 0x3E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2920 DUP2 PUSH2 0x3E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2935 DUP2 PUSH2 0x3E50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x294C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x295C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2852 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2974 DUP2 PUSH2 0x3E67 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x298B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x299B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x29B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x29C2 PUSH2 0x180 PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x29D2 DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x29E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP PUSH1 0x40 PUSH2 0x29FA DUP5 DUP3 DUP6 ADD PUSH2 0x2965 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE POP PUSH1 0x60 PUSH2 0x2A0E DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE POP PUSH1 0x80 PUSH2 0x2A22 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP PUSH1 0xA0 PUSH2 0x2A36 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE POP PUSH1 0xC0 PUSH2 0x2A4A DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE POP PUSH1 0xE0 PUSH2 0x2A5E DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP PUSH2 0x100 PUSH2 0x2A73 DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x100 DUP4 ADD MSTORE POP PUSH2 0x120 PUSH2 0x2A89 DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST PUSH2 0x120 DUP4 ADD MSTORE POP PUSH2 0x140 PUSH2 0x2A9F DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH2 0x140 DUP4 ADD MSTORE POP PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2AC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2ACD DUP5 DUP3 DUP6 ADD PUSH2 0x293B JUMP JUMPDEST PUSH2 0x160 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2AF6 PUSH1 0x40 PUSH2 0x36C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2B06 DUP5 DUP3 DUP6 ADD PUSH2 0x28FC JUMP JUMPDEST PUSH1 0x0 DUP4 ADD MSTORE POP PUSH1 0x20 PUSH2 0x2B1A DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B35 DUP2 PUSH2 0x3E7E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B5B DUP5 DUP3 DUP6 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B84 DUP5 DUP3 DUP6 ADD PUSH2 0x2911 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2B9F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2BAD DUP5 DUP3 DUP6 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2BCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2BDA DUP8 DUP3 DUP9 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2BEB DUP8 DUP3 DUP9 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2BFC DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C25 DUP8 DUP3 DUP9 ADD PUSH2 0x297A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2C44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C6A DUP6 DUP3 DUP7 ADD PUSH2 0x29A4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2C87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2C93 DUP6 DUP3 DUP7 ADD PUSH2 0x29A4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2CAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2CBD DUP5 DUP3 DUP6 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2CD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2CE7 DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2CF8 DUP6 DUP3 DUP7 ADD PUSH2 0x28FC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D23 DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D34 DUP6 DUP3 DUP7 ADD PUSH2 0x2926 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D5F DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D70 DUP6 DUP3 DUP7 ADD PUSH2 0x2965 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D8D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2D9B DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2DAC DUP6 DUP3 DUP7 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2DCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2DDA DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2DEB DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2DFC DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x2E0D DUP8 DUP3 DUP9 ADD PUSH2 0x2B26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E25 DUP4 DUP4 PUSH2 0x32B8 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2E3A DUP2 PUSH2 0x38B9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E49 DUP2 PUSH2 0x3845 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E60 PUSH2 0x2E5B DUP3 PUSH2 0x3845 JUMP JUMPDEST PUSH2 0x3978 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E6F DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2E7E DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E8F DUP3 PUSH2 0x3753 JUMP JUMPDEST PUSH2 0x2E99 DUP2 DUP6 PUSH2 0x376B JUMP JUMPDEST SWAP4 POP PUSH2 0x2EA4 DUP4 PUSH2 0x3743 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2ED5 JUMPI DUP2 MLOAD PUSH2 0x2EBC DUP9 DUP3 PUSH2 0x2E19 JUMP JUMPDEST SWAP8 POP PUSH2 0x2EC7 DUP4 PUSH2 0x375E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2EA8 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EED DUP3 PUSH2 0x3753 JUMP JUMPDEST PUSH2 0x2EF7 DUP2 DUP6 PUSH2 0x377C JUMP JUMPDEST SWAP4 POP PUSH2 0x2F02 DUP4 PUSH2 0x3743 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2F33 JUMPI DUP2 MLOAD PUSH2 0x2F1A DUP9 DUP3 PUSH2 0x2E19 JUMP JUMPDEST SWAP8 POP PUSH2 0x2F25 DUP4 PUSH2 0x375E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2F06 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F49 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F58 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F6F PUSH2 0x2F6A DUP3 PUSH2 0x3857 JUMP JUMPDEST PUSH2 0x398A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2F7E DUP2 PUSH2 0x3863 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F91 PUSH1 0x25 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F9C DUP3 PUSH2 0x3A53 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FB4 PUSH1 0x2F DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FBF DUP3 PUSH2 0x3AA2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FD7 PUSH1 0x29 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FE2 DUP3 PUSH2 0x3AF1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FFA PUSH1 0xF DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3005 DUP3 PUSH2 0x3B40 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301D PUSH1 0x24 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3028 DUP3 PUSH2 0x3B69 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3040 PUSH1 0x17 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x304B DUP3 PUSH2 0x3BB8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3063 PUSH1 0x19 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x306E DUP3 PUSH2 0x3BE1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3086 PUSH1 0x24 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3091 DUP3 PUSH2 0x3C0A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30A9 PUSH1 0x19 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30B4 DUP3 PUSH2 0x3C59 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30CC PUSH1 0x18 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30D7 DUP3 PUSH2 0x3C82 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30EF PUSH1 0x2D DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x30FA DUP3 PUSH2 0x3CAB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3112 PUSH1 0x28 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x311D DUP3 PUSH2 0x3CFA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3135 PUSH1 0x25 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3140 DUP3 PUSH2 0x3D49 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3158 PUSH1 0x0 DUP4 PUSH2 0x378D JUMP JUMPDEST SWAP2 POP PUSH2 0x3163 DUP3 PUSH2 0x3D98 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317B PUSH1 0x3C DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x3186 DUP3 PUSH2 0x3D9B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x319E PUSH1 0x26 DUP4 PUSH2 0x3798 JUMP JUMPDEST SWAP2 POP PUSH2 0x31A9 DUP3 PUSH2 0x3DEA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD PUSH2 0x31CD PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x31E0 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x31F3 PUSH1 0x40 DUP7 ADD DUP3 PUSH2 0x2F40 JUMP JUMPDEST POP PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x3206 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0x2E40 JUMP JUMPDEST POP PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x3219 PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x322C PUSH1 0xA0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH2 0x323F PUSH1 0xC0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH1 0xE0 DUP4 ADD MLOAD PUSH2 0x3252 PUSH1 0xE0 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x3267 PUSH2 0x100 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x327C PUSH2 0x120 DUP7 ADD DUP3 PUSH2 0x2E40 JUMP JUMPDEST POP PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x3291 PUSH2 0x140 DUP7 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH2 0x160 DUP7 ADD MSTORE PUSH2 0x32AB DUP3 DUP3 PUSH2 0x2E84 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x32CE PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x2E66 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x32E1 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x32E7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x32F0 DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x32FF DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3316 PUSH2 0x3311 DUP3 PUSH2 0x38AF JUMP JUMPDEST PUSH2 0x39AE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3328 DUP3 DUP12 PUSH2 0x2F5E JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x3338 DUP3 DUP11 PUSH2 0x2E4F JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x3348 DUP3 DUP10 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3358 DUP3 DUP9 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3368 DUP3 DUP8 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3378 DUP3 DUP7 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3388 DUP3 DUP6 PUSH2 0x3305 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x3398 DUP3 DUP5 PUSH2 0x2E4F JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33B9 DUP3 PUSH2 0x314B JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x33D8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2E75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x33F3 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3400 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2E31 JUMP JUMPDEST PUSH2 0x340D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x342A PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3437 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2E75 JUMP JUMPDEST PUSH2 0x3444 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3466 DUP2 DUP5 PUSH2 0x2EE2 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3483 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F4F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x349E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2F75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34BD DUP2 PUSH2 0x2F84 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34DD DUP2 PUSH2 0x2FA7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34FD DUP2 PUSH2 0x2FCA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x351D DUP2 PUSH2 0x2FED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x353D DUP2 PUSH2 0x3010 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x355D DUP2 PUSH2 0x3033 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x357D DUP2 PUSH2 0x3056 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x359D DUP2 PUSH2 0x3079 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35BD DUP2 PUSH2 0x309C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35DD DUP2 PUSH2 0x30BF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35FD DUP2 PUSH2 0x30E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x361D DUP2 PUSH2 0x3105 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x363D DUP2 PUSH2 0x3128 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x365D DUP2 PUSH2 0x316E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x367D DUP2 PUSH2 0x3191 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x369E DUP2 DUP5 PUSH2 0x31B4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x36BB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32F6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36CB PUSH2 0x36DC JUMP JUMPDEST SWAP1 POP PUSH2 0x36D7 DUP3 DUP3 PUSH2 0x38FE JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3701 JUMPI PUSH2 0x3700 PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x372D JUMPI PUSH2 0x372C PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST PUSH2 0x3736 DUP3 PUSH2 0x3A28 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37B4 DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH2 0x37BF DUP4 PUSH2 0x38AF JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x37F4 JUMPI PUSH2 0x37F3 PUSH2 0x39CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x380A DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH2 0x3815 DUP4 PUSH2 0x38AF JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3828 JUMPI PUSH2 0x3827 PUSH2 0x39CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x383E DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3850 DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38C4 DUP3 PUSH2 0x38CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D6 DUP3 PUSH2 0x38DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38E8 DUP3 PUSH2 0x388F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x3907 DUP3 PUSH2 0x3A28 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3926 JUMPI PUSH2 0x3925 PUSH2 0x39F9 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x393A DUP3 PUSH2 0x38AF JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x396D JUMPI PUSH2 0x396C PUSH2 0x39CA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3983 DUP3 PUSH2 0x399C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3995 DUP3 PUSH2 0x39B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39A7 DUP3 PUSH2 0x3A46 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39C3 DUP3 PUSH2 0x3A39 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xF8 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C7920746865206F776E65722063616E2063616C6C20746869732066756E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6374696F6E000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x596F7572206269642073686F756C642062652067726561746572207468616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746865206D6178696D756D206269640000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207472616E7366657220746865204E465420746F207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x636F6E74726163742E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5472616E73666572206661696C65640000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546865726520697320616C726561647920616E2061756374696F6E20676F696E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x67206F6E00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5468652061756374696F6E206973206E6F74206F70656E000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41756374696F6E2077696C6C20656E6420746F6F20736F6F6E00000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C7920746865206F776E65722063616E2063726561746520616E20617563 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74696F6E00000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x41756374696F6E20697320616C726561647920636C6F73656400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546869732061756374696F6E2068617320657870697265640000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x596F75206D75737420626520746865206D617820626964646572206F72207365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C657220746F20636C61696D00000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207472616E7366657220746865204E465420746F207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x636F6E7472616374000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x546865726520617265206E6F2061756374696F6E732077697468207468697320 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x746F6B656E000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x596F7572206269642073686F756C642062652067726561746572207468616E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F7220657175616C20746F20746865207374617274696E672062696400000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F6E6C79207468652073656C6C65722063616E20636C6F736520746869732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x756374696F6E0000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x3E42 DUP2 PUSH2 0x3833 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E59 DUP2 PUSH2 0x3845 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E70 DUP2 PUSH2 0x3857 JUMP JUMPDEST DUP2 EQ PUSH2 0x3E7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3E87 DUP2 PUSH2 0x38AF JUMP JUMPDEST DUP2 EQ PUSH2 0x3E92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP12 0x5E SMOD XOR ISZERO 0xB5 0xE6 0xF7 0xE0 MLOAD 0xFC 0xE 0xB3 DUP13 PUSH28 0x760C11DC1ED14086F53DA4F19D5233E75664736F6C63430008040033 ", | |
"sourceMap": "101:9277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1652:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;927:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2234:1202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6592:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7219:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3446:1152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1352:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8873:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5443:1042;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4608:825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1845:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6706:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7434:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6495:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1464:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7048:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1553:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7807:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8560:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8101:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1156:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8252:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8721:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7950:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7581:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2084:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1652:122;1735:5;;;;;;;;;;;1721:19;;:10;:19;;;1713:28;;;;;;1759:8;1751:5;;:16;;;;;;;;;;;;;;;;;;1652:122;:::o;927:219::-;1046:6;1078:60;1064:75;;927:219;;;;;;:::o;2234:1202::-;2316:31;2339:7;2316:22;:31::i;:::-;:70;;;;;2351:35;2378:7;2351:26;:35::i;:::-;2316:70;2308:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;2424:23;2450:16;:25;2467:7;2450:25;;;;;;;;;;;2517:1;2476:39;2507: |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment