More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 320,783 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 43645447 | 22 mins ago | IN | 0 ETH | 0.00000455 | ||||
Approve | 43644809 | 34 mins ago | IN | 0 ETH | 0.0000045 | ||||
Approve | 43641813 | 1 hr ago | IN | 0 ETH | 0.00000527 | ||||
Approve | 43641072 | 1 hr ago | IN | 0 ETH | 0.00000537 | ||||
Approve | 43639975 | 1 hr ago | IN | 0 ETH | 0.0000054 | ||||
Approve | 43623489 | 6 hrs ago | IN | 0 ETH | 0.00000517 | ||||
Approve | 43623200 | 6 hrs ago | IN | 0 ETH | 0.00000471 | ||||
Approve | 43593865 | 15 hrs ago | IN | 0 ETH | 0.00000451 | ||||
Approve | 43585954 | 18 hrs ago | IN | 0 ETH | 0.00000467 | ||||
Approve | 43584498 | 18 hrs ago | IN | 0 ETH | 0.00000482 | ||||
Approve | 43583913 | 18 hrs ago | IN | 0 ETH | 0.00000489 | ||||
Approve | 43583371 | 18 hrs ago | IN | 0 ETH | 0.00000507 | ||||
Approve | 43579478 | 20 hrs ago | IN | 0 ETH | 0.00000562 | ||||
Approve | 43579200 | 20 hrs ago | IN | 0 ETH | 0.00000487 | ||||
Approve | 43579145 | 20 hrs ago | IN | 0 ETH | 0.00000505 | ||||
Approve | 43578341 | 20 hrs ago | IN | 0 ETH | 0.00000454 | ||||
Approve | 43572588 | 22 hrs ago | IN | 0 ETH | 0.00000515 | ||||
Approve | 43572257 | 22 hrs ago | IN | 0 ETH | 0.00000522 | ||||
Approve | 43571321 | 22 hrs ago | IN | 0 ETH | 0.0000054 | ||||
Approve | 43568930 | 23 hrs ago | IN | 0 ETH | 0.0000053 | ||||
Approve | 43568630 | 23 hrs ago | IN | 0 ETH | 0.00000618 | ||||
Approve | 43568588 | 23 hrs ago | IN | 0 ETH | 0.0000053 | ||||
Approve | 43568340 | 23 hrs ago | IN | 0 ETH | 0.00000548 | ||||
Approve | 43567763 | 23 hrs ago | IN | 0 ETH | 0.00001006 | ||||
Approve | 43567330 | 23 hrs ago | IN | 0 ETH | 0.00000826 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
22180259 | 259 days ago | 0.00001 ETH |
Loading...
Loading
This contract contains unverified libraries: Deployer
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Position
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IPositionMetadata.sol"; import "../interfaces/IPosition.sol"; contract Position is ERC721, ERC721Enumerable, Ownable, IPosition { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; IPositionMetadata public metadata; constructor(IPositionMetadata _metadata) ERC721("Maverick Position NFT", "MPN") { metadata = _metadata; _tokenIdCounter.increment(); } function setMetadata(IPositionMetadata _metadata) external onlyOwner { metadata = _metadata; emit SetMetadata(metadata); } function mint(address to) external returns (uint256 tokenId) { tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return super.supportsInterface(interfaceId); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Invalid Token ID"); return metadata.tokenURI(tokenId); } function tokenOfOwnerByIndexExists(address ownerToCheck, uint256 index) external view returns (bool) { return index < balanceOf(ownerToCheck); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) 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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-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` and `to` are never both zero. * * 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the 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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) 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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) 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(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. 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; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "../interfaces/IPositionMetadata.sol"; interface IPosition is IERC721Enumerable { event SetMetadata(IPositionMetadata metadata); /// @notice mint new position NFT function mint(address to) external returns (uint256 tokenId); /// @notice mint new position NFT function tokenOfOwnerByIndexExists(address owner, uint256 index) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IPositionMetadata { function tokenURI(uint256 tokenId) external view returns (string memory); }
{ "compilerPath": "", "experimental": {}, "libraries": { "contracts/libraries/Deployer.sol": { "Deployer": "0x8c9b961D702b3cdBBBe08E0a5C138A6CC8866A46" } }, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IPositionMetadata","name":"_metadata","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IPositionMetadata","name":"metadata","type":"address"}],"name":"SetMetadata","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"contract IPositionMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPositionMetadata","name":"_metadata","type":"address"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerToCheck","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndexExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003e5f3cb9e39e8b5bdf21925ea5984b264b7cb9b696708d895c4a3bf4d6200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a07a5d6ffb4c690e27cd14533d783f1f0d2db400
Deployed Bytecode
0x0004000000000002000800000000000200000000030100190000006003300270000003830430019700030000004103550002000000010355000003830030019d000100000000001f00000001012001900000003e0000c13d0000008001000039000000400010043f0000000001000031000000040110008c0000007b0000413d0000000201000367000000000101043b000000e001100270000003910210009c0000007d0000a13d000003920210009c000000a30000213d0000039a0210009c000001060000213d0000039e0210009c000002990000613d0000039f0210009c000002b70000613d000003a00110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b000003870210009c0000007b0000213d0e0509110000040f000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d00000000010000310000009f02100039000000200800008a000000000282016f0000038403200041000003850330009c0000004e0000213d000003c00100004100000000001004350000004101000039000000040010043f000003b70100004100000e0700010430000000400020043f0000001f0210018f000000020300036700000005041002720000005c0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000540000413d000000000520004c0000006b0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d000000800100043d000800000001001d000003870110009c0000019c0000a13d000000000100001900000e0700010430000003a10210009c000000e30000a13d000003a20210009c000001350000213d000003a60210009c000002ec0000613d000003a70210009c000002fe0000613d000003a80110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d0000000c01000039000000000101041a0000038701100197000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e000003930210009c000001610000213d000003970210009c0000032f0000613d000003980210009c000003640000613d000003990110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b000800000001001d00000000001004350000000201000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a0000038701100198000005aa0000c13d000000400100043d0000004402100039000003b8030000410000000000320435000000240210003900000010030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e0700010430000003a90210009c000002160000a13d000003aa0210009c0000023d0000613d000003ab0210009c0000025b0000613d000003ac0110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d0000000801000039000000000101041a000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000039b0210009c000003dd0000613d0000039c0210009c000004050000613d0000039d0110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d0000000104000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000002370000c13d000000400100043d0000000002710436000000000550004c000005b90000c13d000001000400008a000000000343016f0000000000320435000000000270004c00000020030000390000000003006019000005c60000013d000003a30210009c000004210000613d000003a40210009c000004560000613d000003a50110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b0000000802000039000000000202041a000000000221004b000005190000813d0e050ded0000040f0000000302200210000000000101041a000000000121022f000000ff0220008c0000000001002019000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e000003940210009c0000047c0000613d000003950210009c000004b00000613d000003960110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000201043b0000038701200197000003870220009c0000007b0000213d0000000a02000039000000000202041a00000387022001970000000003000411000000000232004b000005080000c13d0000000c02000039000000000302041a0000038d03300197000000000313019f000000000032041b000000400200043d000000000012043500000383010000410000000003000414000003830430009c0000000003018019000003830420009c00000000010240190000004001100210000000c002300210000000000112019f0000038c011001c70000800d020000390000000103000039000003af040000410e050dfb0000040f0000000101200190000004030000c13d0000007b0000013d000000400700043d000003880170009c000000480000213d0000004001700039000000400010043f0000001501000039000000000917043600000389010000410000000000190435000000400500043d000003880150009c000000480000213d0000004001500039000000400010043f000000030100003900000000041504360000038a01000041000000000014043500000000060704330000038b0160009c000000480000213d000000000100041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000002370000c13d000000200130008c000600000005001d000700000008001d000500000004001d000001e60000413d000100000003001d000200000009001d000300000007001d000400000006001d000000000000043500000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038c011001c700008010020000390e050e000000040f000000070800002900000001022001900000007b0000613d00000004060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000605000029000000050400002900000003070000290000000209000029000001e60000813d000000000002041b0000000102200039000000000312004b000001e20000413d0000001f0160008c000005390000a13d000300000007001d000400000006001d000000000000043500000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038c011001c700008010020000390e050e000000040f000000070800002900000001022001900000007b0000613d000000040600002900000000038601700000002002000039000000000101043b0000000307000029000002060000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001fe0000413d000000000363004b0000000605000029000002120000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010100003900000001026002100000000504000029000005430000013d000003ad0210009c000004e30000613d000003ae0110009c0000007b0000c13d0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d000000000300041a000000010430019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f00000001022001900000052e0000613d000003c00100004100000000001004350000002201000039000000040010043f000003b70100004100000e07000104300000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b0e0509600000040f0000038701100197000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000400310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002010003670000000402100370000000000202043b000800000002001d000003870220009c0000007b0000213d0000002401100370000000000101043b000700000001001d00000000001004350000000201000039000600000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a0000038701100198000006250000c13d000000400100043d0000004402100039000003cf030000410000000000320435000000240210003900000018030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e07000104300000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b0e05093a0000040f0000038701100197000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b000800000001001d000003870110009c0000007b0000213d0000000b01000039000000000301041a0000000102300039000000000021041b000000400200043d000003be0120009c000000480000213d0000002001200039000000400010043f00000000000204350000000801000029000000000110004c0000063d0000c13d000000400100043d0000004402100039000003c3030000410000000000320435000003b2020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e07000104300000000001000416000000000110004c0000007b0000c13d00000000010000310e0508e30000040f000800000001001d000700000002001d0000000002030019000600000002001d00000000010004110e0509d30000040f0e0509990000040f0000000801000029000000070200002900000006030000290e050a490000040f000000000100001900000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000400310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002010003670000000402100370000000000202043b000800000002001d000003870220009c0000007b0000213d0000002401100370000000000201043b0000000803000029000000000130004c000005da0000c13d000000400100043d0000006402100039000003c80300004100000000003204350000004402100039000003c9030000410000000000320435000000240210003900000029030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e07000104300000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000400310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002010003670000000402100370000000000202043b000800000002001d000003870220009c0000007b0000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000700000002001d000000000112004b0000007b0000c13d00000000020004110000000801000029000000000112004b000006cf0000c13d000000400100043d0000004402100039000003bb030000410000000000320435000000240210003900000019030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e07000104300000000001000416000000000110004c0000007b0000c13d0000000001000031000000040210008a0000038603000041000000800420008c000000000400001900000000040340190000038602200197000000000520004c000000000300a019000003860220009c00000000020400190000000002036019000000000220004c0000007b0000c13d00000002020003670000000403200370000000000303043b000800000003001d000003870330009c0000007b0000213d0000002403200370000000000303043b000700000003001d000003870330009c0000007b0000213d0000004403200370000000000903043b0000006403200370000000000303043b0000038b0430009c0000007b0000213d00000023043000390000038605000041000000000614004b0000000006000019000000000605801900000386011001970000038604400197000000000714004b0000000005008019000000000114013f000003860110009c00000000010600190000000001056019000000000110004c0000007b0000c13d0000000401300039000000000112034f000000000101043b0000038b0210009c000000480000213d0000003f02100039000000200400008a000000000242016f000000400600043d0000000002260019000000000462004b000000000400001900000001040040390000038b0520009c000000480000213d0000000104400190000000480000c13d000000400020043f000600000006001d0000000002160436000000240430003900000000034100190000000005000031000000000353004b0000007b0000213d0000001f0310018f00000002044003670000000505100272000003bb0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000003b30000413d000000000630004c000003ca0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000001120019000000000001043500000000010004110000000002090019000500000002001d0e0509d30000040f0e0509990000040f0000000801000029000000070200002900000005030000290e050a490000040f00000008010000290000000702000029000000050300002900000006040000290e050d000000040f0e0509be0000040f000000000100001900000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d0000000a01000039000000000201041a00000387032001970000000005000411000000000353004b000005080000c13d0000038d02200197000000000021041b00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d0200003900000003030000390000038f0400004100000000060000190e050dfb0000040f00000001012001900000007b0000613d000000000100001900000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000000310004c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d0000000a01000039000000000101041a0000038701100197000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000600310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002010003670000000402100370000000000202043b000800000002001d000003870220009c0000007b0000213d0000002402100370000000000202043b000700000002001d000003870220009c0000007b0000213d000000400300043d000003be0230009c000000480000213d0000004401100370000000000201043b000600000002001d0000002001300039000000400010043f00000000000304350000000001000411000500000003001d0e0509d30000040f0e0509990000040f0000000801000029000000070200002900000006030000290e050a490000040f00000008010000290000000702000029000000060300002900000005040000290e050d000000040f0e0509be0000040f000000000100001900000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000400310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002020003670000000401200370000000000101043b000003870310009c0000007b0000213d0000002402200370000000000202043b000800000002001d0e0509110000040f0000000802000029000000000112004b00000000010000190000000101004039000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000400310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000002020003670000000401200370000000000101043b000003870310009c0000007b0000213d0000002402200370000000000202043b000800000002001d000003870220009c0000007b0000213d00000000001004350000000501000039000000200010043f0000004002000039000700000002001d00000000010000190e0508ba0000040f00000008020000290000000000200435000000200010043f000000000100001900000007020000290e0508ba0000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000601043b000003870160009c0000007b0000213d0000000a01000039000000000201041a00000387032001970000000005000411000000000353004b000005080000c13d000000000360004c000007070000c13d000000400100043d0000006402100039000003b00300004100000000003204350000004402100039000003b1030000410000000000320435000000240210003900000026030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e07000104300000000001000416000000000110004c0000007b0000c13d000000040100008a00000000011000310000038602000041000000200310008c000000000300001900000000030240190000038601100197000000000410004c000000000200a019000003860110009c00000000010300190000000001026019000000000110004c0000007b0000c13d00000004010000390000000201100367000000000101043b000003d102100197000000000221004b0000007b0000c13d0000000102000039000003d20310009c000005040000613d000003d30310009c000005040000613d000003d40310009c000005040000613d000003d50110009c00000000020000190000000102006039000000010120018f000000800010043f000003d60100004100000e060001042e000000400100043d0000004402100039000003bd030000410000000000320435000003b2020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e0700010430000000400100043d0000006402100039000003c40300004100000000003204350000004402100039000003c503000041000000000032043500000024021000390000002c030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000000400100043d0000000002710436000000000440004c000006040000c13d000001000400008a000000000343016f0000000000320435000000000270004c00000020030000390000000003006019000006110000013d000000000160004c00000000010000190000053d0000613d00000000010904330000000302600210000000010300008a000000000223022f000000000232013f000000000221016f0000000101600210000000000112019f000000000010041b00000000060504330000038b0160009c000000480000213d0000000105000039000000000105041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000002370000c13d000000200130008c000005790000413d000200000003001d000400000006001d000300000005001d0000000101000039000000000010043500000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038c011001c700008010020000390e050e000000040f000000070800002900000001022001900000007b0000613d00000004060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000005040000290000000305000029000005790000813d000000000002041b0000000102200039000000000312004b000005750000413d0000001f0160008c0000080d0000a13d000400000006001d000300000005001d000000000050043500000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038c011001c700008010020000390e050e000000040f000000010220019000000007020000290000007b0000613d000000040300002900000000032301700000002002000039000000000101043b0000000606000029000005990000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000005910000413d0000000405000029000000000353004b000005a60000813d0000000303500210000000f80330018f000000010400008a000000000334022f000000000343013f000000060400002900000000024200190000000002020433000000000232016f000000000021041b000000010150021000000003050000290000000002050019000008170000013d0000000c01000039000000000201041a000000400800043d000003b601000041000000000018043500000004018000390000000803000029000000000031043500000000010004140000038702200197000000040320008c000007170000c13d000000030100036700000001030000310000072a0000013d0000000000400435000000000370004c0000000003000019000005c60000613d000003bc0400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000005bf0000413d0000002002300039000800000001001d0e0508fe0000040f0000002001000039000000400200043d000700000002001d000000000212043600000008010000290e0508d00000040f000000070400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e060001042e000700000002001d00000000003004350000000301000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a0000000703000029000000000113004b000007d20000813d000000080100002900000000001004350000000601000039000000200010043f0000004002000039000800000002001d00000000010000190e0508ba0000040f00000007020000290000000000200435000000200010043f000000000100001900000008020000290e0508ba0000040f000000000101041a000000400200043d00000000001204350000038301000041000003830320009c00000000010240190000004001100210000003b4011001c700000e060001042e0000000000000435000000000370004c0000000003000019000006110000613d000003d00400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000060a0000413d0000002002300039000800000001001d0e0508fe0000040f0000002001000039000000400200043d000700000002001d000000000212043600000008010000290e0508d00000040f000000070400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e060001042e0000000802000029000000000212004b000007990000c13d000000400100043d0000006402100039000003cd0300004100000000003204350000004402100039000003ce030000410000000000320435000000240210003900000021030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000500000002001d000700000003001d00000000003004350000000201000039000600000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a0000038701100198000008700000c13d0000000801000039000300000001001d000000000101041a000400000001001d000000070100002900000000001004350000000901000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b0000000402000029000000000021041b0000038b0120009c000000480000213d000000040200002900000001012000390000000303000029000000000013041b000000000103041a000000000121004b000008820000a13d000000030100002900000000001004350000000401000029000003c1011000410000000702000029000000000021041b000000080100002900000000001004350000000301000039000400000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a000300000001001d000000080100002900000000001004350000000601000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b00000003020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b0000000702000029000000000021041b00000000002004350000000701000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b0000000302000029000000000021041b000000080100002900000000001004350000000401000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000201041a000000010300008a000000000332004b000008880000c13d000003c00100004100000000001004350000001101000039000000040010043f000003b70100004100000e0700010430000600000002001d00000000002004350000000501000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b00000008020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000703000029000000000232019f000000000021041b000000400100043d000000000031043500000383020000410000000003000414000003830430009c0000000003028019000003830410009c00000000010280190000004001100210000000c002300210000000000112019f0000038c011001c70000800d020000390000000303000039000003ba04000041000000060500002900000008060000290e050dfb0000040f0000000101200190000004030000c13d0000007b0000013d0000038d02200197000000000262019f000000000021041b00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d0200003900000003030000390000038f040000410e050dfb0000040f0000000101200190000004030000c13d0000007b0000013d0000038303000041000003830410009c0000000001038019000003830480009c00000000030840190000004003300210000000c001100210000000000131019f000003b7011001c7000800000008001d0e050e000000040f000000080800002900000000030100190000006003300270000103830030019d000003830330019700030000000103550000000102200190000007e70000613d0000001f0230018f0000000504300272000007360000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000072e0000413d000000000520004c000007450000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f01300039000000200200008a000000000421016f0000000001840019000000000441004b000000000400001900000001040040390000038b0510009c000000480000213d0000000104400190000000480000c13d0000038604000041000000200530008c000000000500001900000000050440190000038606300197000000000760004c000000000400a019000003860660009c000000000405c019000000400010043f000000000440004c0000007b0000c13d00000000040804330000038b0540009c0000007b0000213d000000000583001900000000038400190000001f043000390000038606000041000000000754004b0000000007000019000000000706801900000386044001970000038608500197000000000984004b0000000006008019000000000484013f000003860440009c00000000040700190000000004066019000000000440004c0000007b0000c13d00000000430304340000038b0630009c000000480000213d0000003f06300039000000000226016f00000000021200190000038b0620009c000000480000213d000000400020043f00000000023104360000000006430019000000000556004b0000007b0000213d000000000530004c000007870000613d000000000500001900000000062500190000000007450019000000000707043300000000007604350000002005500039000000000635004b000007800000413d000000000223001900000000000204350000002002000039000000400300043d000800000003001d00000000022304360e0508d00000040f000000080400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e060001042e0000000002000411000500000002001d000000000212004b0000083c0000c13d000000070100002900000000001004350000000401000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000201041a0000038d022001970000000803000029000000000232019f000000000021041b000000070100002900000000001004350000000601000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a0000038705100198000002870000613d00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d020000390000000403000039000003cc04000041000000080600002900000007070000290e050dfb0000040f00000001012001900000007b0000613d000004030000013d000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003c703000041000000000032043500000024021000390000002b030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000000400200043d0000001f0430018f0000000503300272000007f40000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000007ec0000413d000000000540004c000008030000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000383010000410000000103000031000003830430009c0000000003018019000003830420009c000000000102401900000040011002100000006002300210000000000112019f00000e0700010430000000000160004c0000000001000019000008110000613d00000000010404330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f000000000015041b0000000a01000039000000000201041a0000038d032001970000000006000411000000000363019f000000000031041b00000383010000410000000003000414000003830430009c0000000001034019000000c0011002100000038e011001c700000387052001970000800d0200003900000003030000390000038f040000410e050dfb0000040f00000001012001900000007b0000613d000000080100002900000387011001970000000c02000039000000000302041a0000038d03300197000000000113019f000000000012041b0000000b01000039000000000201041a0000000102200039000000000021041b000000200100003900000100001004430000012000000443000003900100004100000e060001042e00000000001004350000000501000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b00000005020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000101041a000000ff011001900000079d0000c13d000000400100043d0000006402100039000003ca0300004100000000003204350000004402100039000003cb03000041000000000032043500000024021000390000003e030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000000400100043d0000004402100039000003bf03000041000000000032043500000024021000390000001c030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e0700010430000003c00100004100000000001004350000003201000039000000040010043f000003b70100004100000e07000104300000000102200039000000000021041b000000070100002900000000001004350000000601000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000007b0000613d000000000101043b000000000201041a0000038d022001970000000806000029000000000262019f000000000021041b00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d020000390000000403000039000003c204000041000000000500001900000007070000290e050dfb0000040f00000001012001900000007b0000613d0000000801000029000000070200002900000005030000290e050c160000040f0e0509be0000040f000000400100043d000000070200002900000000002104350000038302000041000003830310009c00000000010280190000004001100210000003b4011001c700000e060001042e0000038303000041000003830410009c00000000010380190000004001100210000003830420009c00000000020380190000006002200210000000000112019f0000000002000414000003830420009c0000000002038019000000c002200210000000000112019f0000038e011001c700008010020000390e050e000000040f0000000102200190000008ce0000613d000000000101043b000000000001042d000000000100001900000e070001043000000000030104330000000002320436000000000430004c000008dc0000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b000008d50000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d000000040110008a00000386020000410000005f0310008c000000000300001900000000030220190000038601100197000000000410004c0000000002008019000003860110009c00000000010300190000000001026019000000000110004c000008fc0000613d00000002030003670000000401300370000000000101043b000003870210009c000008fc0000213d0000002402300370000000000202043b000003870420009c000008fc0000213d0000004403300370000000000303043b000000000001042d000000000100001900000e07000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000038b0310009c0000090b0000213d00000001022001900000090b0000c13d000000400010043f000000000001042d000003c00100004100000000001004350000004101000039000000040010043f000003b70100004100000e07000104300000038701100198000009230000613d00000000001004350000000301000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f0000000102200190000009380000613d000000000101043b000000000101041a000000000001042d000000400100043d0000006402100039000003c80300004100000000003204350000004402100039000003c9030000410000000000320435000000240210003900000029030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000000000100001900000e070001043000000000001004350000000201000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f00000001022001900000094c0000613d000000000101043b000000000101041a00000387011001980000094e0000613d000000000001042d000000000100001900000e0700010430000000400100043d0000004402100039000003cf030000410000000000320435000000240210003900000018030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e07000104300001000000000002000100000001001d00000000001004350000000201000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f0000000102200190000009850000613d000000000101043b000000000101041a0000038701100198000009870000613d000000010100002900000000001004350000000401000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f0000000102200190000009850000613d000000000101043b000000000101041a0000038701100197000000000001042d000000000100001900000e0700010430000000400100043d0000004402100039000003cf030000410000000000320435000000240210003900000018030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e0700010430000000000110004c0000099c0000613d000000000001042d000000400100043d0000006402100039000003d70300004100000000003204350000004402100039000003d803000041000000000032043500000024021000390000002e030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e07000104300000006002100039000003d90300004100000000003204350000004002100039000003da030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000110004c000009c20000613d000000000001042d000000400200043d000100000002001d000003b201000041000000000012043500000004012000390e0509b10000040f000000010400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e07000104300003000000000002000300000001001d000200000002001d00000000002004350000000201000039000100000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000a350000613d000000000101043b000000000101041a000003870210019800000a370000613d000000010100003900000003030000290000038703300197000300000003001d000000000323004b00000a340000613d00000000002004350000000501000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000a350000613d000000000101043b00000003020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000a350000613d000000000101043b000000000101041a000000ff0110019000000a340000c13d000000020100002900000000001004350000000101000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000a350000613d000000000101043b000000000101041a000003870110019800000a370000613d000000020100002900000000001004350000000401000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000a350000613d000000000101043b000000000101041a00000387011001970000000302000029000000000121004b00000000010000190000000101006039000000000001042d000000000100001900000e0700010430000000400100043d0000004402100039000003cf030000410000000000320435000000240210003900000018030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e07000104300009000000000002000500000002001d000700000001001d000900000003001d00000000003004350000000201000039000600000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000101041a0000038701100198000800000001001d00000bda0000613d000000070100002900000387011001970000000802000029000000000112004b00000bec0000c13d0000000501000029000003870310019800000c010000613d000000000132004b000700000003001d00000b110000613d00000000002004350000000301000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000101041a000500000001001d000000000110004c00000bd40000613d000000090100002900000000001004350000000701000039000400000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d0000000502000029000000010220008a000000000101043b000000000301041a000500000002001d000000000123004b00000ae30000613d000300000003001d000000080100002900000000001004350000000601000039000200000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b00000005020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000101041a000100000001001d000000080100002900000000001004350000000201000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b00000003020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b0000000102000029000000000021041b00000000002004350000000401000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b0000000302000029000000000021041b0000000901000029000000000010043500000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000001041b000000080100002900000000001004350000000601000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b00000005020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000001041b00000008020000290000000703000029000000000123004b00000b530000613d000000070100002900000000001004350000000301000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000101041a000500000001001d000000070100002900000000001004350000000601000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b00000005020000290000000000200435000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b0000000902000029000000000021041b00000000002004350000000701000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b0000000502000029000000000021041b000000090100002900000000001004350000000401000039000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000201041a0000038d02200197000000000021041b000000090100002900000000001004350000000601000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000101041a000003870510019800000bda0000613d00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d020000390000000403000039000003cc04000041000000000600001900000009070000290e050dfb0000040f000000010120019000000bd20000613d000000080100002900000000001004350000000301000039000500000001001d000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000201041a000000000320004c00000bd40000613d000000010220008a000000000021041b000000070100002900000000001004350000000501000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000201041a000000010300008a000000000332004b00000bd40000613d0000000102200039000000000021041b000000090100002900000000001004350000000601000029000000200010043f00000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003b5011001c700008010020000390e050e000000040f000000010220019000000bd20000613d000000000101043b000000000201041a0000038d022001970000000706000029000000000262019f000000000021041b00000383010000410000000002000414000003830320009c0000000001024019000000c0011002100000038e011001c70000800d020000390000000403000039000003c204000041000000080500002900000009070000290e050dfb0000040f000000010120019000000bd20000613d000000000001042d000000000100001900000e0700010430000003c00100004100000000001004350000001101000039000000040010043f000003b70100004100000e0700010430000000400100043d0000004402100039000003cf030000410000000000320435000000240210003900000018030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b9011001c700000e0700010430000000400100043d0000006402100039000003db0300004100000000003204350000004402100039000003dc030000410000000000320435000000240210003900000025030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e0700010430000000400100043d0000006402100039000003dd0300004100000000003204350000004402100039000003de030000410000000000320435000000240210003900000024030000390000000000320435000003b20200004100000000002104350000000402100039000000200300003900000000003204350000038302000041000003830310009c00000000010280190000004001100210000003b3011001c700000e07000104300005000000000002000300000003001d000100000002001d000003df020000410000000000200439000200000001001d000000040010044300000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003e0011001c700008002020000390e050e000000040f000000000301034f000000010120019000000cad0000613d0000000101000039000000000203043b000000000220004c00000cac0000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a0003900000001020000290000000000210435000003e10100004100000000001a04350000000401a00039000000000200041100000000002104350000002401a0003900000000000104350000000001000414000000030800002900000000030804330000008402a000390000000000320435000000a404a0003900000002020000290000038702200197000000000530004c00000c4c0000613d000000000500001900000000064500190000002005500039000000000785001900000000070704330000000000760435000000000635004b00000c450000413d00000000044300190000000000040435000000040420008c00000c590000c13d0000000001000415000000050110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000500000000001d00000c960000013d0000001f03300039000000200400008a000000000343016f00000383040000410000038305a0009c000000000504001900000000050a40190000004005500210000000a403300039000003830630009c00000000030480190000006003300210000000000353019f000003830510009c0000000001048019000000c001100210000000000113019f00030000000a001d0e050dfb0000040f000000030a000029000000000301001900000060033002700000038303300197000000200430008c000000200400003900000000040340190000001f0540018f000000050640027200000c7f0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00000c770000413d000000000750004c00000c8e0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000040110008a00000020011000c9000400000000001d000000010220019000000caf0000613d0000001f02400039000000600420018f0000000002a40019000000000442004b000000000400001900000001040040390000038b0520009c00000cf10000213d000000010440019000000cf10000c13d000000400020043f000000200230008c00000cad0000413d00000000020a0433000003d103200197000000000332004b00000cad0000c13d000000200110011a000000000102001f000003e10120009c00000000010000190000000101006039000000000001042d000000000100001900000e07000104300000006001000039000000000230004c00000cc60000c13d0000000021010434000000000310004c00000cf70000c13d000000400200043d000300000002001d000003b201000041000000000012043500000004012000390e0509b10000040f000000030400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e07000104300000003f01300039000003e202100197000000400100043d0000000002210019000000000412004b000000000400001900000001040040390000038b0520009c00000cf10000213d000000010440019000000cf10000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f000000050550027200000ce10000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000cd90000413d000000000640004c00000cb20000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000cb20000013d000003c00100004100000000001004350000004101000039000000040010043f000003b70100004100000e07000104300000038303000041000003830420009c0000000002038019000003830410009c000000000103801900000060011002100000004002200210000000000121019f00000e07000104300006000000000002000400000004001d000200000003001d000100000001001d000003df010000410000000000100439000300000002001d000000040020044300000383010000410000000002000414000003830320009c0000000001024019000000c001100210000003e0011001c700008002020000390e050e000000040f000000000301034f000000010120019000000d9a0000613d0000000101000039000000000203043b000000000220004c00000d990000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a0003900000002020000290000000000210435000000010100002900000387011001970000002402a000390000000000120435000003e10100004100000000001a04350000000401a00039000000000200041100000000002104350000000001000414000000040800002900000000030804330000008402a000390000000000320435000000a404a0003900000003020000290000038702200197000000000530004c00000d390000613d000000000500001900000000064500190000002005500039000000000785001900000000070704330000000000760435000000000635004b00000d320000413d00000000044300190000000000040435000000040420008c00000d460000c13d0000000001000415000000060110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000600000000001d00000d830000013d0000001f03300039000000200400008a000000000343016f00000383040000410000038305a0009c000000000504001900000000050a40190000004005500210000000a403300039000003830630009c00000000030480190000006003300210000000000353019f000003830510009c0000000001048019000000c001100210000000000113019f00040000000a001d0e050dfb0000040f000000040a000029000000000301001900000060033002700000038303300197000000200430008c000000200400003900000000040340190000001f0540018f000000050640027200000d6c0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00000d640000413d000000000750004c00000d7b0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000050110008a00000020011000c9000500000000001d000000010220019000000d9c0000613d0000001f02400039000000600420018f0000000002a40019000000000442004b000000000400001900000001040040390000038b0520009c00000dde0000213d000000010440019000000dde0000c13d000000400020043f000000200230008c00000d9a0000413d00000000020a0433000003d103200197000000000332004b00000d9a0000c13d000000200110011a000000000102001f000003e10120009c00000000010000190000000101006039000000000001042d000000000100001900000e07000104300000006001000039000000000230004c00000db30000c13d0000000021010434000000000310004c00000de40000c13d000000400200043d000400000002001d000003b201000041000000000012043500000004012000390e0509b10000040f000000040400002900000000014100490000038302000041000003830310009c0000000001028019000003830340009c000000000204401900000040022002100000006001100210000000000121019f00000e07000104300000003f01300039000003e202100197000000400100043d0000000002210019000000000412004b000000000400001900000001040040390000038b0520009c00000dde0000213d000000010440019000000dde0000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f000000050550027200000dce0000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000dc60000413d000000000640004c00000d9f0000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000d9f0000013d000003c00100004100000000001004350000004101000039000000040010043f000003b70100004100000e07000104300000038303000041000003830420009c0000000002038019000003830410009c000000000103801900000060011002100000004002200210000000000121019f00000e07000104300000000802000039000000000302041a000000000313004b00000df50000a13d0000000000200435000003c1011000410000000002000019000000000001042d000003c00100004100000000001004350000003201000039000000040010043f000003b70100004100000e070001043000000dfe002104210000000102000039000000000001042d0000000002000019000000000001042d00000e03002104230000000102000039000000000001042d0000000002000019000000000001042d00000e050000043200000e060001042e00000e0700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4d6176657269636b20506f736974696f6e204e465400000000000000000000004d504e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f3cb838500000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000006a6278420000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000048fd65fe000000000000000000000000000000000000000000000000000000004f6ccce70000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002f745c5900000000000000000000000000000000000000000000000000000000392f37e900000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde031e78374720f7ac1595d75f11f10ccc953103fcfd8adc75a397585edd2cf8e7cf64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000c87b56dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000496e76616c696420546f6b656e20494400000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000ffffffffffffffdf4552433732313a20746f6b656e20616c7265616479206d696e746564000000004e487b7100000000000000000000000000000000000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a206d696e7420746f20746865207a65726f20616464726573737574206f6620626f756e64730000000000000000000000000000000000000000455243373231456e756d657261626c653a20676c6f62616c20696e646578206f74206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f756c6964206f776e657200000000000000000000000000000000000000000000004552433732313a2061646472657373207a65726f206973206e6f7420612076616b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e654552433732313a20696e76616c696420746f6b656e2049440000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563ffffffff000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000072206e6f7220617070726f7665640000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6563656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152656f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164641806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe00000000000000000000000000000000000000000000000000000000000000000f0a7edcd7197bd16c50c8d92a41f6ba418468b9ad0f7dd8ee17c714adeffb297
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000a07a5d6ffb4c690e27cd14533d783f1f0d2db400
-----Decoded View---------------
Arg [0] : _metadata (address): 0xa07a5d6ffb4c690e27cd14533D783f1F0d2db400
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.