Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
888 Octo
Holders
329
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 OctoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OctoHedz
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; // Inspired/Copied from DystoPunks V2 (dystopunksv2.com) contract OctoHedz is Ownable, ERC721Enumerable { uint public constant MAX_SOCTOS = 888; bool public hasSaleStarted = false; string private _baseTokenURI; string private _baseContractURI; uint256 private _price = 0.07 ether; constructor(string memory baseTokenURI, string memory baseContractURI) ERC721("OctoHedz","Octo") { setBaseURI(baseTokenURI); _baseContractURI = baseContractURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId))); } function contractURI() public view returns (string memory) { return _baseContractURI; } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function Price() public view returns (uint256) { require(hasSaleStarted == true, "Invasion hasn't started"); require(totalSupply() < MAX_SOCTOS, "Invasion has ended"); return _price; } function getOctoHedz(uint256 numOctoHedz) public payable { require(totalSupply() < MAX_SOCTOS, "Invasion has already ended"); require(numOctoHedz > 0 && numOctoHedz <= 5, "You can mint minimum 1, maximum 5 OctoHedz"); require(totalSupply()+numOctoHedz <= MAX_SOCTOS, "Exceeds MAX_SOCTOS"); require(msg.value >= Price() * numOctoHedz, "Ether value sent is below the price"); for (uint i = 0; i < numOctoHedz; i++) { uint mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } function startSale() public onlyOwner { hasSaleStarted = true; } function pauseSale() public onlyOwner { hasSaleStarted = false; } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function reserveAirdrop(uint256 numOctoHedz) public onlyOwner { uint currentSupply = totalSupply(); require(totalSupply() + numOctoHedz <= 50, "Exceeded airdrop supply"); require(hasSaleStarted == false, "Sale has already started"); uint256 index; // Reserved for airdrops and giveaways for (index = 0; index < numOctoHedz; index++) { _safeMint(owner(), currentSupply + index); } } function octosTokenBalance(address tokenContractAddress) private view returns(uint) { ERC721 token = ERC721(tokenContractAddress); // token is cast as type ERC721, so it's a contract return token.balanceOf(msg.sender); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"baseContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SOCTOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"numOctoHedz","type":"uint256"}],"name":"getOctoHedz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOctoHedz","type":"uint256"}],"name":"reserveAirdrop","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600b60006101000a81548160ff02191690831515021790555066f8b0a10e470000600e553480156200003757600080fd5b5060405162004a9338038062004a9383398181016040528101906200005d919062000411565b6040518060400160405280600881526020017f4f63746f4865647a0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f63746f00000000000000000000000000000000000000000000000000000000815250620000e9620000dd6200014f60201b60201c565b6200015760201b60201c565b816001908051906020019062000101929190620002ef565b5080600290805190602001906200011a929190620002ef565b5050506200012e826200021b60201b60201c565b80600d908051906020019062000146929190620002ef565b50505062000677565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022b6200014f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000251620002c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a190620004ab565b60405180910390fd5b80600c9080519060200190620002c2929190620002ef565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fd9062000573565b90600052602060002090601f0160209004810192826200032157600085556200036d565b82601f106200033c57805160ff19168380011785556200036d565b828001600101855582156200036d579182015b828111156200036c5782518255916020019190600101906200034f565b5b5090506200037c919062000380565b5090565b5b808211156200039b57600081600090555060010162000381565b5090565b6000620003b6620003b084620004f6565b620004cd565b905082815260208101848484011115620003cf57600080fd5b620003dc8482856200053d565b509392505050565b600082601f830112620003f657600080fd5b8151620004088482602086016200039f565b91505092915050565b600080604083850312156200042557600080fd5b600083015167ffffffffffffffff8111156200044057600080fd5b6200044e85828601620003e4565b925050602083015167ffffffffffffffff8111156200046c57600080fd5b6200047a85828601620003e4565b9150509250929050565b6000620004936020836200052c565b9150620004a0826200064e565b602082019050919050565b60006020820190508181036000830152620004c68162000484565b9050919050565b6000620004d9620004ec565b9050620004e78282620005a9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051457620005136200060e565b5b6200051f826200063d565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200055d57808201518184015260208101905062000540565b838111156200056d576000848401525b50505050565b600060028204905060018216806200058c57607f821691505b60208210811415620005a357620005a2620005df565b5b50919050565b620005b4826200063d565b810181811067ffffffffffffffff82111715620005d657620005d56200060e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61440c80620006876000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f75780639dfde20111610095578063c87b56dd11610064578063c87b56dd14610634578063e8a3d48514610671578063e985e9c51461069c578063f2fde38b146106d9576101cd565b80639dfde201146105a0578063a22cb465146105cb578063b66a0e5d146105f4578063b88d4fde1461060b576101cd565b80638462151c116100d15780638462151c14610503578063853828b6146105405780638da5cb5b1461054a57806395d89b4114610575576101cd565b80636352211e1461047257806370a08231146104af578063715018a6146104ec576101cd565b80631c8b232d1161016f5780634a3cd6881161013e5780634a3cd688146103cc5780634f6ccce7146103f557806355367ba91461043257806355f804b314610449576101cd565b80631c8b232d1461031257806323b872dd1461033d5780632f745c591461036657806342842e0e146103a3576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631b123aab146102cb5780631bf01bf8146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e92565b610702565b604051610206919061353a565b60405180910390f35b34801561021b57600080fd5b5061022461077c565b6040516102319190613555565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f25565b61080e565b60405161026e91906134b1565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e56565b610893565b005b3480156102ac57600080fd5b506102b56109ab565b6040516102c29190613897565b60405180910390f35b6102e560048036038101906102e09190612f25565b6109b8565b005b3480156102f357600080fd5b506102fc610b38565b6040516103099190613897565b60405180910390f35b34801561031e57600080fd5b50610327610b3e565b604051610334919061353a565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190612d50565b610b51565b005b34801561037257600080fd5b5061038d60048036038101906103889190612e56565b610bb1565b60405161039a9190613897565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190612d50565b610c56565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612f25565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612f25565b610de9565b6040516104299190613897565b60405180910390f35b34801561043e57600080fd5b50610447610e80565b005b34801561045557600080fd5b50610470600480360381019061046b9190612ee4565b610f19565b005b34801561047e57600080fd5b5061049960048036038101906104949190612f25565b610faf565b6040516104a691906134b1565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612ceb565b611061565b6040516104e39190613897565b60405180910390f35b3480156104f857600080fd5b50610501611119565b005b34801561050f57600080fd5b5061052a60048036038101906105259190612ceb565b6111a1565b6040516105379190613518565b60405180910390f35b61054861131d565b005b34801561055657600080fd5b5061055f6113d9565b60405161056c91906134b1565b60405180910390f35b34801561058157600080fd5b5061058a611402565b6040516105979190613555565b60405180910390f35b3480156105ac57600080fd5b506105b5611494565b6040516105c29190613897565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612e1a565b61153f565b005b34801561060057600080fd5b506106096116c0565b005b34801561061757600080fd5b50610632600480360381019061062d9190612d9f565b611759565b005b34801561064057600080fd5b5061065b60048036038101906106569190612f25565b6117bb565b6040516106689190613555565b60405180910390f35b34801561067d57600080fd5b506106866117ef565b6040516106939190613555565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612d14565b611881565b6040516106d0919061353a565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612ceb565b611915565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610775575061077482611a0d565b5b9050919050565b60606001805461078b90613b95565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790613b95565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081982611aef565b610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f906137b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089e82610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690613817565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092e611b5b565b73ffffffffffffffffffffffffffffffffffffffff16148061095d575061095c81610957611b5b565b611881565b5b61099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906136b7565b60405180910390fd5b6109a68383611b63565b505050565b6000600980549050905090565b6103786109c36109ab565b10610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90613717565b60405180910390fd5b600081118015610a14575060058111155b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613677565b60405180910390fd5b61037881610a5f6109ab565b610a6991906139ca565b1115610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613857565b60405180910390fd5b80610ab3611494565b610abd9190613a51565b341015610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613757565b60405180910390fd5b60005b81811015610b34576000610b146109ab565b9050610b203382611c1c565b508080610b2c90613bf8565b915050610b02565b5050565b61037881565b600b60009054906101000a900460ff1681565b610b62610b5c611b5b565b82611c3a565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613837565b60405180910390fd5b610bac838383611d18565b505050565b6000610bbc83611061565b8210610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613597565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c7183838360405180602001604052806000815250611759565b505050565b610c7e611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610c9c6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce9906137d7565b60405180910390fd5b6000610cfc6109ab565b9050603282610d096109ab565b610d1391906139ca565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613577565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613737565b60405180910390fd5b60005b82811015610de457610dd1610dc06113d9565b8284610dcc91906139ca565b611c1c565b8080610ddc90613bf8565b915050610dad565b505050565b6000610df36109ab565b8210610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613877565b60405180910390fd5b60098281548110610e6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e88611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610ea66113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906137d7565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610f21611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906137d7565b60405180910390fd5b80600c9080519060200190610fab929190612b0f565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906136f7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906136d7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611b5b565b73ffffffffffffffffffffffffffffffffffffffff1661113f6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906137d7565b60405180910390fd5b61119f6000611f74565b565b606060006111ae83611061565b9050600081141561123157600067ffffffffffffffff8111156111fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112285781602001602082028036833780820191505090505b50915050611318565b60008167ffffffffffffffff811115611273577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112a15781602001602082028036833780820191505090505b50905060005b82811015611311576112b98582610bb1565b8282815181106112f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061130990613bf8565b9150506112a7565b8193505050505b919050565b611325611b5b565b73ffffffffffffffffffffffffffffffffffffffff166113436113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906137d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506113d757600080fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461141190613b95565b80601f016020809104026020016040519081016040528092919081815260200182805461143d90613b95565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b5050505050905090565b600060011515600b60009054906101000a900460ff161515146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613777565b60405180910390fd5b6103786114f76109ab565b10611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613617565b60405180910390fd5b600e54905090565b611547611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613657565b60405180910390fd5b80600660006115c2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611b5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b4919061353a565b60405180910390a35050565b6116c8611b5b565b73ffffffffffffffffffffffffffffffffffffffff166116e66113d9565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906137d7565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b61176a611764611b5b565b83611c3a565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090613837565b60405180910390fd5b6117b584848484612038565b50505050565b6060600c6117c883612094565b6040516020016117d992919061348d565b6040516020818303038152906040529050919050565b6060600d80546117fe90613b95565b80601f016020809104026020016040519081016040528092919081815260200182805461182a90613b95565b80156118775780601f1061184c57610100808354040283529160200191611877565b820191906000526020600020905b81548152906001019060200180831161185a57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191d611b5b565b73ffffffffffffffffffffffffffffffffffffffff1661193b6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611988906137d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906135d7565b60405180910390fd5b611a0a81611f74565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ae85750611ae782612241565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd683610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c368282604051806020016040528060008152506122ab565b5050565b6000611c4582611aef565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613697565b60405180910390fd5b6000611c8f83610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cfe57508373ffffffffffffffffffffffffffffffffffffffff16611ce68461080e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0f5750611d0e8185611881565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3882610faf565b73ffffffffffffffffffffffffffffffffffffffff1614611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906137f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613637565b60405180910390fd5b611e09838383612306565b611e14600082611b63565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190613aab565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebb91906139ca565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612043848484611d18565b61204f8484848461241a565b61208e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612085906135b7565b60405180910390fd5b50505050565b606060008214156120dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223c565b600082905060005b6000821461210e5780806120f790613bf8565b915050600a826121079190613a20565b91506120e4565b60008167ffffffffffffffff811115612150577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121825781602001600182028036833780820191505090505b5090505b600085146122355760018261219b9190613aab565b9150600a856121aa9190613c41565b60306121b691906139ca565b60f81b8183815181106121f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222e9190613a20565b9450612186565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122b583836125b1565b6122c2600084848461241a565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f8906135b7565b60405180910390fd5b505050565b61231183838361277f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123545761234f81612784565b612393565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123925761239183826127cd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576123d18161293a565b612415565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612414576124138282612a7d565b5b5b505050565b600061243b8473ffffffffffffffffffffffffffffffffffffffff16612afc565b156125a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612464611b5b565b8786866040518563ffffffff1660e01b815260040161248694939291906134cc565b602060405180830381600087803b1580156124a057600080fd5b505af19250505080156124d157506040513d601f19601f820116820180604052508101906124ce9190612ebb565b60015b612554573d8060008114612501576040519150601f19603f3d011682016040523d82523d6000602084013e612506565b606091505b5060008151141561254c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612543906135b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261890613797565b60405180910390fd5b61262a81611aef565b1561266a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612661906135f7565b60405180910390fd5b61267660008383612306565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c691906139ca565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127da84611061565b6127e49190613aab565b90506000600860008481526020019081526020016000205490508181146128c9576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061294e9190613aab565b90506000600a60008481526020019081526020016000205490506000600983815481106129a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600983815481106129ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a8883611061565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612b1b90613b95565b90600052602060002090601f016020900481019282612b3d5760008555612b84565b82601f10612b5657805160ff1916838001178555612b84565b82800160010185558215612b84579182015b82811115612b83578251825591602001919060010190612b68565b5b509050612b919190612b95565b5090565b5b80821115612bae576000816000905550600101612b96565b5090565b6000612bc5612bc0846138d7565b6138b2565b905082815260208101848484011115612bdd57600080fd5b612be8848285613b53565b509392505050565b6000612c03612bfe84613908565b6138b2565b905082815260208101848484011115612c1b57600080fd5b612c26848285613b53565b509392505050565b600081359050612c3d8161437a565b92915050565b600081359050612c5281614391565b92915050565b600081359050612c67816143a8565b92915050565b600081519050612c7c816143a8565b92915050565b600082601f830112612c9357600080fd5b8135612ca3848260208601612bb2565b91505092915050565b600082601f830112612cbd57600080fd5b8135612ccd848260208601612bf0565b91505092915050565b600081359050612ce5816143bf565b92915050565b600060208284031215612cfd57600080fd5b6000612d0b84828501612c2e565b91505092915050565b60008060408385031215612d2757600080fd5b6000612d3585828601612c2e565b9250506020612d4685828601612c2e565b9150509250929050565b600080600060608486031215612d6557600080fd5b6000612d7386828701612c2e565b9350506020612d8486828701612c2e565b9250506040612d9586828701612cd6565b9150509250925092565b60008060008060808587031215612db557600080fd5b6000612dc387828801612c2e565b9450506020612dd487828801612c2e565b9350506040612de587828801612cd6565b925050606085013567ffffffffffffffff811115612e0257600080fd5b612e0e87828801612c82565b91505092959194509250565b60008060408385031215612e2d57600080fd5b6000612e3b85828601612c2e565b9250506020612e4c85828601612c43565b9150509250929050565b60008060408385031215612e6957600080fd5b6000612e7785828601612c2e565b9250506020612e8885828601612cd6565b9150509250929050565b600060208284031215612ea457600080fd5b6000612eb284828501612c58565b91505092915050565b600060208284031215612ecd57600080fd5b6000612edb84828501612c6d565b91505092915050565b600060208284031215612ef657600080fd5b600082013567ffffffffffffffff811115612f1057600080fd5b612f1c84828501612cac565b91505092915050565b600060208284031215612f3757600080fd5b6000612f4584828501612cd6565b91505092915050565b6000612f5a838361346f565b60208301905092915050565b612f6f81613adf565b82525050565b6000612f808261395e565b612f8a818561398c565b9350612f9583613939565b8060005b83811015612fc6578151612fad8882612f4e565b9750612fb88361397f565b925050600181019050612f99565b5085935050505092915050565b612fdc81613af1565b82525050565b6000612fed82613969565b612ff7818561399d565b9350613007818560208601613b62565b61301081613d2e565b840191505092915050565b600061302682613974565b61303081856139ae565b9350613040818560208601613b62565b61304981613d2e565b840191505092915050565b600061305f82613974565b61306981856139bf565b9350613079818560208601613b62565b80840191505092915050565b6000815461309281613b95565b61309c81866139bf565b945060018216600081146130b757600181146130c8576130fb565b60ff198316865281860193506130fb565b6130d185613949565b60005b838110156130f3578154818901526001820191506020810190506130d4565b838801955050505b50505092915050565b60006131116017836139ae565b915061311c82613d3f565b602082019050919050565b6000613134602b836139ae565b915061313f82613d68565b604082019050919050565b60006131576032836139ae565b915061316282613db7565b604082019050919050565b600061317a6026836139ae565b915061318582613e06565b604082019050919050565b600061319d601c836139ae565b91506131a882613e55565b602082019050919050565b60006131c06012836139ae565b91506131cb82613e7e565b602082019050919050565b60006131e36024836139ae565b91506131ee82613ea7565b604082019050919050565b60006132066019836139ae565b915061321182613ef6565b602082019050919050565b6000613229602a836139ae565b915061323482613f1f565b604082019050919050565b600061324c602c836139ae565b915061325782613f6e565b604082019050919050565b600061326f6038836139ae565b915061327a82613fbd565b604082019050919050565b6000613292602a836139ae565b915061329d8261400c565b604082019050919050565b60006132b56029836139ae565b91506132c08261405b565b604082019050919050565b60006132d8601a836139ae565b91506132e3826140aa565b602082019050919050565b60006132fb6018836139ae565b9150613306826140d3565b602082019050919050565b600061331e6023836139ae565b9150613329826140fc565b604082019050919050565b60006133416017836139ae565b915061334c8261414b565b602082019050919050565b60006133646020836139ae565b915061336f82614174565b602082019050919050565b6000613387602c836139ae565b91506133928261419d565b604082019050919050565b60006133aa6020836139ae565b91506133b5826141ec565b602082019050919050565b60006133cd6029836139ae565b91506133d882614215565b604082019050919050565b60006133f06021836139ae565b91506133fb82614264565b604082019050919050565b60006134136031836139ae565b915061341e826142b3565b604082019050919050565b60006134366012836139ae565b915061344182614302565b602082019050919050565b6000613459602c836139ae565b91506134648261432b565b604082019050919050565b61347881613b49565b82525050565b61348781613b49565b82525050565b60006134998285613085565b91506134a58284613054565b91508190509392505050565b60006020820190506134c66000830184612f66565b92915050565b60006080820190506134e16000830187612f66565b6134ee6020830186612f66565b6134fb604083018561347e565b818103606083015261350d8184612fe2565b905095945050505050565b600060208201905081810360008301526135328184612f75565b905092915050565b600060208201905061354f6000830184612fd3565b92915050565b6000602082019050818103600083015261356f818461301b565b905092915050565b6000602082019050818103600083015261359081613104565b9050919050565b600060208201905081810360008301526135b081613127565b9050919050565b600060208201905081810360008301526135d08161314a565b9050919050565b600060208201905081810360008301526135f08161316d565b9050919050565b6000602082019050818103600083015261361081613190565b9050919050565b60006020820190508181036000830152613630816131b3565b9050919050565b60006020820190508181036000830152613650816131d6565b9050919050565b60006020820190508181036000830152613670816131f9565b9050919050565b600060208201905081810360008301526136908161321c565b9050919050565b600060208201905081810360008301526136b08161323f565b9050919050565b600060208201905081810360008301526136d081613262565b9050919050565b600060208201905081810360008301526136f081613285565b9050919050565b60006020820190508181036000830152613710816132a8565b9050919050565b60006020820190508181036000830152613730816132cb565b9050919050565b60006020820190508181036000830152613750816132ee565b9050919050565b6000602082019050818103600083015261377081613311565b9050919050565b6000602082019050818103600083015261379081613334565b9050919050565b600060208201905081810360008301526137b081613357565b9050919050565b600060208201905081810360008301526137d08161337a565b9050919050565b600060208201905081810360008301526137f08161339d565b9050919050565b60006020820190508181036000830152613810816133c0565b9050919050565b60006020820190508181036000830152613830816133e3565b9050919050565b6000602082019050818103600083015261385081613406565b9050919050565b6000602082019050818103600083015261387081613429565b9050919050565b600060208201905081810360008301526138908161344c565b9050919050565b60006020820190506138ac600083018461347e565b92915050565b60006138bc6138cd565b90506138c88282613bc7565b919050565b6000604051905090565b600067ffffffffffffffff8211156138f2576138f1613cff565b5b6138fb82613d2e565b9050602081019050919050565b600067ffffffffffffffff82111561392357613922613cff565b5b61392c82613d2e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139d582613b49565b91506139e083613b49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1557613a14613c72565b5b828201905092915050565b6000613a2b82613b49565b9150613a3683613b49565b925082613a4657613a45613ca1565b5b828204905092915050565b6000613a5c82613b49565b9150613a6783613b49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aa057613a9f613c72565b5b828202905092915050565b6000613ab682613b49565b9150613ac183613b49565b925082821015613ad457613ad3613c72565b5b828203905092915050565b6000613aea82613b29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b80578082015181840152602081019050613b65565b83811115613b8f576000848401525b50505050565b60006002820490506001821680613bad57607f821691505b60208210811415613bc157613bc0613cd0565b5b50919050565b613bd082613d2e565b810181811067ffffffffffffffff82111715613bef57613bee613cff565b5b80604052505050565b6000613c0382613b49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c3657613c35613c72565b5b600182019050919050565b6000613c4c82613b49565b9150613c5783613b49565b925082613c6757613c66613ca1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656465642061697264726f7020737570706c79000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e766173696f6e2068617320656e6465640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f35204f63746f4865647a00000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e766173696f6e2068617320616c726561647920656e646564000000000000600082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f496e766173696f6e206861736e27742073746172746564000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f534f43544f530000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61438381613adf565b811461438e57600080fd5b50565b61439a81613af1565b81146143a557600080fd5b50565b6143b181613afd565b81146143bc57600080fd5b50565b6143c881613b49565b81146143d357600080fd5b5056fea2646970667358221220f61302a02cfea8076f08beb139e1422cf9e89b7fba6013a48a4ebdf7babc8ee064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a3967324455546a7277683235646236544c544257777371527567477a63744b326456756f565033427a4a6f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d647575597063464d746647626f556d426a676d7a7146644c444d537a594e5355705045643531753851704b592f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80636352211e116100f75780639dfde20111610095578063c87b56dd11610064578063c87b56dd14610634578063e8a3d48514610671578063e985e9c51461069c578063f2fde38b146106d9576101cd565b80639dfde201146105a0578063a22cb465146105cb578063b66a0e5d146105f4578063b88d4fde1461060b576101cd565b80638462151c116100d15780638462151c14610503578063853828b6146105405780638da5cb5b1461054a57806395d89b4114610575576101cd565b80636352211e1461047257806370a08231146104af578063715018a6146104ec576101cd565b80631c8b232d1161016f5780634a3cd6881161013e5780634a3cd688146103cc5780634f6ccce7146103f557806355367ba91461043257806355f804b314610449576101cd565b80631c8b232d1461031257806323b872dd1461033d5780632f745c591461036657806342842e0e146103a3576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631b123aab146102cb5780631bf01bf8146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e92565b610702565b604051610206919061353a565b60405180910390f35b34801561021b57600080fd5b5061022461077c565b6040516102319190613555565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f25565b61080e565b60405161026e91906134b1565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e56565b610893565b005b3480156102ac57600080fd5b506102b56109ab565b6040516102c29190613897565b60405180910390f35b6102e560048036038101906102e09190612f25565b6109b8565b005b3480156102f357600080fd5b506102fc610b38565b6040516103099190613897565b60405180910390f35b34801561031e57600080fd5b50610327610b3e565b604051610334919061353a565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190612d50565b610b51565b005b34801561037257600080fd5b5061038d60048036038101906103889190612e56565b610bb1565b60405161039a9190613897565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190612d50565b610c56565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612f25565b610c76565b005b34801561040157600080fd5b5061041c60048036038101906104179190612f25565b610de9565b6040516104299190613897565b60405180910390f35b34801561043e57600080fd5b50610447610e80565b005b34801561045557600080fd5b50610470600480360381019061046b9190612ee4565b610f19565b005b34801561047e57600080fd5b5061049960048036038101906104949190612f25565b610faf565b6040516104a691906134b1565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612ceb565b611061565b6040516104e39190613897565b60405180910390f35b3480156104f857600080fd5b50610501611119565b005b34801561050f57600080fd5b5061052a60048036038101906105259190612ceb565b6111a1565b6040516105379190613518565b60405180910390f35b61054861131d565b005b34801561055657600080fd5b5061055f6113d9565b60405161056c91906134b1565b60405180910390f35b34801561058157600080fd5b5061058a611402565b6040516105979190613555565b60405180910390f35b3480156105ac57600080fd5b506105b5611494565b6040516105c29190613897565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190612e1a565b61153f565b005b34801561060057600080fd5b506106096116c0565b005b34801561061757600080fd5b50610632600480360381019061062d9190612d9f565b611759565b005b34801561064057600080fd5b5061065b60048036038101906106569190612f25565b6117bb565b6040516106689190613555565b60405180910390f35b34801561067d57600080fd5b506106866117ef565b6040516106939190613555565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612d14565b611881565b6040516106d0919061353a565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612ceb565b611915565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610775575061077482611a0d565b5b9050919050565b60606001805461078b90613b95565b80601f01602080910402602001604051908101604052809291908181526020018280546107b790613b95565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081982611aef565b610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f906137b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089e82610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690613817565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092e611b5b565b73ffffffffffffffffffffffffffffffffffffffff16148061095d575061095c81610957611b5b565b611881565b5b61099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906136b7565b60405180910390fd5b6109a68383611b63565b505050565b6000600980549050905090565b6103786109c36109ab565b10610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90613717565b60405180910390fd5b600081118015610a14575060058111155b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613677565b60405180910390fd5b61037881610a5f6109ab565b610a6991906139ca565b1115610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190613857565b60405180910390fd5b80610ab3611494565b610abd9190613a51565b341015610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613757565b60405180910390fd5b60005b81811015610b34576000610b146109ab565b9050610b203382611c1c565b508080610b2c90613bf8565b915050610b02565b5050565b61037881565b600b60009054906101000a900460ff1681565b610b62610b5c611b5b565b82611c3a565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613837565b60405180910390fd5b610bac838383611d18565b505050565b6000610bbc83611061565b8210610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490613597565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c7183838360405180602001604052806000815250611759565b505050565b610c7e611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610c9c6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce9906137d7565b60405180910390fd5b6000610cfc6109ab565b9050603282610d096109ab565b610d1391906139ca565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613577565b60405180910390fd5b60001515600b60009054906101000a900460ff16151514610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613737565b60405180910390fd5b60005b82811015610de457610dd1610dc06113d9565b8284610dcc91906139ca565b611c1c565b8080610ddc90613bf8565b915050610dad565b505050565b6000610df36109ab565b8210610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613877565b60405180910390fd5b60098281548110610e6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e88611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610ea66113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906137d7565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610f21611b5b565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c906137d7565b60405180910390fd5b80600c9080519060200190610fab929190612b0f565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906136f7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906136d7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611b5b565b73ffffffffffffffffffffffffffffffffffffffff1661113f6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c906137d7565b60405180910390fd5b61119f6000611f74565b565b606060006111ae83611061565b9050600081141561123157600067ffffffffffffffff8111156111fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112285781602001602082028036833780820191505090505b50915050611318565b60008167ffffffffffffffff811115611273577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112a15781602001602082028036833780820191505090505b50905060005b82811015611311576112b98582610bb1565b8282815181106112f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061130990613bf8565b9150506112a7565b8193505050505b919050565b611325611b5b565b73ffffffffffffffffffffffffffffffffffffffff166113436113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906137d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506113d757600080fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461141190613b95565b80601f016020809104026020016040519081016040528092919081815260200182805461143d90613b95565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b5050505050905090565b600060011515600b60009054906101000a900460ff161515146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613777565b60405180910390fd5b6103786114f76109ab565b10611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613617565b60405180910390fd5b600e54905090565b611547611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613657565b60405180910390fd5b80600660006115c2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611b5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b4919061353a565b60405180910390a35050565b6116c8611b5b565b73ffffffffffffffffffffffffffffffffffffffff166116e66113d9565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906137d7565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b61176a611764611b5b565b83611c3a565b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090613837565b60405180910390fd5b6117b584848484612038565b50505050565b6060600c6117c883612094565b6040516020016117d992919061348d565b6040516020818303038152906040529050919050565b6060600d80546117fe90613b95565b80601f016020809104026020016040519081016040528092919081815260200182805461182a90613b95565b80156118775780601f1061184c57610100808354040283529160200191611877565b820191906000526020600020905b81548152906001019060200180831161185a57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191d611b5b565b73ffffffffffffffffffffffffffffffffffffffff1661193b6113d9565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611988906137d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906135d7565b60405180910390fd5b611a0a81611f74565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ae85750611ae782612241565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bd683610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c368282604051806020016040528060008152506122ab565b5050565b6000611c4582611aef565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613697565b60405180910390fd5b6000611c8f83610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cfe57508373ffffffffffffffffffffffffffffffffffffffff16611ce68461080e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0f5750611d0e8185611881565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3882610faf565b73ffffffffffffffffffffffffffffffffffffffff1614611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906137f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613637565b60405180910390fd5b611e09838383612306565b611e14600082611b63565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190613aab565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebb91906139ca565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612043848484611d18565b61204f8484848461241a565b61208e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612085906135b7565b60405180910390fd5b50505050565b606060008214156120dc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061223c565b600082905060005b6000821461210e5780806120f790613bf8565b915050600a826121079190613a20565b91506120e4565b60008167ffffffffffffffff811115612150577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121825781602001600182028036833780820191505090505b5090505b600085146122355760018261219b9190613aab565b9150600a856121aa9190613c41565b60306121b691906139ca565b60f81b8183815181106121f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222e9190613a20565b9450612186565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122b583836125b1565b6122c2600084848461241a565b612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f8906135b7565b60405180910390fd5b505050565b61231183838361277f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123545761234f81612784565b612393565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123925761239183826127cd565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576123d18161293a565b612415565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612414576124138282612a7d565b5b5b505050565b600061243b8473ffffffffffffffffffffffffffffffffffffffff16612afc565b156125a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612464611b5b565b8786866040518563ffffffff1660e01b815260040161248694939291906134cc565b602060405180830381600087803b1580156124a057600080fd5b505af19250505080156124d157506040513d601f19601f820116820180604052508101906124ce9190612ebb565b60015b612554573d8060008114612501576040519150601f19603f3d011682016040523d82523d6000602084013e612506565b606091505b5060008151141561254c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612543906135b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261890613797565b60405180910390fd5b61262a81611aef565b1561266a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612661906135f7565b60405180910390fd5b61267660008383612306565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c691906139ca565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127da84611061565b6127e49190613aab565b90506000600860008481526020019081526020016000205490508181146128c9576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061294e9190613aab565b90506000600a60008481526020019081526020016000205490506000600983815481106129a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600983815481106129ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a8883611061565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612b1b90613b95565b90600052602060002090601f016020900481019282612b3d5760008555612b84565b82601f10612b5657805160ff1916838001178555612b84565b82800160010185558215612b84579182015b82811115612b83578251825591602001919060010190612b68565b5b509050612b919190612b95565b5090565b5b80821115612bae576000816000905550600101612b96565b5090565b6000612bc5612bc0846138d7565b6138b2565b905082815260208101848484011115612bdd57600080fd5b612be8848285613b53565b509392505050565b6000612c03612bfe84613908565b6138b2565b905082815260208101848484011115612c1b57600080fd5b612c26848285613b53565b509392505050565b600081359050612c3d8161437a565b92915050565b600081359050612c5281614391565b92915050565b600081359050612c67816143a8565b92915050565b600081519050612c7c816143a8565b92915050565b600082601f830112612c9357600080fd5b8135612ca3848260208601612bb2565b91505092915050565b600082601f830112612cbd57600080fd5b8135612ccd848260208601612bf0565b91505092915050565b600081359050612ce5816143bf565b92915050565b600060208284031215612cfd57600080fd5b6000612d0b84828501612c2e565b91505092915050565b60008060408385031215612d2757600080fd5b6000612d3585828601612c2e565b9250506020612d4685828601612c2e565b9150509250929050565b600080600060608486031215612d6557600080fd5b6000612d7386828701612c2e565b9350506020612d8486828701612c2e565b9250506040612d9586828701612cd6565b9150509250925092565b60008060008060808587031215612db557600080fd5b6000612dc387828801612c2e565b9450506020612dd487828801612c2e565b9350506040612de587828801612cd6565b925050606085013567ffffffffffffffff811115612e0257600080fd5b612e0e87828801612c82565b91505092959194509250565b60008060408385031215612e2d57600080fd5b6000612e3b85828601612c2e565b9250506020612e4c85828601612c43565b9150509250929050565b60008060408385031215612e6957600080fd5b6000612e7785828601612c2e565b9250506020612e8885828601612cd6565b9150509250929050565b600060208284031215612ea457600080fd5b6000612eb284828501612c58565b91505092915050565b600060208284031215612ecd57600080fd5b6000612edb84828501612c6d565b91505092915050565b600060208284031215612ef657600080fd5b600082013567ffffffffffffffff811115612f1057600080fd5b612f1c84828501612cac565b91505092915050565b600060208284031215612f3757600080fd5b6000612f4584828501612cd6565b91505092915050565b6000612f5a838361346f565b60208301905092915050565b612f6f81613adf565b82525050565b6000612f808261395e565b612f8a818561398c565b9350612f9583613939565b8060005b83811015612fc6578151612fad8882612f4e565b9750612fb88361397f565b925050600181019050612f99565b5085935050505092915050565b612fdc81613af1565b82525050565b6000612fed82613969565b612ff7818561399d565b9350613007818560208601613b62565b61301081613d2e565b840191505092915050565b600061302682613974565b61303081856139ae565b9350613040818560208601613b62565b61304981613d2e565b840191505092915050565b600061305f82613974565b61306981856139bf565b9350613079818560208601613b62565b80840191505092915050565b6000815461309281613b95565b61309c81866139bf565b945060018216600081146130b757600181146130c8576130fb565b60ff198316865281860193506130fb565b6130d185613949565b60005b838110156130f3578154818901526001820191506020810190506130d4565b838801955050505b50505092915050565b60006131116017836139ae565b915061311c82613d3f565b602082019050919050565b6000613134602b836139ae565b915061313f82613d68565b604082019050919050565b60006131576032836139ae565b915061316282613db7565b604082019050919050565b600061317a6026836139ae565b915061318582613e06565b604082019050919050565b600061319d601c836139ae565b91506131a882613e55565b602082019050919050565b60006131c06012836139ae565b91506131cb82613e7e565b602082019050919050565b60006131e36024836139ae565b91506131ee82613ea7565b604082019050919050565b60006132066019836139ae565b915061321182613ef6565b602082019050919050565b6000613229602a836139ae565b915061323482613f1f565b604082019050919050565b600061324c602c836139ae565b915061325782613f6e565b604082019050919050565b600061326f6038836139ae565b915061327a82613fbd565b604082019050919050565b6000613292602a836139ae565b915061329d8261400c565b604082019050919050565b60006132b56029836139ae565b91506132c08261405b565b604082019050919050565b60006132d8601a836139ae565b91506132e3826140aa565b602082019050919050565b60006132fb6018836139ae565b9150613306826140d3565b602082019050919050565b600061331e6023836139ae565b9150613329826140fc565b604082019050919050565b60006133416017836139ae565b915061334c8261414b565b602082019050919050565b60006133646020836139ae565b915061336f82614174565b602082019050919050565b6000613387602c836139ae565b91506133928261419d565b604082019050919050565b60006133aa6020836139ae565b91506133b5826141ec565b602082019050919050565b60006133cd6029836139ae565b91506133d882614215565b604082019050919050565b60006133f06021836139ae565b91506133fb82614264565b604082019050919050565b60006134136031836139ae565b915061341e826142b3565b604082019050919050565b60006134366012836139ae565b915061344182614302565b602082019050919050565b6000613459602c836139ae565b91506134648261432b565b604082019050919050565b61347881613b49565b82525050565b61348781613b49565b82525050565b60006134998285613085565b91506134a58284613054565b91508190509392505050565b60006020820190506134c66000830184612f66565b92915050565b60006080820190506134e16000830187612f66565b6134ee6020830186612f66565b6134fb604083018561347e565b818103606083015261350d8184612fe2565b905095945050505050565b600060208201905081810360008301526135328184612f75565b905092915050565b600060208201905061354f6000830184612fd3565b92915050565b6000602082019050818103600083015261356f818461301b565b905092915050565b6000602082019050818103600083015261359081613104565b9050919050565b600060208201905081810360008301526135b081613127565b9050919050565b600060208201905081810360008301526135d08161314a565b9050919050565b600060208201905081810360008301526135f08161316d565b9050919050565b6000602082019050818103600083015261361081613190565b9050919050565b60006020820190508181036000830152613630816131b3565b9050919050565b60006020820190508181036000830152613650816131d6565b9050919050565b60006020820190508181036000830152613670816131f9565b9050919050565b600060208201905081810360008301526136908161321c565b9050919050565b600060208201905081810360008301526136b08161323f565b9050919050565b600060208201905081810360008301526136d081613262565b9050919050565b600060208201905081810360008301526136f081613285565b9050919050565b60006020820190508181036000830152613710816132a8565b9050919050565b60006020820190508181036000830152613730816132cb565b9050919050565b60006020820190508181036000830152613750816132ee565b9050919050565b6000602082019050818103600083015261377081613311565b9050919050565b6000602082019050818103600083015261379081613334565b9050919050565b600060208201905081810360008301526137b081613357565b9050919050565b600060208201905081810360008301526137d08161337a565b9050919050565b600060208201905081810360008301526137f08161339d565b9050919050565b60006020820190508181036000830152613810816133c0565b9050919050565b60006020820190508181036000830152613830816133e3565b9050919050565b6000602082019050818103600083015261385081613406565b9050919050565b6000602082019050818103600083015261387081613429565b9050919050565b600060208201905081810360008301526138908161344c565b9050919050565b60006020820190506138ac600083018461347e565b92915050565b60006138bc6138cd565b90506138c88282613bc7565b919050565b6000604051905090565b600067ffffffffffffffff8211156138f2576138f1613cff565b5b6138fb82613d2e565b9050602081019050919050565b600067ffffffffffffffff82111561392357613922613cff565b5b61392c82613d2e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139d582613b49565b91506139e083613b49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1557613a14613c72565b5b828201905092915050565b6000613a2b82613b49565b9150613a3683613b49565b925082613a4657613a45613ca1565b5b828204905092915050565b6000613a5c82613b49565b9150613a6783613b49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aa057613a9f613c72565b5b828202905092915050565b6000613ab682613b49565b9150613ac183613b49565b925082821015613ad457613ad3613c72565b5b828203905092915050565b6000613aea82613b29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b80578082015181840152602081019050613b65565b83811115613b8f576000848401525b50505050565b60006002820490506001821680613bad57607f821691505b60208210811415613bc157613bc0613cd0565b5b50919050565b613bd082613d2e565b810181811067ffffffffffffffff82111715613bef57613bee613cff565b5b80604052505050565b6000613c0382613b49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c3657613c35613c72565b5b600182019050919050565b6000613c4c82613b49565b9150613c5783613b49565b925082613c6757613c66613ca1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656465642061697264726f7020737570706c79000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e766173696f6e2068617320656e6465640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f35204f63746f4865647a00000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e766173696f6e2068617320616c726561647920656e646564000000000000600082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f496e766173696f6e206861736e27742073746172746564000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f534f43544f530000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61438381613adf565b811461438e57600080fd5b50565b61439a81613af1565b81146143a557600080fd5b50565b6143b181613afd565b81146143bc57600080fd5b50565b6143c881613b49565b81146143d357600080fd5b5056fea2646970667358221220f61302a02cfea8076f08beb139e1422cf9e89b7fba6013a48a4ebdf7babc8ee064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a3967324455546a7277683235646236544c544257777371527567477a63744b326456756f565033427a4a6f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d647575597063464d746647626f556d426a676d7a7146644c444d537a594e5355705045643531753851704b592f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://ipfs.io/ipfs/QmZ9g2DUTjrwh25db6TLTBWwsqRugGzctK2dVuoVP3BzJo/
Arg [1] : baseContractURI (string): https://gateway.pinata.cloud/ipfs/QmduuYpcFMtfGboUmBjgmzqFdLDMSzYNSUpPEd51u8QpKY/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5a3967324455546a72
Arg [4] : 77683235646236544c544257777371527567477a63744b326456756f56503342
Arg [5] : 7a4a6f2f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d647575597063464d746647626f556d426a676d7a7146644c444d537a
Arg [9] : 594e5355705045643531753851704b592f000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.