ERC-721
Overview
Max Total Supply
2,500 TMP
Holders
1,327
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TMPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheMintPass
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.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract TheMintPass is ERC721URIStorage, Ownable { uint public tokenCounter; bool public isWLMintOpen = false; bool public isMintOpen = false; uint public constant mintPrice = 0.09 ether; uint public constant maxSupply = 4444; uint public constant maxMint = 3; bytes32 public merkleRoot; mapping(address => bool) private isWLMinted; mapping(address => bool) private isMinted; string private baseURI; constructor() ERC721('TheMintPass', 'TMP') { tokenCounter = 0; } function openWLMint(bool _isWLMintOpen) external onlyOwner { isWLMintOpen = _isWLMintOpen; } function openMint(bool _isMintOpen) external onlyOwner { isMintOpen = _isMintOpen; } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setWhiteList(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function createWLToken(uint numberOfTokens, bytes32[] calldata _merkleProof) external payable { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(isWLMintOpen, 'The white list mint is not open.'); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "This address is not in the whitelist."); require(numberOfTokens <= maxMint, 'Exceeded max token purchase.'); require(isWLMinted[msg.sender] == false, 'This address has already mint.'); require(tokenCounter + numberOfTokens <= maxSupply, 'Purchase would exceed max tokens.'); require(msg.value >= mintPrice * numberOfTokens, 'Ether value send is not correct.'); for (uint i = 0; i < numberOfTokens; i++) { tokenCounter++; _safeMint(msg.sender, tokenCounter); _setTokenURI(tokenCounter, baseURI); } isWLMinted[msg.sender] = true; } function createToken(uint numberOfTokens) external payable { require(isMintOpen, 'The mint is not open.'); require(isMinted[msg.sender] == false, 'This address has already mint.'); require(numberOfTokens <= maxMint, 'Exceeded max token purchase.'); require(tokenCounter + numberOfTokens <= maxSupply, 'Purchase would exceed max tokens.'); require(msg.value >= mintPrice * numberOfTokens, 'Ether value send is not correct.'); for (uint i = 0; i < numberOfTokens; i++) { tokenCounter++; _safeMint(msg.sender, tokenCounter); _setTokenURI(tokenCounter, baseURI); } isMinted[msg.sender] = true; } function reserve(uint n) external onlyOwner { require(tokenCounter + n <= maxSupply, 'Purchase would exceed max tokens.'); for (uint i = 0; i < n; i++) { tokenCounter++; _safeMint(msg.sender, tokenCounter); _setTokenURI(tokenCounter, baseURI); } } function totalSupply() public view returns (uint) { return tokenCounter; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(''); require(success, 'Transfer failed.'); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"createToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"createWLToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintOpen","type":"bool"}],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWLMintOpen","type":"bool"}],"name":"openWLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","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":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhiteList","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":[],"name":"tokenCounter","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":[],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600b81526020017f5468654d696e74506173730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f544d5000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cc929190620001e4565b508060019080519060200190620000e5929190620001e4565b50505062000108620000fc6200011660201b60201c565b6200011e60201b60201c565b6000600881905550620002f9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f29062000294565b90600052602060002090601f01602090048101928262000216576000855562000262565b82601f106200023157805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026157825182559160200191906001019062000244565b5b50905062000271919062000275565b5090565b5b808211156200029057600081600090555060010162000276565b5090565b60006002820490506001821680620002ad57607f821691505b60208210811415620002c457620002c3620002ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146ac80620003096000396000f3fe6080604052600436106101e35760003560e01c80636b0815f311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461069c578063e985e9c5146106c7578063f2fde38b14610704578063f685905a1461072d576101e3565b8063a22cb465146105e2578063b88d4fde1461060b578063c87b56dd14610634578063d082e38114610671576101e3565b8063819b25ba116100d1578063819b25ba146105475780638da5cb5b1461057057806395d89b411461059b5780639a0aac98146105c6576101e3565b80636b0815f31461049f57806370a08231146104c8578063715018a6146105055780637501f7411461051c576101e3565b80632eb4a7ab1161017a57806358a85bca1161014957806358a85bca146103e55780635d1723651461040e5780636352211e146104375780636817c76c14610474576101e3565b80632eb4a7ab146103515780633ccfd60b1461037c57806342842e0e1461039357806355f804b3146103bc576101e3565b806318160ddd116101b657806318160ddd146102b657806319908016146102e157806323b872dd1461030c5780632d571cc414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061307b565b610758565b60405161021c9190613734565b60405180910390f35b34801561023157600080fd5b5061023a61083a565b604051610247919061376a565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061310e565b6108cc565b60405161028491906136cd565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fed565b610951565b005b3480156102c257600080fd5b506102cb610a69565b6040516102d89190613acc565b60405180910390f35b3480156102ed57600080fd5b506102f6610a73565b6040516103039190613734565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612ee7565b610a86565b005b61034f600480360381019061034a919061310e565b610ae6565b005b34801561035d57600080fd5b50610366610de8565b604051610373919061374f565b60405180910390f35b34801561038857600080fd5b50610391610dee565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612ee7565b610f19565b005b3480156103c857600080fd5b506103e360048036038101906103de91906130cd565b610f39565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613029565b610fcf565b005b34801561041a57600080fd5b5061043560048036038101906104309190613029565b611068565b005b34801561044357600080fd5b5061045e6004803603810190610459919061310e565b611101565b60405161046b91906136cd565b60405180910390f35b34801561048057600080fd5b506104896111b3565b6040516104969190613acc565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613052565b6111bf565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612e82565b611245565b6040516104fc9190613acc565b60405180910390f35b34801561051157600080fd5b5061051a6112fd565b005b34801561052857600080fd5b50610531611385565b60405161053e9190613acc565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061310e565b61138a565b005b34801561057c57600080fd5b50610585611534565b60405161059291906136cd565b60405180910390f35b3480156105a757600080fd5b506105b061155e565b6040516105bd919061376a565b60405180910390f35b6105e060048036038101906105db9190613137565b6115f0565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612fb1565b6119ad565b005b34801561061757600080fd5b50610632600480360381019061062d9190612f36565b6119c3565b005b34801561064057600080fd5b5061065b6004803603810190610656919061310e565b611a25565b604051610668919061376a565b60405180910390f35b34801561067d57600080fd5b50610686611b77565b6040516106939190613acc565b60405180910390f35b3480156106a857600080fd5b506106b1611b7d565b6040516106be9190613acc565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190612eab565b611b83565b6040516106fb9190613734565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612e82565b611c17565b005b34801561073957600080fd5b50610742611d0f565b60405161074f9190613734565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610833575061083282611d22565b5b9050919050565b60606000805461084990613d91565b80601f016020809104026020016040519081016040528092919081815260200182805461087590613d91565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d782611d8c565b610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d9061398c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095c82611101565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490613a2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ec611df8565b73ffffffffffffffffffffffffffffffffffffffff161480610a1b5750610a1a81610a15611df8565b611b83565b5b610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a51906138cc565b60405180910390fd5b610a648383611e00565b505050565b6000600854905090565b600960019054906101000a900460ff1681565b610a97610a91611df8565b82611eb9565b610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613a6c565b60405180910390fd5b610ae1838383611f97565b505050565b600960019054906101000a900460ff16610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613aac565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613a0c565b60405180910390fd5b6003811115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c039061380c565b60405180910390fd5b61115c81600854610c1d9190613bbc565b1115610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613a8c565b60405180910390fd5b8067013fbe85edc90000610c729190613c43565b341015610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061386c565b60405180910390fd5b60005b81811015610d8c5760086000815480929190610cd290613df4565b9190505550610ce3336008546121f3565b610d79600854600d8054610cf690613d91565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290613d91565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050612211565b8080610d8490613df4565b915050610cb7565b506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b610df6611df8565b73ffffffffffffffffffffffffffffffffffffffff16610e14611534565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906139ac565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e90906136b8565b60006040518083038185875af1925050503d8060008114610ecd576040519150601f19603f3d011682016040523d82523d6000602084013e610ed2565b606091505b5050905080610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613a4c565b60405180910390fd5b50565b610f34838383604051806020016040528060008152506119c3565b505050565b610f41611df8565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611534565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac906139ac565b60405180910390fd5b80600d9080519060200190610fcb929190612c47565b5050565b610fd7611df8565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611534565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906139ac565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b611070611df8565b73ffffffffffffffffffffffffffffffffffffffff1661108e611534565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906139ac565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061390c565b60405180910390fd5b80915050919050565b67013fbe85edc9000081565b6111c7611df8565b73ffffffffffffffffffffffffffffffffffffffff166111e5611534565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906139ac565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906138ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611305611df8565b73ffffffffffffffffffffffffffffffffffffffff16611323611534565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906139ac565b60405180910390fd5b6113836000612285565b565b600381565b611392611df8565b73ffffffffffffffffffffffffffffffffffffffff166113b0611534565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd906139ac565b60405180910390fd5b61115c816008546114179190613bbc565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613a8c565b60405180910390fd5b60005b81811015611530576008600081548092919061147690613df4565b9190505550611487336008546121f3565b61151d600854600d805461149a90613d91565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690613d91565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050612211565b808061152890613df4565b91505061145b565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156d90613d91565b80601f016020809104026020016040519081016040528092919081815260200182805461159990613d91565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b5050505050905090565b600033604051602001611603919061364d565b604051602081830303815290604052805190602001209050600960009054906101000a900460ff1661166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906138ac565b60405180910390fd5b6116b8838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361234b565b6116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061378c565b60405180910390fd5b600384111561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061380c565b60405180910390fd5b60001515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613a0c565b60405180910390fd5b61115c846008546117df9190613bbc565b1115611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613a8c565b60405180910390fd5b8367013fbe85edc900006118349190613c43565b341015611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061386c565b60405180910390fd5b60005b8481101561194e576008600081548092919061189490613df4565b91905055506118a5336008546121f3565b61193b600854600d80546118b890613d91565b80601f01602080910402602001604051908101604052809291908181526020018280546118e490613d91565b80156119315780601f1061190657610100808354040283529160200191611931565b820191906000526020600020905b81548152906001019060200180831161191457829003601f168201915b5050505050612211565b808061194690613df4565b915050611879565b506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6119bf6119b8611df8565b8383612362565b5050565b6119d46119ce611df8565b83611eb9565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613a6c565b60405180910390fd5b611a1f848484846124cf565b50505050565b6060611a3082611d8c565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a669061396c565b60405180910390fd5b6000600660008481526020019081526020016000208054611a8f90613d91565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613d91565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b505050505090506000611b1961252b565b9050600081511415611b2f578192505050611b72565b600082511115611b64578082604051602001611b4c929190613694565b60405160208183030381529060405292505050611b72565b611b6d84612542565b925050505b919050565b60085481565b61115c81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c1f611df8565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611534565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906139ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906137cc565b60405180910390fd5b611d0c81612285565b50565b600960009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7383611101565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ec482611d8c565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa9061388c565b60405180910390fd5b6000611f0e83611101565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7d57508373ffffffffffffffffffffffffffffffffffffffff16611f65846108cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8e5750611f8d8185611b83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb782611101565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612004906139cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120749061382c565b60405180910390fd5b6120888383836125e9565b612093600082611e00565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190613c9d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a9190613bbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61220d8282604051806020016040528060008152506125ee565b5050565b61221a82611d8c565b612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061392c565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612280929190612c47565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826123588584612649565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c89061384c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c29190613734565b60405180910390a3505050565b6124da848484611f97565b6124e684848484612722565b612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906137ac565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061254d82611d8c565b61258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906139ec565b60405180910390fd5b600061259661252b565b905060008151116125b657604051806020016040528060008152506125e1565b806125c0846128b9565b6040516020016125d1929190613694565b6040516020818303038152906040525b915050919050565b505050565b6125f88383612a66565b6126056000848484612722565b612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906137ac565b60405180910390fd5b505050565b60008082905060005b8451811015612717576000858281518110612696577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116126d75782816040516020016126ba929190613668565b604051602081830303815290604052805190602001209250612703565b80836040516020016126ea929190613668565b6040516020818303038152906040528051906020012092505b50808061270f90613df4565b915050612652565b508091505092915050565b60006127438473ffffffffffffffffffffffffffffffffffffffff16612c34565b156128ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276c611df8565b8786866040518563ffffffff1660e01b815260040161278e94939291906136e8565b602060405180830381600087803b1580156127a857600080fd5b505af19250505080156127d957506040513d601f19601f820116820180604052508101906127d691906130a4565b60015b61285c573d8060008114612809576040519150601f19603f3d011682016040523d82523d6000602084013e61280e565b606091505b50600081511415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b906137ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b1565b600190505b949350505050565b60606000821415612901576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a61565b600082905060005b6000821461293357808061291c90613df4565b915050600a8261292c9190613c12565b9150612909565b60008167ffffffffffffffff811115612975577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129a75781602001600182028036833780820191505090505b5090505b60008514612a5a576001826129c09190613c9d565b9150600a856129cf9190613e6b565b60306129db9190613bbc565b60f81b818381518110612a17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a539190613c12565b94506129ab565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acd9061394c565b60405180910390fd5b612adf81611d8c565b15612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b16906137ec565b60405180910390fd5b612b2b600083836125e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b7b9190613bbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c5390613d91565b90600052602060002090601f016020900481019282612c755760008555612cbc565b82601f10612c8e57805160ff1916838001178555612cbc565b82800160010185558215612cbc579182015b82811115612cbb578251825591602001919060010190612ca0565b5b509050612cc99190612ccd565b5090565b5b80821115612ce6576000816000905550600101612cce565b5090565b6000612cfd612cf884613b0c565b613ae7565b905082815260208101848484011115612d1557600080fd5b612d20848285613d4f565b509392505050565b6000612d3b612d3684613b3d565b613ae7565b905082815260208101848484011115612d5357600080fd5b612d5e848285613d4f565b509392505050565b600081359050612d7581614603565b92915050565b60008083601f840112612d8d57600080fd5b8235905067ffffffffffffffff811115612da657600080fd5b602083019150836020820283011115612dbe57600080fd5b9250929050565b600081359050612dd48161461a565b92915050565b600081359050612de981614631565b92915050565b600081359050612dfe81614648565b92915050565b600081519050612e1381614648565b92915050565b600082601f830112612e2a57600080fd5b8135612e3a848260208601612cea565b91505092915050565b600082601f830112612e5457600080fd5b8135612e64848260208601612d28565b91505092915050565b600081359050612e7c8161465f565b92915050565b600060208284031215612e9457600080fd5b6000612ea284828501612d66565b91505092915050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612d66565b9250506020612edd85828601612d66565b9150509250929050565b600080600060608486031215612efc57600080fd5b6000612f0a86828701612d66565b9350506020612f1b86828701612d66565b9250506040612f2c86828701612e6d565b9150509250925092565b60008060008060808587031215612f4c57600080fd5b6000612f5a87828801612d66565b9450506020612f6b87828801612d66565b9350506040612f7c87828801612e6d565b925050606085013567ffffffffffffffff811115612f9957600080fd5b612fa587828801612e19565b91505092959194509250565b60008060408385031215612fc457600080fd5b6000612fd285828601612d66565b9250506020612fe385828601612dc5565b9150509250929050565b6000806040838503121561300057600080fd5b600061300e85828601612d66565b925050602061301f85828601612e6d565b9150509250929050565b60006020828403121561303b57600080fd5b600061304984828501612dc5565b91505092915050565b60006020828403121561306457600080fd5b600061307284828501612dda565b91505092915050565b60006020828403121561308d57600080fd5b600061309b84828501612def565b91505092915050565b6000602082840312156130b657600080fd5b60006130c484828501612e04565b91505092915050565b6000602082840312156130df57600080fd5b600082013567ffffffffffffffff8111156130f957600080fd5b61310584828501612e43565b91505092915050565b60006020828403121561312057600080fd5b600061312e84828501612e6d565b91505092915050565b60008060006040848603121561314c57600080fd5b600061315a86828701612e6d565b935050602084013567ffffffffffffffff81111561317757600080fd5b61318386828701612d7b565b92509250509250925092565b61319881613cd1565b82525050565b6131af6131aa82613cd1565b613e3d565b82525050565b6131be81613ce3565b82525050565b6131cd81613cef565b82525050565b6131e46131df82613cef565b613e4f565b82525050565b60006131f582613b6e565b6131ff8185613b84565b935061320f818560208601613d5e565b61321881613f58565b840191505092915050565b600061322e82613b79565b6132388185613ba0565b9350613248818560208601613d5e565b61325181613f58565b840191505092915050565b600061326782613b79565b6132718185613bb1565b9350613281818560208601613d5e565b80840191505092915050565b600061329a602583613ba0565b91506132a582613f76565b604082019050919050565b60006132bd603283613ba0565b91506132c882613fc5565b604082019050919050565b60006132e0602683613ba0565b91506132eb82614014565b604082019050919050565b6000613303601c83613ba0565b915061330e82614063565b602082019050919050565b6000613326601c83613ba0565b91506133318261408c565b602082019050919050565b6000613349602483613ba0565b9150613354826140b5565b604082019050919050565b600061336c601983613ba0565b915061337782614104565b602082019050919050565b600061338f602083613ba0565b915061339a8261412d565b602082019050919050565b60006133b2602c83613ba0565b91506133bd82614156565b604082019050919050565b60006133d5602083613ba0565b91506133e0826141a5565b602082019050919050565b60006133f8603883613ba0565b9150613403826141ce565b604082019050919050565b600061341b602a83613ba0565b91506134268261421d565b604082019050919050565b600061343e602983613ba0565b91506134498261426c565b604082019050919050565b6000613461602e83613ba0565b915061346c826142bb565b604082019050919050565b6000613484602083613ba0565b915061348f8261430a565b602082019050919050565b60006134a7603183613ba0565b91506134b282614333565b604082019050919050565b60006134ca602c83613ba0565b91506134d582614382565b604082019050919050565b60006134ed602083613ba0565b91506134f8826143d1565b602082019050919050565b6000613510602983613ba0565b915061351b826143fa565b604082019050919050565b6000613533602f83613ba0565b915061353e82614449565b604082019050919050565b6000613556601e83613ba0565b915061356182614498565b602082019050919050565b6000613579602183613ba0565b9150613584826144c1565b604082019050919050565b600061359c600083613b95565b91506135a782614510565b600082019050919050565b60006135bf601083613ba0565b91506135ca82614513565b602082019050919050565b60006135e2603183613ba0565b91506135ed8261453c565b604082019050919050565b6000613605602183613ba0565b91506136108261458b565b604082019050919050565b6000613628601583613ba0565b9150613633826145da565b602082019050919050565b61364781613d45565b82525050565b6000613659828461319e565b60148201915081905092915050565b600061367482856131d3565b60208201915061368482846131d3565b6020820191508190509392505050565b60006136a0828561325c565b91506136ac828461325c565b91508190509392505050565b60006136c38261358f565b9150819050919050565b60006020820190506136e2600083018461318f565b92915050565b60006080820190506136fd600083018761318f565b61370a602083018661318f565b613717604083018561363e565b818103606083015261372981846131ea565b905095945050505050565b600060208201905061374960008301846131b5565b92915050565b600060208201905061376460008301846131c4565b92915050565b600060208201905081810360008301526137848184613223565b905092915050565b600060208201905081810360008301526137a58161328d565b9050919050565b600060208201905081810360008301526137c5816132b0565b9050919050565b600060208201905081810360008301526137e5816132d3565b9050919050565b60006020820190508181036000830152613805816132f6565b9050919050565b6000602082019050818103600083015261382581613319565b9050919050565b600060208201905081810360008301526138458161333c565b9050919050565b600060208201905081810360008301526138658161335f565b9050919050565b6000602082019050818103600083015261388581613382565b9050919050565b600060208201905081810360008301526138a5816133a5565b9050919050565b600060208201905081810360008301526138c5816133c8565b9050919050565b600060208201905081810360008301526138e5816133eb565b9050919050565b600060208201905081810360008301526139058161340e565b9050919050565b6000602082019050818103600083015261392581613431565b9050919050565b6000602082019050818103600083015261394581613454565b9050919050565b6000602082019050818103600083015261396581613477565b9050919050565b600060208201905081810360008301526139858161349a565b9050919050565b600060208201905081810360008301526139a5816134bd565b9050919050565b600060208201905081810360008301526139c5816134e0565b9050919050565b600060208201905081810360008301526139e581613503565b9050919050565b60006020820190508181036000830152613a0581613526565b9050919050565b60006020820190508181036000830152613a2581613549565b9050919050565b60006020820190508181036000830152613a458161356c565b9050919050565b60006020820190508181036000830152613a65816135b2565b9050919050565b60006020820190508181036000830152613a85816135d5565b9050919050565b60006020820190508181036000830152613aa5816135f8565b9050919050565b60006020820190508181036000830152613ac58161361b565b9050919050565b6000602082019050613ae1600083018461363e565b92915050565b6000613af1613b02565b9050613afd8282613dc3565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2757613b26613f29565b5b613b3082613f58565b9050602081019050919050565b600067ffffffffffffffff821115613b5857613b57613f29565b5b613b6182613f58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc782613d45565b9150613bd283613d45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0757613c06613e9c565b5b828201905092915050565b6000613c1d82613d45565b9150613c2883613d45565b925082613c3857613c37613ecb565b5b828204905092915050565b6000613c4e82613d45565b9150613c5983613d45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9257613c91613e9c565b5b828202905092915050565b6000613ca882613d45565b9150613cb383613d45565b925082821015613cc657613cc5613e9c565b5b828203905092915050565b6000613cdc82613d25565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7c578082015181840152602081019050613d61565b83811115613d8b576000848401525b50505050565b60006002820490506001821680613da957607f821691505b60208210811415613dbd57613dbc613efa565b5b50919050565b613dcc82613f58565b810181811067ffffffffffffffff82111715613deb57613dea613f29565b5b80604052505050565b6000613dff82613d45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3257613e31613e9c565b5b600182019050919050565b6000613e4882613e59565b9050919050565b6000819050919050565b6000613e6482613f69565b9050919050565b6000613e7682613d45565b9150613e8183613d45565b925082613e9157613e90613ecb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546869732061646472657373206973206e6f7420696e2074686520776869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173652e00000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e64206973206e6f7420636f72726563742e600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546865207768697465206c697374206d696e74206973206e6f74206f70656e2e600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320616464726573732068617320616c7265616479206d696e742e0000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e7360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74206973206e6f74206f70656e2e0000000000000000000000600082015250565b61460c81613cd1565b811461461757600080fd5b50565b61462381613ce3565b811461462e57600080fd5b50565b61463a81613cef565b811461464557600080fd5b50565b61465181613cf9565b811461465c57600080fd5b50565b61466881613d45565b811461467357600080fd5b5056fea26469706673582212209cdedc26801ec0279fa42ed0c013937e348b2a40ef96b1df9f82c6a1ada54c6464736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636b0815f311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461069c578063e985e9c5146106c7578063f2fde38b14610704578063f685905a1461072d576101e3565b8063a22cb465146105e2578063b88d4fde1461060b578063c87b56dd14610634578063d082e38114610671576101e3565b8063819b25ba116100d1578063819b25ba146105475780638da5cb5b1461057057806395d89b411461059b5780639a0aac98146105c6576101e3565b80636b0815f31461049f57806370a08231146104c8578063715018a6146105055780637501f7411461051c576101e3565b80632eb4a7ab1161017a57806358a85bca1161014957806358a85bca146103e55780635d1723651461040e5780636352211e146104375780636817c76c14610474576101e3565b80632eb4a7ab146103515780633ccfd60b1461037c57806342842e0e1461039357806355f804b3146103bc576101e3565b806318160ddd116101b657806318160ddd146102b657806319908016146102e157806323b872dd1461030c5780632d571cc414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061307b565b610758565b60405161021c9190613734565b60405180910390f35b34801561023157600080fd5b5061023a61083a565b604051610247919061376a565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061310e565b6108cc565b60405161028491906136cd565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fed565b610951565b005b3480156102c257600080fd5b506102cb610a69565b6040516102d89190613acc565b60405180910390f35b3480156102ed57600080fd5b506102f6610a73565b6040516103039190613734565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612ee7565b610a86565b005b61034f600480360381019061034a919061310e565b610ae6565b005b34801561035d57600080fd5b50610366610de8565b604051610373919061374f565b60405180910390f35b34801561038857600080fd5b50610391610dee565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612ee7565b610f19565b005b3480156103c857600080fd5b506103e360048036038101906103de91906130cd565b610f39565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613029565b610fcf565b005b34801561041a57600080fd5b5061043560048036038101906104309190613029565b611068565b005b34801561044357600080fd5b5061045e6004803603810190610459919061310e565b611101565b60405161046b91906136cd565b60405180910390f35b34801561048057600080fd5b506104896111b3565b6040516104969190613acc565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613052565b6111bf565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612e82565b611245565b6040516104fc9190613acc565b60405180910390f35b34801561051157600080fd5b5061051a6112fd565b005b34801561052857600080fd5b50610531611385565b60405161053e9190613acc565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061310e565b61138a565b005b34801561057c57600080fd5b50610585611534565b60405161059291906136cd565b60405180910390f35b3480156105a757600080fd5b506105b061155e565b6040516105bd919061376a565b60405180910390f35b6105e060048036038101906105db9190613137565b6115f0565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612fb1565b6119ad565b005b34801561061757600080fd5b50610632600480360381019061062d9190612f36565b6119c3565b005b34801561064057600080fd5b5061065b6004803603810190610656919061310e565b611a25565b604051610668919061376a565b60405180910390f35b34801561067d57600080fd5b50610686611b77565b6040516106939190613acc565b60405180910390f35b3480156106a857600080fd5b506106b1611b7d565b6040516106be9190613acc565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190612eab565b611b83565b6040516106fb9190613734565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612e82565b611c17565b005b34801561073957600080fd5b50610742611d0f565b60405161074f9190613734565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610833575061083282611d22565b5b9050919050565b60606000805461084990613d91565b80601f016020809104026020016040519081016040528092919081815260200182805461087590613d91565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d782611d8c565b610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d9061398c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095c82611101565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c490613a2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ec611df8565b73ffffffffffffffffffffffffffffffffffffffff161480610a1b5750610a1a81610a15611df8565b611b83565b5b610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a51906138cc565b60405180910390fd5b610a648383611e00565b505050565b6000600854905090565b600960019054906101000a900460ff1681565b610a97610a91611df8565b82611eb9565b610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90613a6c565b60405180910390fd5b610ae1838383611f97565b505050565b600960019054906101000a900460ff16610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613aac565b60405180910390fd5b60001515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613a0c565b60405180910390fd5b6003811115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c039061380c565b60405180910390fd5b61115c81600854610c1d9190613bbc565b1115610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613a8c565b60405180910390fd5b8067013fbe85edc90000610c729190613c43565b341015610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061386c565b60405180910390fd5b60005b81811015610d8c5760086000815480929190610cd290613df4565b9190505550610ce3336008546121f3565b610d79600854600d8054610cf690613d91565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290613d91565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050612211565b8080610d8490613df4565b915050610cb7565b506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b610df6611df8565b73ffffffffffffffffffffffffffffffffffffffff16610e14611534565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906139ac565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e90906136b8565b60006040518083038185875af1925050503d8060008114610ecd576040519150601f19603f3d011682016040523d82523d6000602084013e610ed2565b606091505b5050905080610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613a4c565b60405180910390fd5b50565b610f34838383604051806020016040528060008152506119c3565b505050565b610f41611df8565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611534565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac906139ac565b60405180910390fd5b80600d9080519060200190610fcb929190612c47565b5050565b610fd7611df8565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611534565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906139ac565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b611070611df8565b73ffffffffffffffffffffffffffffffffffffffff1661108e611534565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906139ac565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061390c565b60405180910390fd5b80915050919050565b67013fbe85edc9000081565b6111c7611df8565b73ffffffffffffffffffffffffffffffffffffffff166111e5611534565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611232906139ac565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906138ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611305611df8565b73ffffffffffffffffffffffffffffffffffffffff16611323611534565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906139ac565b60405180910390fd5b6113836000612285565b565b600381565b611392611df8565b73ffffffffffffffffffffffffffffffffffffffff166113b0611534565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd906139ac565b60405180910390fd5b61115c816008546114179190613bbc565b1115611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613a8c565b60405180910390fd5b60005b81811015611530576008600081548092919061147690613df4565b9190505550611487336008546121f3565b61151d600854600d805461149a90613d91565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690613d91565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050612211565b808061152890613df4565b91505061145b565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461156d90613d91565b80601f016020809104026020016040519081016040528092919081815260200182805461159990613d91565b80156115e65780601f106115bb576101008083540402835291602001916115e6565b820191906000526020600020905b8154815290600101906020018083116115c957829003601f168201915b5050505050905090565b600033604051602001611603919061364d565b604051602081830303815290604052805190602001209050600960009054906101000a900460ff1661166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906138ac565b60405180910390fd5b6116b8838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361234b565b6116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061378c565b60405180910390fd5b600384111561173b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117329061380c565b60405180910390fd5b60001515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613a0c565b60405180910390fd5b61115c846008546117df9190613bbc565b1115611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613a8c565b60405180910390fd5b8367013fbe85edc900006118349190613c43565b341015611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061386c565b60405180910390fd5b60005b8481101561194e576008600081548092919061189490613df4565b91905055506118a5336008546121f3565b61193b600854600d80546118b890613d91565b80601f01602080910402602001604051908101604052809291908181526020018280546118e490613d91565b80156119315780601f1061190657610100808354040283529160200191611931565b820191906000526020600020905b81548152906001019060200180831161191457829003601f168201915b5050505050612211565b808061194690613df4565b915050611879565b506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6119bf6119b8611df8565b8383612362565b5050565b6119d46119ce611df8565b83611eb9565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613a6c565b60405180910390fd5b611a1f848484846124cf565b50505050565b6060611a3082611d8c565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a669061396c565b60405180910390fd5b6000600660008481526020019081526020016000208054611a8f90613d91565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613d91565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b505050505090506000611b1961252b565b9050600081511415611b2f578192505050611b72565b600082511115611b64578082604051602001611b4c929190613694565b60405160208183030381529060405292505050611b72565b611b6d84612542565b925050505b919050565b60085481565b61115c81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c1f611df8565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611534565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906139ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906137cc565b60405180910390fd5b611d0c81612285565b50565b600960009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7383611101565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ec482611d8c565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa9061388c565b60405180910390fd5b6000611f0e83611101565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7d57508373ffffffffffffffffffffffffffffffffffffffff16611f65846108cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8e5750611f8d8185611b83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb782611101565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612004906139cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120749061382c565b60405180910390fd5b6120888383836125e9565b612093600082611e00565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190613c9d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213a9190613bbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61220d8282604051806020016040528060008152506125ee565b5050565b61221a82611d8c565b612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061392c565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612280929190612c47565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826123588584612649565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c89061384c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c29190613734565b60405180910390a3505050565b6124da848484611f97565b6124e684848484612722565b612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c906137ac565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061254d82611d8c565b61258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906139ec565b60405180910390fd5b600061259661252b565b905060008151116125b657604051806020016040528060008152506125e1565b806125c0846128b9565b6040516020016125d1929190613694565b6040516020818303038152906040525b915050919050565b505050565b6125f88383612a66565b6126056000848484612722565b612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906137ac565b60405180910390fd5b505050565b60008082905060005b8451811015612717576000858281518110612696577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116126d75782816040516020016126ba929190613668565b604051602081830303815290604052805190602001209250612703565b80836040516020016126ea929190613668565b6040516020818303038152906040528051906020012092505b50808061270f90613df4565b915050612652565b508091505092915050565b60006127438473ffffffffffffffffffffffffffffffffffffffff16612c34565b156128ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276c611df8565b8786866040518563ffffffff1660e01b815260040161278e94939291906136e8565b602060405180830381600087803b1580156127a857600080fd5b505af19250505080156127d957506040513d601f19601f820116820180604052508101906127d691906130a4565b60015b61285c573d8060008114612809576040519150601f19603f3d011682016040523d82523d6000602084013e61280e565b606091505b50600081511415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b906137ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128b1565b600190505b949350505050565b60606000821415612901576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a61565b600082905060005b6000821461293357808061291c90613df4565b915050600a8261292c9190613c12565b9150612909565b60008167ffffffffffffffff811115612975577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129a75781602001600182028036833780820191505090505b5090505b60008514612a5a576001826129c09190613c9d565b9150600a856129cf9190613e6b565b60306129db9190613bbc565b60f81b818381518110612a17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a539190613c12565b94506129ab565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acd9061394c565b60405180910390fd5b612adf81611d8c565b15612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b16906137ec565b60405180910390fd5b612b2b600083836125e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b7b9190613bbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c5390613d91565b90600052602060002090601f016020900481019282612c755760008555612cbc565b82601f10612c8e57805160ff1916838001178555612cbc565b82800160010185558215612cbc579182015b82811115612cbb578251825591602001919060010190612ca0565b5b509050612cc99190612ccd565b5090565b5b80821115612ce6576000816000905550600101612cce565b5090565b6000612cfd612cf884613b0c565b613ae7565b905082815260208101848484011115612d1557600080fd5b612d20848285613d4f565b509392505050565b6000612d3b612d3684613b3d565b613ae7565b905082815260208101848484011115612d5357600080fd5b612d5e848285613d4f565b509392505050565b600081359050612d7581614603565b92915050565b60008083601f840112612d8d57600080fd5b8235905067ffffffffffffffff811115612da657600080fd5b602083019150836020820283011115612dbe57600080fd5b9250929050565b600081359050612dd48161461a565b92915050565b600081359050612de981614631565b92915050565b600081359050612dfe81614648565b92915050565b600081519050612e1381614648565b92915050565b600082601f830112612e2a57600080fd5b8135612e3a848260208601612cea565b91505092915050565b600082601f830112612e5457600080fd5b8135612e64848260208601612d28565b91505092915050565b600081359050612e7c8161465f565b92915050565b600060208284031215612e9457600080fd5b6000612ea284828501612d66565b91505092915050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612d66565b9250506020612edd85828601612d66565b9150509250929050565b600080600060608486031215612efc57600080fd5b6000612f0a86828701612d66565b9350506020612f1b86828701612d66565b9250506040612f2c86828701612e6d565b9150509250925092565b60008060008060808587031215612f4c57600080fd5b6000612f5a87828801612d66565b9450506020612f6b87828801612d66565b9350506040612f7c87828801612e6d565b925050606085013567ffffffffffffffff811115612f9957600080fd5b612fa587828801612e19565b91505092959194509250565b60008060408385031215612fc457600080fd5b6000612fd285828601612d66565b9250506020612fe385828601612dc5565b9150509250929050565b6000806040838503121561300057600080fd5b600061300e85828601612d66565b925050602061301f85828601612e6d565b9150509250929050565b60006020828403121561303b57600080fd5b600061304984828501612dc5565b91505092915050565b60006020828403121561306457600080fd5b600061307284828501612dda565b91505092915050565b60006020828403121561308d57600080fd5b600061309b84828501612def565b91505092915050565b6000602082840312156130b657600080fd5b60006130c484828501612e04565b91505092915050565b6000602082840312156130df57600080fd5b600082013567ffffffffffffffff8111156130f957600080fd5b61310584828501612e43565b91505092915050565b60006020828403121561312057600080fd5b600061312e84828501612e6d565b91505092915050565b60008060006040848603121561314c57600080fd5b600061315a86828701612e6d565b935050602084013567ffffffffffffffff81111561317757600080fd5b61318386828701612d7b565b92509250509250925092565b61319881613cd1565b82525050565b6131af6131aa82613cd1565b613e3d565b82525050565b6131be81613ce3565b82525050565b6131cd81613cef565b82525050565b6131e46131df82613cef565b613e4f565b82525050565b60006131f582613b6e565b6131ff8185613b84565b935061320f818560208601613d5e565b61321881613f58565b840191505092915050565b600061322e82613b79565b6132388185613ba0565b9350613248818560208601613d5e565b61325181613f58565b840191505092915050565b600061326782613b79565b6132718185613bb1565b9350613281818560208601613d5e565b80840191505092915050565b600061329a602583613ba0565b91506132a582613f76565b604082019050919050565b60006132bd603283613ba0565b91506132c882613fc5565b604082019050919050565b60006132e0602683613ba0565b91506132eb82614014565b604082019050919050565b6000613303601c83613ba0565b915061330e82614063565b602082019050919050565b6000613326601c83613ba0565b91506133318261408c565b602082019050919050565b6000613349602483613ba0565b9150613354826140b5565b604082019050919050565b600061336c601983613ba0565b915061337782614104565b602082019050919050565b600061338f602083613ba0565b915061339a8261412d565b602082019050919050565b60006133b2602c83613ba0565b91506133bd82614156565b604082019050919050565b60006133d5602083613ba0565b91506133e0826141a5565b602082019050919050565b60006133f8603883613ba0565b9150613403826141ce565b604082019050919050565b600061341b602a83613ba0565b91506134268261421d565b604082019050919050565b600061343e602983613ba0565b91506134498261426c565b604082019050919050565b6000613461602e83613ba0565b915061346c826142bb565b604082019050919050565b6000613484602083613ba0565b915061348f8261430a565b602082019050919050565b60006134a7603183613ba0565b91506134b282614333565b604082019050919050565b60006134ca602c83613ba0565b91506134d582614382565b604082019050919050565b60006134ed602083613ba0565b91506134f8826143d1565b602082019050919050565b6000613510602983613ba0565b915061351b826143fa565b604082019050919050565b6000613533602f83613ba0565b915061353e82614449565b604082019050919050565b6000613556601e83613ba0565b915061356182614498565b602082019050919050565b6000613579602183613ba0565b9150613584826144c1565b604082019050919050565b600061359c600083613b95565b91506135a782614510565b600082019050919050565b60006135bf601083613ba0565b91506135ca82614513565b602082019050919050565b60006135e2603183613ba0565b91506135ed8261453c565b604082019050919050565b6000613605602183613ba0565b91506136108261458b565b604082019050919050565b6000613628601583613ba0565b9150613633826145da565b602082019050919050565b61364781613d45565b82525050565b6000613659828461319e565b60148201915081905092915050565b600061367482856131d3565b60208201915061368482846131d3565b6020820191508190509392505050565b60006136a0828561325c565b91506136ac828461325c565b91508190509392505050565b60006136c38261358f565b9150819050919050565b60006020820190506136e2600083018461318f565b92915050565b60006080820190506136fd600083018761318f565b61370a602083018661318f565b613717604083018561363e565b818103606083015261372981846131ea565b905095945050505050565b600060208201905061374960008301846131b5565b92915050565b600060208201905061376460008301846131c4565b92915050565b600060208201905081810360008301526137848184613223565b905092915050565b600060208201905081810360008301526137a58161328d565b9050919050565b600060208201905081810360008301526137c5816132b0565b9050919050565b600060208201905081810360008301526137e5816132d3565b9050919050565b60006020820190508181036000830152613805816132f6565b9050919050565b6000602082019050818103600083015261382581613319565b9050919050565b600060208201905081810360008301526138458161333c565b9050919050565b600060208201905081810360008301526138658161335f565b9050919050565b6000602082019050818103600083015261388581613382565b9050919050565b600060208201905081810360008301526138a5816133a5565b9050919050565b600060208201905081810360008301526138c5816133c8565b9050919050565b600060208201905081810360008301526138e5816133eb565b9050919050565b600060208201905081810360008301526139058161340e565b9050919050565b6000602082019050818103600083015261392581613431565b9050919050565b6000602082019050818103600083015261394581613454565b9050919050565b6000602082019050818103600083015261396581613477565b9050919050565b600060208201905081810360008301526139858161349a565b9050919050565b600060208201905081810360008301526139a5816134bd565b9050919050565b600060208201905081810360008301526139c5816134e0565b9050919050565b600060208201905081810360008301526139e581613503565b9050919050565b60006020820190508181036000830152613a0581613526565b9050919050565b60006020820190508181036000830152613a2581613549565b9050919050565b60006020820190508181036000830152613a458161356c565b9050919050565b60006020820190508181036000830152613a65816135b2565b9050919050565b60006020820190508181036000830152613a85816135d5565b9050919050565b60006020820190508181036000830152613aa5816135f8565b9050919050565b60006020820190508181036000830152613ac58161361b565b9050919050565b6000602082019050613ae1600083018461363e565b92915050565b6000613af1613b02565b9050613afd8282613dc3565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2757613b26613f29565b5b613b3082613f58565b9050602081019050919050565b600067ffffffffffffffff821115613b5857613b57613f29565b5b613b6182613f58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bc782613d45565b9150613bd283613d45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0757613c06613e9c565b5b828201905092915050565b6000613c1d82613d45565b9150613c2883613d45565b925082613c3857613c37613ecb565b5b828204905092915050565b6000613c4e82613d45565b9150613c5983613d45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9257613c91613e9c565b5b828202905092915050565b6000613ca882613d45565b9150613cb383613d45565b925082821015613cc657613cc5613e9c565b5b828203905092915050565b6000613cdc82613d25565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d7c578082015181840152602081019050613d61565b83811115613d8b576000848401525b50505050565b60006002820490506001821680613da957607f821691505b60208210811415613dbd57613dbc613efa565b5b50919050565b613dcc82613f58565b810181811067ffffffffffffffff82111715613deb57613dea613f29565b5b80604052505050565b6000613dff82613d45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3257613e31613e9c565b5b600182019050919050565b6000613e4882613e59565b9050919050565b6000819050919050565b6000613e6482613f69565b9050919050565b6000613e7682613d45565b9150613e8183613d45565b925082613e9157613e90613ecb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546869732061646472657373206973206e6f7420696e2074686520776869746560008201527f6c6973742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173652e00000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e64206973206e6f7420636f72726563742e600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546865207768697465206c697374206d696e74206973206e6f74206f70656e2e600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320616464726573732068617320616c7265616479206d696e742e0000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e7360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74206973206e6f74206f70656e2e0000000000000000000000600082015250565b61460c81613cd1565b811461461757600080fd5b50565b61462381613ce3565b811461462e57600080fd5b50565b61463a81613cef565b811461464557600080fd5b50565b61465181613cf9565b811461465c57600080fd5b50565b61466881613d45565b811461467357600080fd5b5056fea26469706673582212209cdedc26801ec0279fa42ed0c013937e348b2a40ef96b1df9f82c6a1ada54c6464736f6c63430008040033
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.