Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 VMT
Holders
5,701
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
13 VMTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
VMT
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.9;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "@openzeppelin/contracts/utils/Strings.sol";import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";import "./ERC721A.sol";import "./extensions/ERC721AOwnersExplicit.sol";// VMTcontract VMT is Ownable, ERC721A, ERC721AOwnersExplicit, ReentrancyGuard {using ECDSA for bytes32;using Strings for uint256;uint256 public immutable maxSupply = 10000;enum SalePhase {Locked,PreSale,PublicSale}SalePhase public phase = SalePhase.Locked;address private wlMintSigner;
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and
1234567891011121314151617181920212223242526// 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.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../Strings.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma solidity ^0.8.4;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';import '@openzeppelin/contracts/utils/Address.sol';import '@openzeppelin/contracts/utils/Context.sol';import '@openzeppelin/contracts/utils/Strings.sol';import '@openzeppelin/contracts/utils/introspection/ERC165.sol';error ApprovalCallerNotOwnerNorApproved();error ApprovalQueryForNonexistentToken();error ApproveToCaller();error SoulBound();error ApprovalToCurrentOwner();error BalanceQueryForZeroAddress();error MintedQueryForZeroAddress();error BurnedQueryForZeroAddress();error MintToZeroAddress();error MintZeroQuantity();error OwnerIndexOutOfBounds();error OwnerQueryForNonexistentToken();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma solidity ^0.8.4;import '../ERC721A.sol';error AllOwnershipsHaveBeenSet();error QuantityMustBeNonZero();error NoTokensMintedYet();abstract contract ERC721AOwnersExplicit is ERC721A {uint256 public nextOwnerToExplicitlySet;/*** @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().*/function _setOwnersExplicit(uint256 quantity) internal {if (quantity == 0) revert QuantityMustBeNonZero();if (_currentIndex == 0) revert NoTokensMintedYet();uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();// Index underflow is impossible.// Counter or index overflow is incredibly unrealistic.unchecked {
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// 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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
1234567891011121314151617181920212223242526// 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) {
12345678910111213141516171819202122232425// 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);}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","type":"error"},{"inputs":[],"name":"SoulBound","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"address","name":"_wlMintSigner","type":"address"}],"name":"doDaWlThing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"gifMe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"count","type":"uint256[]"}],"name":"gifYou","outputs":[],"stateMutability":"nonpayable","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":"isFreeSoGifMeNuthin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_usePlaceholder","type":"bool"}],"name":"mekItShowDaStuff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mekMachunForNeone","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mekMachunForSpecial","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum VMT.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderURL","type":"string"}],"name":"setTheMaybe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURL","type":"string"}],"name":"setTheWat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum VMT.SalePhase","name":"phase_","type":"uint8"}],"name":"setTheWen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soulBound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"endId","type":"uint256"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usePlaceholder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a060405260098054600160ff199182168117909255612710608052600c805482169055600f805490911690911790553480156200003c57600080fd5b506040518060400160405280600381526020016215935560ea1b8152506040518060400160405280600381526020016215935560ea1b8152506200008f62000089620000c860201b60201c565b620000cc565b8151620000a49060039060208501906200011c565b508051620000ba9060049060208401906200011c565b50506001600b5550620001ff565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012a90620001c2565b90600052602060002090601f0160209004810192826200014e576000855562000199565b82601f106200016957805160ff191683800117855562000199565b8280016001018555821562000199579182015b82811115620001995782518255916020019190600101906200017c565b50620001a7929150620001ab565b5090565b5b80821115620001a75760008155600101620001ac565b600181811c90821680620001d757607f821691505b60208210811415620001f957634e487b7160e01b600052602260045260246000fd5b50919050565b6080516129e262000230600039600081816106100152818161094601528181610b4b0152610c9401526129e26000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c1854270116100a0578063d7224ba01161006f578063d7224ba014610632578063de6cf0ee14610648578063e985e9c51461065d578063f2fde38b146106a6578063f993b42d146106c657600080fd5b8063c185427014610597578063c839fe94146105b1578063c87b56dd146105de578063d5abeb01146105fe57600080fd5b8063a22cb465116100e7578063a22cb465146104f0578063b1c9fe6e14610510578063b5aa4c7014610537578063b6aa475c14610557578063b88d4fde1461057757600080fd5b8063715018a6146104525780638da5cb5b146104675780639231ab2a1461048557806395d89b41146104db57600080fd5b80632edcf2ac1161019b5780634f89e0ba1161016a5780634f89e0ba146103c35780636352211e146103dd57806365dc9ef5146103fd5780636c35d2601461041257806370a082311461043257600080fd5b80632edcf2ac146103685780632fb5cbd81461037057806342842e0e14610383578063441b5eeb146103a357600080fd5b80630b3915e0116101e25780630b3915e0146102c557806318160ddd146102e557806322d8d5fe1461030857806323b872dd146103285780632d20fb601461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046122ad565b6106e6565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610738565b6040516102409190612322565b34801561027757600080fd5b5061028b610286366004612335565b6107ca565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461236a565b61080e565b005b3480156102d157600080fd5b506102c36102e0366004612394565b6108c0565b3480156102f157600080fd5b50600254600154035b604051908152602001610240565b34801561031457600080fd5b506102c3610323366004612335565b61091a565b34801561033457600080fd5b506102c36103433660046123b5565b6109ec565b34801561035457600080fd5b506102c3610363366004612335565b6109f7565b6102c3610a8a565b6102c361037e366004612432565b610bdd565b34801561038f57600080fd5b506102c361039e3660046123b5565b610e7e565b3480156103af57600080fd5b506102c36103be366004612432565b610e99565b3480156103cf57600080fd5b506009546102349060ff1681565b3480156103e957600080fd5b5061028b6103f8366004612335565b610ecf565b34801561040957600080fd5b506102c3610ee1565b34801561041e57600080fd5b506102c361042d366004612432565b610f3a565b34801561043e57600080fd5b506102fa61044d366004612473565b610f70565b34801561045e57600080fd5b506102c3610fbe565b34801561047357600080fd5b506000546001600160a01b031661028b565b34801561049157600080fd5b506104a56104a0366004612335565b610ff2565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156104e757600080fd5b5061025e611018565b3480156104fc57600080fd5b506102c361050b36600461249e565b611027565b34801561051c57600080fd5b50600c5461052a9060ff1681565b60405161024091906124e7565b34801561054357600080fd5b506102c3610552366004612473565b6110e1565b34801561056357600080fd5b506102c361057236600461250f565b611133565b34801561058357600080fd5b506102c3610592366004612540565b611170565b3480156105a357600080fd5b50600f546102349060ff1681565b3480156105bd57600080fd5b506105d16105cc36600461261b565b6111aa565b604051610240919061264e565b3480156105ea57600080fd5b5061025e6105f9366004612335565b6112a1565b34801561060a57600080fd5b506102fa7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063e57600080fd5b506102fa600a5481565b34801561065457600080fd5b506102c36113df565b34801561066957600080fd5b50610234610678366004612692565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106b257600080fd5b506102c36106c1366004612473565b611415565b3480156106d257600080fd5b506102c36106e1366004612700565b6114b0565b60006001600160e01b031982166380ac58cd60e01b148061071757506001600160e01b03198216635b5e139f60e01b145b8061073257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107479061276b565b80601f01602080910402602001604051908101604052809291908181526020018280546107739061276b565b80156107c05780601f10610795576101008083540402835291602001916107c0565b820191906000526020600020905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b60006107d582611548565b6107f2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60095460ff161561083257604051631267838f60e11b815260040160405180910390fd5b600061083d82610ecf565b9050806001600160a01b0316836001600160a01b031614156108725760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089257506108908133610678565b155b156108b0576040516367d9dca160e11b815260040160405180910390fd5b6108bb838383611574565b505050565b6000546001600160a01b031633146108f35760405162461bcd60e51b81526004016108ea906127a6565b60405180910390fd5b600c805482919060ff19166001836002811115610912576109126124d1565b021790555050565b6000546001600160a01b031633146109445760405162461bcd60e51b81526004016108ea906127a6565b7f0000000000000000000000000000000000000000000000000000000000000000816109736002546001540390565b61097d91906127f1565b11156109c05760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108ea565b60005b818110156109e8576109d63360016115d0565b806109e081612809565b9150506109c3565b5050565b6108bb8383836115ea565b6000546001600160a01b03163314610a215760405162461bcd60e51b81526004016108ea906127a6565b6002600b541415610a745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ea565b6002600b55610a828161180b565b506001600b55565b323314610ad95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ea565b6002600c5460ff166002811115610af257610af26124d1565b14610b495760405162461bcd60e51b815260206004820152602160248201527f5075626c69632073616c65206d696e74696e67206973206e6f742061637469766044820152606560f81b60648201526084016108ea565b7f0000000000000000000000000000000000000000000000000000000000000000610b776002546001540390565b610b829060016127f1565b1115610bd05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016108ea565b610bdb3360016115d0565b565b323314610c2c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ea565b6001600c5460ff166002811115610c4557610c456124d1565b14610c925760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206d696e74696e67206e6f742061637469766500000000000060448201526064016108ea565b7f0000000000000000000000000000000000000000000000000000000000000000610cc06002546001540390565b610ccb9060016127f1565b1115610d195760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016108ea565b610daf82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d8b9050565b6040516020818303038152906040528051906020012061193990919063ffffffff16565b600c5461010090046001600160a01b03908116911614610e115760405162461bcd60e51b815260206004820152601860248201527f5369676e65722061646472657373206d69736d617463682e000000000000000060448201526064016108ea565b3360009081526010602052604090205415610e5f5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016108ea565b3360008181526010602052604090206001908190556109e891906115d0565b6108bb83838360405180602001604052806000815250611170565b6000546001600160a01b03163314610ec35760405162461bcd60e51b81526004016108ea906127a6565b6108bb600d83836121fe565b6000610eda8261195d565b5192915050565b6000546001600160a01b03163314610f0b5760405162461bcd60e51b81526004016108ea906127a6565b6040514790339082156108fc029083906000818181858888f193505050501580156109e8573d6000803e3d6000fd5b6000546001600160a01b03163314610f645760405162461bcd60e51b81526004016108ea906127a6565b6108bb600e83836121fe565b60006001600160a01b038216610f99576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610fe85760405162461bcd60e51b81526004016108ea906127a6565b610bdb6000611a78565b60408051606081018252600080825260208201819052918101919091526107328261195d565b6060600480546107479061276b565b60095460ff161561104b57604051631267838f60e11b815260040160405180910390fd5b6001600160a01b0382163314156110755760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461110b5760405162461bcd60e51b81526004016108ea906127a6565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331461115d5760405162461bcd60e51b81526004016108ea906127a6565b600f805460ff1916911515919091179055565b61117b8484846115ea565b61118784848484611ac8565b6111a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060006111b785610f70565b9050806111d457505060408051600081526020810190915261129a565b6000816001600160401b038111156111ee576111ee61252a565b604051908082528060200260200182016040528015611217578160200160208202803683370190505b5090506000855b85811015611293578382141561123357611293565b876001600160a01b031661124682610ecf565b6001600160a01b03161415611281578083838151811061126857611268612824565b60209081029190910101528161127d81612809565b9250505b8061128b81612809565b91505061121e565b5090925050505b9392505050565b60606112ac82611548565b6113105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ea565b600f5460ff16156113ad57600e80546113289061276b565b80601f01602080910402602001604051908101604052809291908181526020018280546113549061276b565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b50505050509050919050565b600d6113b883611bd7565b6040516020016113c9929190612856565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114095760405162461bcd60e51b81526004016108ea906127a6565b6009805460ff19169055565b6000546001600160a01b0316331461143f5760405162461bcd60e51b81526004016108ea906127a6565b6001600160a01b0381166114a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ea565b6114ad81611a78565b50565b6000546001600160a01b031633146114da5760405162461bcd60e51b81526004016108ea906127a6565b8260005b818110156115405761152e8686838181106114fb576114fb612824565b90506020020160208101906115109190612473565b85858481811061152257611522612824565b905060200201356115d0565b8061153881612809565b9150506114de565b505050505050565b600060015482108015610732575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109e8828260405180602001604052806000815250611cd4565b60006115f58261195d565b80519091506000906001600160a01b0316336001600160a01b03161480611623575081516116239033610678565b8061163e575033611633846107ca565b6001600160a01b0316145b90508061165e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116935760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ba57604051633a954ecd60e21b815260040160405180910390fd5b6116c78585856001611ce1565b6116d76000848460000151611574565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117c1576001548110156117c157825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611829576040516356be441560e01b815260040160405180910390fd5b6001546118495760405163c0367cab60e01b815260040160405180910390fd5b600a54600154811061186e576040516370e89b1b60e01b815260040160405180910390fd5b60015482820160001981019110156118895750600154600019015b815b81811161192e576000818152600560205260409020546001600160a01b03161580156118cd5750600081815260056020526040902054600160e01b900460ff16155b156119265760006118dd8261195d565b80516000848152600560209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b60010161188b565b50600101600a555050565b60008060006119488585611d35565b9150915061195581611da5565b509392505050565b60408051606081018252600080825260208201819052918101919091526001548290811015611a5f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a5d5780516001600160a01b0316156119f4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a58579392505050565b6119f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611bcb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b0c9033908990889088906004016128fd565b602060405180830381600087803b158015611b2657600080fd5b505af1925050508015611b56575060408051601f3d908101601f19168201909252611b539181019061293a565b60015b611bb1573d808015611b84576040519150601f19603f3d011682016040523d82523d6000602084013e611b89565b606091505b508051611ba9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bcf565b5060015b949350505050565b606081611bfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c255780611c0f81612809565b9150611c1e9050600a8361296d565b9150611bff565b6000816001600160401b03811115611c3f57611c3f61252a565b6040519080825280601f01601f191660200182016040528015611c69576020820181803683370190505b5090505b8415611bcf57611c7e600183612981565b9150611c8b600a86612998565b611c969060306127f1565b60f81b818381518110611cab57611cab612824565b60200101906001600160f81b031916908160001a905350611ccd600a8661296d565b9450611c6d565b6108bb8383836001611f60565b60095460ff1615611d30576001600160a01b03841615611d305760405162461bcd60e51b815260206004820152600a60248201526914dbdd5b08189bdd5b9960b21b60448201526064016108ea565b6111a4565b600080825160411415611d6c5760208301516040840151606085015160001a611d60878285856120d8565b94509450505050611d9e565b825160401415611d965760208301516040840151611d8b8683836121c5565b935093505050611d9e565b506000905060025b9250929050565b6000816004811115611db957611db96124d1565b1415611dc25750565b6001816004811115611dd657611dd66124d1565b1415611e245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108ea565b6002816004811115611e3857611e386124d1565b1415611e865760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108ea565b6003816004811115611e9a57611e9a6124d1565b1415611ef35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108ea565b6004816004811115611f0757611f076124d1565b14156114ad5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108ea565b6001546001600160a01b038516611f8957604051622e076360e81b815260040160405180910390fd5b83611fa75760405163b562e8dd60e01b815260040160405180910390fd5b611fb46000868387611ce1565b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120cf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120a557506120a36000888488611ac8565b155b156120c3576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161204e565b50600155611804565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561210f57506000905060036121bc565b8460ff16601b1415801561212757508460ff16601c14155b1561213857506000905060046121bc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561218c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121b5576000600192509250506121bc565b9150600090505b94509492505050565b6000806001600160ff1b038316816121e260ff86901c601b6127f1565b90506121f0878288856120d8565b935093505050935093915050565b82805461220a9061276b565b90600052602060002090601f01602090048101928261222c5760008555612272565b82601f106122455782800160ff19823516178555612272565b82800160010185558215612272579182015b82811115612272578235825591602001919060010190612257565b5061227e929150612282565b5090565b5b8082111561227e5760008155600101612283565b6001600160e01b0319811681146114ad57600080fd5b6000602082840312156122bf57600080fd5b813561129a81612297565b60005b838110156122e55781810151838201526020016122cd565b838111156111a45750506000910152565b6000815180845261230e8160208601602086016122ca565b601f01601f19169290920160200192915050565b60208152600061129a60208301846122f6565b60006020828403121561234757600080fd5b5035919050565b80356001600160a01b038116811461236557600080fd5b919050565b6000806040838503121561237d57600080fd5b6123868361234e565b946020939093013593505050565b6000602082840312156123a657600080fd5b81356003811061129a57600080fd5b6000806000606084860312156123ca57600080fd5b6123d38461234e565b92506123e16020850161234e565b9150604084013590509250925092565b60008083601f84011261240357600080fd5b5081356001600160401b0381111561241a57600080fd5b602083019150836020828501011115611d9e57600080fd5b6000806020838503121561244557600080fd5b82356001600160401b0381111561245b57600080fd5b612467858286016123f1565b90969095509350505050565b60006020828403121561248557600080fd5b61129a8261234e565b8035801515811461236557600080fd5b600080604083850312156124b157600080fd5b6124ba8361234e565b91506124c86020840161248e565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061250957634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561252157600080fd5b61129a8261248e565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561255657600080fd5b61255f8561234e565b935061256d6020860161234e565b92506040850135915060608501356001600160401b038082111561259057600080fd5b818701915087601f8301126125a457600080fd5b8135818111156125b6576125b661252a565b604051601f8201601f19908116603f011681019083821181831017156125de576125de61252a565b816040528281528a60208487010111156125f757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006060848603121561263057600080fd5b6126398461234e565b95602085013595506040909401359392505050565b6020808252825182820181905260009190848201906040850190845b818110156126865783518352928401929184019160010161266a565b50909695505050505050565b600080604083850312156126a557600080fd5b6126ae8361234e565b91506124c86020840161234e565b60008083601f8401126126ce57600080fd5b5081356001600160401b038111156126e557600080fd5b6020830191508360208260051b8501011115611d9e57600080fd5b6000806000806040858703121561271657600080fd5b84356001600160401b038082111561272d57600080fd5b612739888389016126bc565b9096509450602087013591508082111561275257600080fd5b5061275f878288016126bc565b95989497509550505050565b600181811c9082168061277f57607f821691505b602082108114156127a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612804576128046127db565b500190565b600060001982141561281d5761281d6127db565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000815161284c8185602086016122ca565b9290920192915050565b600080845481600182811c91508083168061287257607f831692505b602080841082141561289257634e487b7160e01b86526022600452602486fd5b8180156128a657600181146128b7576128e4565b60ff198616895284890196506128e4565b60008b81526020902060005b868110156128dc5781548b8201529085019083016128c3565b505084890196505b5050505050506128f4818561283a565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612930908301846122f6565b9695505050505050565b60006020828403121561294c57600080fd5b815161129a81612297565b634e487b7160e01b600052601260045260246000fd5b60008261297c5761297c612957565b500490565b600082821015612993576129936127db565b500390565b6000826129a7576129a7612957565b50069056fea26469706673582212204a7b7fe416ce1dfbb69919eecd45fd4bea4980a67f4fddcadefa76c1ded50aa164736f6c63430008090033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063c1854270116100a0578063d7224ba01161006f578063d7224ba014610632578063de6cf0ee14610648578063e985e9c51461065d578063f2fde38b146106a6578063f993b42d146106c657600080fd5b8063c185427014610597578063c839fe94146105b1578063c87b56dd146105de578063d5abeb01146105fe57600080fd5b8063a22cb465116100e7578063a22cb465146104f0578063b1c9fe6e14610510578063b5aa4c7014610537578063b6aa475c14610557578063b88d4fde1461057757600080fd5b8063715018a6146104525780638da5cb5b146104675780639231ab2a1461048557806395d89b41146104db57600080fd5b80632edcf2ac1161019b5780634f89e0ba1161016a5780634f89e0ba146103c35780636352211e146103dd57806365dc9ef5146103fd5780636c35d2601461041257806370a082311461043257600080fd5b80632edcf2ac146103685780632fb5cbd81461037057806342842e0e14610383578063441b5eeb146103a357600080fd5b80630b3915e0116101e25780630b3915e0146102c557806318160ddd146102e557806322d8d5fe1461030857806323b872dd146103285780632d20fb601461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046122ad565b6106e6565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610738565b6040516102409190612322565b34801561027757600080fd5b5061028b610286366004612335565b6107ca565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461236a565b61080e565b005b3480156102d157600080fd5b506102c36102e0366004612394565b6108c0565b3480156102f157600080fd5b50600254600154035b604051908152602001610240565b34801561031457600080fd5b506102c3610323366004612335565b61091a565b34801561033457600080fd5b506102c36103433660046123b5565b6109ec565b34801561035457600080fd5b506102c3610363366004612335565b6109f7565b6102c3610a8a565b6102c361037e366004612432565b610bdd565b34801561038f57600080fd5b506102c361039e3660046123b5565b610e7e565b3480156103af57600080fd5b506102c36103be366004612432565b610e99565b3480156103cf57600080fd5b506009546102349060ff1681565b3480156103e957600080fd5b5061028b6103f8366004612335565b610ecf565b34801561040957600080fd5b506102c3610ee1565b34801561041e57600080fd5b506102c361042d366004612432565b610f3a565b34801561043e57600080fd5b506102fa61044d366004612473565b610f70565b34801561045e57600080fd5b506102c3610fbe565b34801561047357600080fd5b506000546001600160a01b031661028b565b34801561049157600080fd5b506104a56104a0366004612335565b610ff2565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156104e757600080fd5b5061025e611018565b3480156104fc57600080fd5b506102c361050b36600461249e565b611027565b34801561051c57600080fd5b50600c5461052a9060ff1681565b60405161024091906124e7565b34801561054357600080fd5b506102c3610552366004612473565b6110e1565b34801561056357600080fd5b506102c361057236600461250f565b611133565b34801561058357600080fd5b506102c3610592366004612540565b611170565b3480156105a357600080fd5b50600f546102349060ff1681565b3480156105bd57600080fd5b506105d16105cc36600461261b565b6111aa565b604051610240919061264e565b3480156105ea57600080fd5b5061025e6105f9366004612335565b6112a1565b34801561060a57600080fd5b506102fa7f000000000000000000000000000000000000000000000000000000000000271081565b34801561063e57600080fd5b506102fa600a5481565b34801561065457600080fd5b506102c36113df565b34801561066957600080fd5b50610234610678366004612692565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106b257600080fd5b506102c36106c1366004612473565b611415565b3480156106d257600080fd5b506102c36106e1366004612700565b6114b0565b60006001600160e01b031982166380ac58cd60e01b148061071757506001600160e01b03198216635b5e139f60e01b145b8061073257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107479061276b565b80601f01602080910402602001604051908101604052809291908181526020018280546107739061276b565b80156107c05780601f10610795576101008083540402835291602001916107c0565b820191906000526020600020905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b60006107d582611548565b6107f2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60095460ff161561083257604051631267838f60e11b815260040160405180910390fd5b600061083d82610ecf565b9050806001600160a01b0316836001600160a01b031614156108725760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089257506108908133610678565b155b156108b0576040516367d9dca160e11b815260040160405180910390fd5b6108bb838383611574565b505050565b6000546001600160a01b031633146108f35760405162461bcd60e51b81526004016108ea906127a6565b60405180910390fd5b600c805482919060ff19166001836002811115610912576109126124d1565b021790555050565b6000546001600160a01b031633146109445760405162461bcd60e51b81526004016108ea906127a6565b7f0000000000000000000000000000000000000000000000000000000000002710816109736002546001540390565b61097d91906127f1565b11156109c05760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108ea565b60005b818110156109e8576109d63360016115d0565b806109e081612809565b9150506109c3565b5050565b6108bb8383836115ea565b6000546001600160a01b03163314610a215760405162461bcd60e51b81526004016108ea906127a6565b6002600b541415610a745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ea565b6002600b55610a828161180b565b506001600b55565b323314610ad95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ea565b6002600c5460ff166002811115610af257610af26124d1565b14610b495760405162461bcd60e51b815260206004820152602160248201527f5075626c69632073616c65206d696e74696e67206973206e6f742061637469766044820152606560f81b60648201526084016108ea565b7f0000000000000000000000000000000000000000000000000000000000002710610b776002546001540390565b610b829060016127f1565b1115610bd05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016108ea565b610bdb3360016115d0565b565b323314610c2c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ea565b6001600c5460ff166002811115610c4557610c456124d1565b14610c925760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206d696e74696e67206e6f742061637469766500000000000060448201526064016108ea565b7f0000000000000000000000000000000000000000000000000000000000002710610cc06002546001540390565b610ccb9060016127f1565b1115610d195760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016108ea565b610daf82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610d8b9050565b6040516020818303038152906040528051906020012061193990919063ffffffff16565b600c5461010090046001600160a01b03908116911614610e115760405162461bcd60e51b815260206004820152601860248201527f5369676e65722061646472657373206d69736d617463682e000000000000000060448201526064016108ea565b3360009081526010602052604090205415610e5f5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016108ea565b3360008181526010602052604090206001908190556109e891906115d0565b6108bb83838360405180602001604052806000815250611170565b6000546001600160a01b03163314610ec35760405162461bcd60e51b81526004016108ea906127a6565b6108bb600d83836121fe565b6000610eda8261195d565b5192915050565b6000546001600160a01b03163314610f0b5760405162461bcd60e51b81526004016108ea906127a6565b6040514790339082156108fc029083906000818181858888f193505050501580156109e8573d6000803e3d6000fd5b6000546001600160a01b03163314610f645760405162461bcd60e51b81526004016108ea906127a6565b6108bb600e83836121fe565b60006001600160a01b038216610f99576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610fe85760405162461bcd60e51b81526004016108ea906127a6565b610bdb6000611a78565b60408051606081018252600080825260208201819052918101919091526107328261195d565b6060600480546107479061276b565b60095460ff161561104b57604051631267838f60e11b815260040160405180910390fd5b6001600160a01b0382163314156110755760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461110b5760405162461bcd60e51b81526004016108ea906127a6565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331461115d5760405162461bcd60e51b81526004016108ea906127a6565b600f805460ff1916911515919091179055565b61117b8484846115ea565b61118784848484611ac8565b6111a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606060006111b785610f70565b9050806111d457505060408051600081526020810190915261129a565b6000816001600160401b038111156111ee576111ee61252a565b604051908082528060200260200182016040528015611217578160200160208202803683370190505b5090506000855b85811015611293578382141561123357611293565b876001600160a01b031661124682610ecf565b6001600160a01b03161415611281578083838151811061126857611268612824565b60209081029190910101528161127d81612809565b9250505b8061128b81612809565b91505061121e565b5090925050505b9392505050565b60606112ac82611548565b6113105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ea565b600f5460ff16156113ad57600e80546113289061276b565b80601f01602080910402602001604051908101604052809291908181526020018280546113549061276b565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b50505050509050919050565b600d6113b883611bd7565b6040516020016113c9929190612856565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114095760405162461bcd60e51b81526004016108ea906127a6565b6009805460ff19169055565b6000546001600160a01b0316331461143f5760405162461bcd60e51b81526004016108ea906127a6565b6001600160a01b0381166114a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ea565b6114ad81611a78565b50565b6000546001600160a01b031633146114da5760405162461bcd60e51b81526004016108ea906127a6565b8260005b818110156115405761152e8686838181106114fb576114fb612824565b90506020020160208101906115109190612473565b85858481811061152257611522612824565b905060200201356115d0565b8061153881612809565b9150506114de565b505050505050565b600060015482108015610732575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109e8828260405180602001604052806000815250611cd4565b60006115f58261195d565b80519091506000906001600160a01b0316336001600160a01b03161480611623575081516116239033610678565b8061163e575033611633846107ca565b6001600160a01b0316145b90508061165e57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116935760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116ba57604051633a954ecd60e21b815260040160405180910390fd5b6116c78585856001611ce1565b6116d76000848460000151611574565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117c1576001548110156117c157825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611829576040516356be441560e01b815260040160405180910390fd5b6001546118495760405163c0367cab60e01b815260040160405180910390fd5b600a54600154811061186e576040516370e89b1b60e01b815260040160405180910390fd5b60015482820160001981019110156118895750600154600019015b815b81811161192e576000818152600560205260409020546001600160a01b03161580156118cd5750600081815260056020526040902054600160e01b900460ff16155b156119265760006118dd8261195d565b80516000848152600560209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b60010161188b565b50600101600a555050565b60008060006119488585611d35565b9150915061195581611da5565b509392505050565b60408051606081018252600080825260208201819052918101919091526001548290811015611a5f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a5d5780516001600160a01b0316156119f4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a58579392505050565b6119f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611bcb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b0c9033908990889088906004016128fd565b602060405180830381600087803b158015611b2657600080fd5b505af1925050508015611b56575060408051601f3d908101601f19168201909252611b539181019061293a565b60015b611bb1573d808015611b84576040519150601f19603f3d011682016040523d82523d6000602084013e611b89565b606091505b508051611ba9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bcf565b5060015b949350505050565b606081611bfb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c255780611c0f81612809565b9150611c1e9050600a8361296d565b9150611bff565b6000816001600160401b03811115611c3f57611c3f61252a565b6040519080825280601f01601f191660200182016040528015611c69576020820181803683370190505b5090505b8415611bcf57611c7e600183612981565b9150611c8b600a86612998565b611c969060306127f1565b60f81b818381518110611cab57611cab612824565b60200101906001600160f81b031916908160001a905350611ccd600a8661296d565b9450611c6d565b6108bb8383836001611f60565b60095460ff1615611d30576001600160a01b03841615611d305760405162461bcd60e51b815260206004820152600a60248201526914dbdd5b08189bdd5b9960b21b60448201526064016108ea565b6111a4565b600080825160411415611d6c5760208301516040840151606085015160001a611d60878285856120d8565b94509450505050611d9e565b825160401415611d965760208301516040840151611d8b8683836121c5565b935093505050611d9e565b506000905060025b9250929050565b6000816004811115611db957611db96124d1565b1415611dc25750565b6001816004811115611dd657611dd66124d1565b1415611e245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108ea565b6002816004811115611e3857611e386124d1565b1415611e865760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108ea565b6003816004811115611e9a57611e9a6124d1565b1415611ef35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108ea565b6004816004811115611f0757611f076124d1565b14156114ad5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108ea565b6001546001600160a01b038516611f8957604051622e076360e81b815260040160405180910390fd5b83611fa75760405163b562e8dd60e01b815260040160405180910390fd5b611fb46000868387611ce1565b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120cf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120a557506120a36000888488611ac8565b155b156120c3576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161204e565b50600155611804565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561210f57506000905060036121bc565b8460ff16601b1415801561212757508460ff16601c14155b1561213857506000905060046121bc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561218c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121b5576000600192509250506121bc565b9150600090505b94509492505050565b6000806001600160ff1b038316816121e260ff86901c601b6127f1565b90506121f0878288856120d8565b935093505050935093915050565b82805461220a9061276b565b90600052602060002090601f01602090048101928261222c5760008555612272565b82601f106122455782800160ff19823516178555612272565b82800160010185558215612272579182015b82811115612272578235825591602001919060010190612257565b5061227e929150612282565b5090565b5b8082111561227e5760008155600101612283565b6001600160e01b0319811681146114ad57600080fd5b6000602082840312156122bf57600080fd5b813561129a81612297565b60005b838110156122e55781810151838201526020016122cd565b838111156111a45750506000910152565b6000815180845261230e8160208601602086016122ca565b601f01601f19169290920160200192915050565b60208152600061129a60208301846122f6565b60006020828403121561234757600080fd5b5035919050565b80356001600160a01b038116811461236557600080fd5b919050565b6000806040838503121561237d57600080fd5b6123868361234e565b946020939093013593505050565b6000602082840312156123a657600080fd5b81356003811061129a57600080fd5b6000806000606084860312156123ca57600080fd5b6123d38461234e565b92506123e16020850161234e565b9150604084013590509250925092565b60008083601f84011261240357600080fd5b5081356001600160401b0381111561241a57600080fd5b602083019150836020828501011115611d9e57600080fd5b6000806020838503121561244557600080fd5b82356001600160401b0381111561245b57600080fd5b612467858286016123f1565b90969095509350505050565b60006020828403121561248557600080fd5b61129a8261234e565b8035801515811461236557600080fd5b600080604083850312156124b157600080fd5b6124ba8361234e565b91506124c86020840161248e565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061250957634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561252157600080fd5b61129a8261248e565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561255657600080fd5b61255f8561234e565b935061256d6020860161234e565b92506040850135915060608501356001600160401b038082111561259057600080fd5b818701915087601f8301126125a457600080fd5b8135818111156125b6576125b661252a565b604051601f8201601f19908116603f011681019083821181831017156125de576125de61252a565b816040528281528a60208487010111156125f757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060006060848603121561263057600080fd5b6126398461234e565b95602085013595506040909401359392505050565b6020808252825182820181905260009190848201906040850190845b818110156126865783518352928401929184019160010161266a565b50909695505050505050565b600080604083850312156126a557600080fd5b6126ae8361234e565b91506124c86020840161234e565b60008083601f8401126126ce57600080fd5b5081356001600160401b038111156126e557600080fd5b6020830191508360208260051b8501011115611d9e57600080fd5b6000806000806040858703121561271657600080fd5b84356001600160401b038082111561272d57600080fd5b612739888389016126bc565b9096509450602087013591508082111561275257600080fd5b5061275f878288016126bc565b95989497509550505050565b600181811c9082168061277f57607f821691505b602082108114156127a057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612804576128046127db565b500190565b600060001982141561281d5761281d6127db565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000815161284c8185602086016122ca565b9290920192915050565b600080845481600182811c91508083168061287257607f831692505b602080841082141561289257634e487b7160e01b86526022600452602486fd5b8180156128a657600181146128b7576128e4565b60ff198616895284890196506128e4565b60008b81526020902060005b868110156128dc5781548b8201529085019083016128c3565b505084890196505b5050505050506128f4818561283a565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612930908301846122f6565b9695505050505050565b60006020828403121561294c57600080fd5b815161129a81612297565b634e487b7160e01b600052601260045260246000fd5b60008261297c5761297c612957565b500490565b600082821015612993576129936127db565b500390565b6000826129a7576129a7612957565b50069056fea26469706673582212204a7b7fe416ce1dfbb69919eecd45fd4bea4980a67f4fddcadefa76c1ded50aa164736f6c63430008090033
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.