ERC-721
Overview
Max Total Supply
420 DIKPASS
Holders
263
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DIKPASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DikDikHeadzMintPass
Compiler Version
v0.8.8+commit.dddeac2f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Contract by pr0xy.io pragma solidity ^0.8.7; import './ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract DikDikHeadzMintPass is ERC721Enumerable, Ownable { using Strings for uint256; // Contract to recieve ETH raised in sales address public vault; // Control for public sale bool public active; // Control for presale bool public presaleActive; // Used for verification that an address is included in presale bytes32 public merkleRoot; // Reference to image and metadata storage string public uri; // Amount of ETH required per mint uint256 public price; // Storage of addresses that have minted with the `presale` function mapping(address => bool) public denylist; // Sets `price` upon deployment constructor(uint256 _price) ERC721("DikDikHeadzMintPass", "DIKPASS") { setPrice(_price); } // Override of `_baseURI()` that returns `uri` function _baseURI() internal view virtual override returns (string memory) { return uri; } // Sets `active` to turn on/off minting in `mint()` function setActive(bool _active) external onlyOwner { active = _active; } // Sets `presaleActive` to turn on/off minting in `presale()` function setPresaleActive(bool _presaleActive) external onlyOwner { presaleActive = _presaleActive; } // Sets `merkleRoot` to be used in `presale()` function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } // Set `price` to be used in `mint()` (called on deployment) function setPrice(uint256 _price) public onlyOwner { price = _price; } // Sets `uri` to be returned by `_baseURI()` function setURI(string memory _uri) external onlyOwner { uri = _uri; } // Set `vault` to recieve ETH from sales and used within `withdraw()` function setVault(address _vault) external onlyOwner { vault = _vault; } // Minting function used in the presale function presale(bytes32[] calldata _merkleProof) external payable { uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(presaleActive, 'Not Active'); require(supply + 1 < 2501, 'Supply Denied'); require(!denylist[msg.sender], 'Sender Denied'); require(msg.value >= price, 'Ether Amount Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid'); _safeMint(msg.sender, supply); denylist[msg.sender] = true; } // Minting function used in the public sale function mint(uint256 _amount) external payable { uint256 supply = totalSupply(); require(active, 'Not Active'); require(supply + _amount < 2501, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(msg.value >= price * _amount, 'Ether Amount Denied'); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } } // Send balance of contract to address referenced in `vault` function withdraw() external payable onlyOwner { require(vault != address(0), 'Vault Invalid'); require(payable(vault).send(address(this).balance)); } }
// 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 (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 pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "./ERC721.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // See {IERC721Enumerable-totalSupply}. function totalSupply() public view virtual override returns (uint256) { return _owners.length; } // See {IERC721Enumerable-tokenByIndex}. function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } // See {IERC721Enumerable-tokenOfOwnerByIndex}. function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } // See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; 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"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; // 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_; } // See {IERC721Metadata-name}. function name() public view virtual override returns (string memory) { return _name; } // See {IERC721Metadata-symbol}. function symbol() public view virtual override returns (string memory) { return _symbol; } // Base URI for computing {tokenURI}. function _baseURI() internal view virtual returns (string memory) { return ""; } // 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())) : ""; } // Returns whether `tokenId` exists. function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } // See {IERC721-balanceOf}. function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for(uint i; i < _owners.length; ++i){ if(owner == _owners[i]) ++count; } return count; } // 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; } // Approve `to` to operate on `tokenId` function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } // 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); } // 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]; } // See {IERC721-setApprovalForAll}. function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } // Returns whether `spender` is allowed to manage `tokenId`. 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)); } // See {IERC721-isApprovedForAll}. function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } // Transfers `tokenId` from `from` to `to`. (No restrictions on sender) 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); _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } // See {IERC721-transferFrom}. function transferFrom(address from, address to, uint256 tokenId) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } // Safely transfers `tokenId` token from `from` to `to`. 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"); } // 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); } // See {IERC721-safeTransferFrom}. function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } // Mints `tokenId` and transfers it to `to`. 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } // Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter. 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"); } // Safely mints `tokenId` and transfers it to `to`. function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } // Destroys `tokenId`. function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } // 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); } // Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. 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; } } // Hook that is called before any token transfer. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // 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 (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 (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/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 (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/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/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/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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"denylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_active","type":"bool"}],"name":"setActive","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presaleActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004a4738038062004a47833981810160405281019062000037919062000390565b6040518060400160405280601381526020017f44696b44696b486561647a4d696e7450617373000000000000000000000000008152506040518060400160405280600781526020017f44494b50415353000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620002a0565b508060019080519060200190620000d4929190620002a0565b505050620000f7620000eb6200010f60201b60201c565b6200011760201b60201c565b6200010881620001dd60201b60201c565b50620004aa565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ed6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002136200027660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002639062000423565b60405180910390fd5b8060098190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ae9062000474565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b600080fd5b6000819050919050565b6200036a8162000355565b81146200037657600080fd5b50565b6000815190506200038a816200035f565b92915050565b600060208284031215620003a957620003a862000350565b5b6000620003b98482850162000379565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200040b602083620003c2565b91506200041882620003d3565b602082019050919050565b600060208201905081810360008301526200043e81620003fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048d57607f821691505b60208210811415620004a457620004a362000445565b5b50919050565b61458d80620004ba6000396000f3fe6080604052600436106102045760003560e01c80636735918d11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610728578063e985e9c514610765578063eac989f8146107a2578063f2fde38b146107cd578063fbfa77cf146107f657610204565b8063a0712d6814610691578063a22cb465146106ad578063acec338a146106d6578063b88d4fde146106ff57610204565b80637cb64759116100e75780637cb64759146105be5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b578063a035b1fe1461066657610204565b80636735918d146105255780636817031b1461054157806370a082311461056a578063715018a6146105a757610204565b80632eb4a7ab1161019b5780633f8121a21161016a5780633f8121a21461042e57806342842e0e146104575780634f6ccce71461048057806353135ca0146104bd5780636352211e146104e857610204565b80632eb4a7ab1461037f5780632f745c59146103aa5780633371bfff146103e75780633ccfd60b1461042457610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b31461030257806318160ddd1461032b57806323b872dd1461035657610204565b806301ffc9a71461020957806302fb0c5e1461024657806302fe53051461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c9f565b610821565b60405161023d9190612ce7565b60405180910390f35b34801561025257600080fd5b5061025b61089b565b6040516102689190612ce7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e48565b6108ae565b005b3480156102a657600080fd5b506102af610944565b6040516102bc9190612f19565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612f71565b6109d6565b6040516102f99190612fdf565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613026565b610a5b565b005b34801561033757600080fd5b50610340610b73565b60405161034d9190613075565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613090565b610b80565b005b34801561038b57600080fd5b50610394610be0565b6040516103a191906130fc565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613026565b610be6565b6040516103de9190613075565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613117565b610d2b565b60405161041b9190612ce7565b60405180910390f35b61042c610d4b565b005b34801561043a57600080fd5b5061045560048036038101906104509190613170565b610ebb565b005b34801561046357600080fd5b5061047e60048036038101906104799190613090565b610f54565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612f71565b610f74565b6040516104b49190613075565b60405180910390f35b3480156104c957600080fd5b506104d2610fc5565b6040516104df9190612ce7565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612f71565b610fd8565b60405161051c9190612fdf565b60405180910390f35b61053f600480360381019061053a91906131fd565b611095565b005b34801561054d57600080fd5b5061056860048036038101906105639190613117565b6113a0565b005b34801561057657600080fd5b50610591600480360381019061058c9190613117565b611460565b60405161059e9190613075565b60405180910390f35b3480156105b357600080fd5b506105bc61157c565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613276565b611604565b005b3480156105f357600080fd5b506105fc61168a565b6040516106099190612fdf565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612f71565b6116b4565b005b34801561064757600080fd5b5061065061173a565b60405161065d9190612f19565b60405180910390f35b34801561067257600080fd5b5061067b6117cc565b6040516106889190613075565b60405180910390f35b6106ab60048036038101906106a69190612f71565b6117d2565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906132a3565b611972565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613170565b611af3565b005b34801561070b57600080fd5b5061072660048036038101906107219190613384565b611b8c565b005b34801561073457600080fd5b5061074f600480360381019061074a9190612f71565b611bee565b60405161075c9190612f19565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613407565b611c95565b6040516107999190612ce7565b60405180910390f35b3480156107ae57600080fd5b506107b7611d29565b6040516107c49190612f19565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613117565b611db7565b005b34801561080257600080fd5b5061080b611eaf565b6040516108189190612fdf565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610894575061089382611ed5565b5b9050919050565b600660149054906101000a900460ff1681565b6108b6611fb7565b73ffffffffffffffffffffffffffffffffffffffff166108d461168a565b73ffffffffffffffffffffffffffffffffffffffff161461092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190613493565b60405180910390fd5b8060089080519060200190610940929190612b90565b5050565b606060008054610953906134e2565b80601f016020809104026020016040519081016040528092919081815260200182805461097f906134e2565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611fbf565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613586565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610fd8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613618565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611fb7565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611fb7565b611c95565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906136aa565b60405180910390fd5b610b6e8383612047565b505050565b6000600280549050905090565b610b91610b8b611fb7565b82612100565b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc79061373c565b60405180910390fd5b610bdb8383836121de565b505050565b60075481565b6000610bf183611460565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906137ce565b60405180910390fd5b6000805b600280549050811015610ce95760028181548110610c5757610c566137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd65783821415610cc7578092505050610d25565b8180610cd29061384c565b9250505b8080610ce19061384c565b915050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906137ce565b60405180910390fd5b92915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610d53611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610d7161168a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906138e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610eb957600080fd5b565b610ec3611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610ee161168a565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613493565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b610f6f83838360405180602001604052806000815250611b8c565b505050565b60006002805490508210610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613973565b60405180910390fd5b819050919050565b600660159054906101000a900460ff1681565b60008060028381548110610fef57610fee6137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613a05565b60405180910390fd5b80915050919050565b600061109f610b73565b90506000336040516020016110b49190613a6d565b604051602081830303815290604052805190602001209050600660159054906101000a900460ff1661111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613ad4565b60405180910390fd5b6109c560018361112b9190613af4565b1061116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613b96565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613c02565b60405180910390fd5b60095434101561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613cda565b60405180910390fd5b6112f9848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612397565b611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d46565b60405180910390fd5b61134233836123ae565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6113a8611fb7565b73ffffffffffffffffffffffffffffffffffffffff166113c661168a565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613493565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613dd8565b60405180910390fd5b6000805b60028054905081101561157257600281815481106114f6576114f56137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611561578161155e9061384c565b91505b8061156b9061384c565b90506114d5565b5080915050919050565b611584611fb7565b73ffffffffffffffffffffffffffffffffffffffff166115a261168a565b73ffffffffffffffffffffffffffffffffffffffff16146115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613493565b60405180910390fd5b61160260006123cc565b565b61160c611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661162a61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613493565b60405180910390fd5b8060078190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bc611fb7565b73ffffffffffffffffffffffffffffffffffffffff166116da61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613493565b60405180910390fd5b8060098190555050565b606060018054611749906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611775906134e2565b80156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b5050505050905090565b60095481565b60006117dc610b73565b9050600660149054906101000a900460ff1661182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613ad4565b60405180910390fd5b6109c5828261183c9190613af4565b1061187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613b96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613cda565b60405180910390fd5b816009546118f89190613df8565b34101561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613c6e565b60405180910390fd5b60005b8281101561196d5761195a3382846119559190613af4565b6123ae565b80806119659061384c565b91505061193d565b505050565b61197a611fb7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90613e9e565b60405180910390fd5b80600460006119f5611fb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa2611fb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae79190612ce7565b60405180910390a35050565b611afb611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611b1961168a565b73ffffffffffffffffffffffffffffffffffffffff1614611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613493565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b611b9d611b97611fb7565b83612100565b611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061373c565b60405180910390fd5b611be884848484612492565b50505050565b6060611bf982611fbf565b611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613f30565b60405180910390fd5b6000611c426124ee565b90506000815111611c625760405180602001604052806000815250611c8d565b80611c6c84612580565b604051602001611c7d929190613f8c565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60088054611d36906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d62906134e2565b8015611daf5780601f10611d8457610100808354040283529160200191611daf565b820191906000526020600020905b815481529060010190602001808311611d9257829003601f168201915b505050505081565b611dbf611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611ddd61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614022565b60405180910390fd5b611eac816123cc565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fa057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fb05750611faf826126e1565b5b9050919050565b600033905090565b6000600280549050821080156120405750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611ffc57611ffb6137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120ba83610fd8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210b82611fbf565b61214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906140b4565b60405180910390fd5b600061215583610fd8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c457508373ffffffffffffffffffffffffffffffffffffffff166121ac846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d557506121d48185611c95565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121fe82610fd8565b73ffffffffffffffffffffffffffffffffffffffff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90614146565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906141d8565b60405180910390fd5b6122cf83838361274b565b6122da600082612047565b81600282815481106122ef576122ee6137ee565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826123a48584612750565b1490509392505050565b6123c8828260405180602001604052806000815250612803565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61249d8484846121de565b6124a98484848461285e565b6124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061426a565b60405180910390fd5b50505050565b6060600880546124fd906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054612529906134e2565b80156125765780601f1061254b57610100808354040283529160200191612576565b820191906000526020600020905b81548152906001019060200180831161255957829003601f168201915b5050505050905090565b606060008214156125c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126dc565b600082905060005b600082146125fa5780806125e39061384c565b915050600a826125f391906142b9565b91506125d0565b60008167ffffffffffffffff81111561261657612615612d1d565b5b6040519080825280601f01601f1916602001820160405280156126485781602001600182028036833780820191505090505b5090505b600085146126d55760018261266191906142ea565b9150600a85612670919061431e565b603061267c9190613af4565b60f81b818381518110612692576126916137ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ce91906142b9565b945061264c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b84518110156127f8576000858281518110612777576127766137ee565b5b602002602001015190508083116127b857828160405160200161279b929190614370565b6040516020818303038152906040528051906020012092506127e4565b80836040516020016127cb929190614370565b6040516020818303038152906040528051906020012092505b5080806127f09061384c565b915050612759565b508091505092915050565b61280d83836129f5565b61281a600084848461285e565b612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128509061426a565b60405180910390fd5b505050565b600061287f8473ffffffffffffffffffffffffffffffffffffffff16612b7d565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a8611fb7565b8786866040518563ffffffff1660e01b81526004016128ca94939291906143f1565b602060405180830381600087803b1580156128e457600080fd5b505af192505050801561291557506040513d601f19601f820116820180604052508101906129129190614452565b60015b612998573d8060008114612945576040519150601f19603f3d011682016040523d82523d6000602084013e61294a565b606091505b50600081511415612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129879061426a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ed565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c906144cb565b60405180910390fd5b612a6e81611fbf565b15612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa590614537565b60405180910390fd5b612aba6000838361274b565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b9c906134e2565b90600052602060002090601f016020900481019282612bbe5760008555612c05565b82601f10612bd757805160ff1916838001178555612c05565b82800160010185558215612c05579182015b82811115612c04578251825591602001919060010190612be9565b5b509050612c129190612c16565b5090565b5b80821115612c2f576000816000905550600101612c17565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7c81612c47565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600060208284031215612cb557612cb4612c3d565b5b6000612cc384828501612c8a565b91505092915050565b60008115159050919050565b612ce181612ccc565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5582612d0c565b810181811067ffffffffffffffff82111715612d7457612d73612d1d565b5b80604052505050565b6000612d87612c33565b9050612d938282612d4c565b919050565b600067ffffffffffffffff821115612db357612db2612d1d565b5b612dbc82612d0c565b9050602081019050919050565b82818337600083830152505050565b6000612deb612de684612d98565b612d7d565b905082815260208101848484011115612e0757612e06612d07565b5b612e12848285612dc9565b509392505050565b600082601f830112612e2f57612e2e612d02565b5b8135612e3f848260208601612dd8565b91505092915050565b600060208284031215612e5e57612e5d612c3d565b5b600082013567ffffffffffffffff811115612e7c57612e7b612c42565b5b612e8884828501612e1a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ecb578082015181840152602081019050612eb0565b83811115612eda576000848401525b50505050565b6000612eeb82612e91565b612ef58185612e9c565b9350612f05818560208601612ead565b612f0e81612d0c565b840191505092915050565b60006020820190508181036000830152612f338184612ee0565b905092915050565b6000819050919050565b612f4e81612f3b565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b600060208284031215612f8757612f86612c3d565b5b6000612f9584828501612f5c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc982612f9e565b9050919050565b612fd981612fbe565b82525050565b6000602082019050612ff46000830184612fd0565b92915050565b61300381612fbe565b811461300e57600080fd5b50565b60008135905061302081612ffa565b92915050565b6000806040838503121561303d5761303c612c3d565b5b600061304b85828601613011565b925050602061305c85828601612f5c565b9150509250929050565b61306f81612f3b565b82525050565b600060208201905061308a6000830184613066565b92915050565b6000806000606084860312156130a9576130a8612c3d565b5b60006130b786828701613011565b93505060206130c886828701613011565b92505060406130d986828701612f5c565b9150509250925092565b6000819050919050565b6130f6816130e3565b82525050565b600060208201905061311160008301846130ed565b92915050565b60006020828403121561312d5761312c612c3d565b5b600061313b84828501613011565b91505092915050565b61314d81612ccc565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b60006020828403121561318657613185612c3d565b5b60006131948482850161315b565b91505092915050565b600080fd5b600080fd5b60008083601f8401126131bd576131bc612d02565b5b8235905067ffffffffffffffff8111156131da576131d961319d565b5b6020830191508360208202830111156131f6576131f56131a2565b5b9250929050565b6000806020838503121561321457613213612c3d565b5b600083013567ffffffffffffffff81111561323257613231612c42565b5b61323e858286016131a7565b92509250509250929050565b613253816130e3565b811461325e57600080fd5b50565b6000813590506132708161324a565b92915050565b60006020828403121561328c5761328b612c3d565b5b600061329a84828501613261565b91505092915050565b600080604083850312156132ba576132b9612c3d565b5b60006132c885828601613011565b92505060206132d98582860161315b565b9150509250929050565b600067ffffffffffffffff8211156132fe576132fd612d1d565b5b61330782612d0c565b9050602081019050919050565b6000613327613322846132e3565b612d7d565b90508281526020810184848401111561334357613342612d07565b5b61334e848285612dc9565b509392505050565b600082601f83011261336b5761336a612d02565b5b813561337b848260208601613314565b91505092915050565b6000806000806080858703121561339e5761339d612c3d565b5b60006133ac87828801613011565b94505060206133bd87828801613011565b93505060406133ce87828801612f5c565b925050606085013567ffffffffffffffff8111156133ef576133ee612c42565b5b6133fb87828801613356565b91505092959194509250565b6000806040838503121561341e5761341d612c3d565b5b600061342c85828601613011565b925050602061343d85828601613011565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347d602083612e9c565b915061348882613447565b602082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fa57607f821691505b6020821081141561350e5761350d6134b3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613570602c83612e9c565b915061357b82613514565b604082019050919050565b6000602082019050818103600083015261359f81613563565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613602602183612e9c565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613694603883612e9c565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613726603183612e9c565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137b8602b83612e9c565b91506137c38261375c565b604082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061385782612f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388a5761388961381d565b5b600182019050919050565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b60006138cb600d83612e9c565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061395d602c83612e9c565b915061396882613901565b604082019050919050565b6000602082019050818103600083015261398c81613950565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006139ef602983612e9c565b91506139fa82613993565b604082019050919050565b60006020820190508181036000830152613a1e816139e2565b9050919050565b60008160601b9050919050565b6000613a3d82613a25565b9050919050565b6000613a4f82613a32565b9050919050565b613a67613a6282612fbe565b613a44565b82525050565b6000613a798284613a56565b60148201915081905092915050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000613abe600a83612e9c565b9150613ac982613a88565b602082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b6000613aff82612f3b565b9150613b0a83612f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3f57613b3e61381d565b5b828201905092915050565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b6000613b80600d83612e9c565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f53656e6465722044656e69656400000000000000000000000000000000000000600082015250565b6000613bec600d83612e9c565b9150613bf782613bb6565b602082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b6000613c58601383612e9c565b9150613c6382613c22565b602082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b6000613cc4600f83612e9c565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b6000613d30600d83612e9c565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613dc2602a83612e9c565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b6000613e0382612f3b565b9150613e0e83612f3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4757613e4661381d565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e88601983612e9c565b9150613e9382613e52565b602082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f1a602f83612e9c565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b600081905092915050565b6000613f6682612e91565b613f708185613f50565b9350613f80818560208601612ead565b80840191505092915050565b6000613f988285613f5b565b9150613fa48284613f5b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400c602683612e9c565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061409e602c83612e9c565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614130602983612e9c565b915061413b826140d4565b604082019050919050565b6000602082019050818103600083015261415f81614123565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141c2602483612e9c565b91506141cd82614166565b604082019050919050565b600060208201905081810360008301526141f1816141b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614254603283612e9c565b915061425f826141f8565b604082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142c482612f3b565b91506142cf83612f3b565b9250826142df576142de61428a565b5b828204905092915050565b60006142f582612f3b565b915061430083612f3b565b9250828210156143135761431261381d565b5b828203905092915050565b600061432982612f3b565b915061433483612f3b565b9250826143445761434361428a565b5b828206905092915050565b6000819050919050565b61436a614365826130e3565b61434f565b82525050565b600061437c8285614359565b60208201915061438c8284614359565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006143c38261439c565b6143cd81856143a7565b93506143dd818560208601612ead565b6143e681612d0c565b840191505092915050565b60006080820190506144066000830187612fd0565b6144136020830186612fd0565b6144206040830185613066565b818103606083015261443281846143b8565b905095945050505050565b60008151905061444c81612c73565b92915050565b60006020828403121561446857614467612c3d565b5b60006144768482850161443d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144b5602083612e9c565b91506144c08261447f565b602082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614521601c83612e9c565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b905091905056fea26469706673582212208685c12f18c549df75ee12949c0e4c4aa76f87004d39c17e7eade274b34d00b464736f6c634300080800330000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636735918d11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610728578063e985e9c514610765578063eac989f8146107a2578063f2fde38b146107cd578063fbfa77cf146107f657610204565b8063a0712d6814610691578063a22cb465146106ad578063acec338a146106d6578063b88d4fde146106ff57610204565b80637cb64759116100e75780637cb64759146105be5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b578063a035b1fe1461066657610204565b80636735918d146105255780636817031b1461054157806370a082311461056a578063715018a6146105a757610204565b80632eb4a7ab1161019b5780633f8121a21161016a5780633f8121a21461042e57806342842e0e146104575780634f6ccce71461048057806353135ca0146104bd5780636352211e146104e857610204565b80632eb4a7ab1461037f5780632f745c59146103aa5780633371bfff146103e75780633ccfd60b1461042457610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b31461030257806318160ddd1461032b57806323b872dd1461035657610204565b806301ffc9a71461020957806302fb0c5e1461024657806302fe53051461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c9f565b610821565b60405161023d9190612ce7565b60405180910390f35b34801561025257600080fd5b5061025b61089b565b6040516102689190612ce7565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e48565b6108ae565b005b3480156102a657600080fd5b506102af610944565b6040516102bc9190612f19565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612f71565b6109d6565b6040516102f99190612fdf565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613026565b610a5b565b005b34801561033757600080fd5b50610340610b73565b60405161034d9190613075565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613090565b610b80565b005b34801561038b57600080fd5b50610394610be0565b6040516103a191906130fc565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613026565b610be6565b6040516103de9190613075565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613117565b610d2b565b60405161041b9190612ce7565b60405180910390f35b61042c610d4b565b005b34801561043a57600080fd5b5061045560048036038101906104509190613170565b610ebb565b005b34801561046357600080fd5b5061047e60048036038101906104799190613090565b610f54565b005b34801561048c57600080fd5b506104a760048036038101906104a29190612f71565b610f74565b6040516104b49190613075565b60405180910390f35b3480156104c957600080fd5b506104d2610fc5565b6040516104df9190612ce7565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612f71565b610fd8565b60405161051c9190612fdf565b60405180910390f35b61053f600480360381019061053a91906131fd565b611095565b005b34801561054d57600080fd5b5061056860048036038101906105639190613117565b6113a0565b005b34801561057657600080fd5b50610591600480360381019061058c9190613117565b611460565b60405161059e9190613075565b60405180910390f35b3480156105b357600080fd5b506105bc61157c565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613276565b611604565b005b3480156105f357600080fd5b506105fc61168a565b6040516106099190612fdf565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612f71565b6116b4565b005b34801561064757600080fd5b5061065061173a565b60405161065d9190612f19565b60405180910390f35b34801561067257600080fd5b5061067b6117cc565b6040516106889190613075565b60405180910390f35b6106ab60048036038101906106a69190612f71565b6117d2565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906132a3565b611972565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613170565b611af3565b005b34801561070b57600080fd5b5061072660048036038101906107219190613384565b611b8c565b005b34801561073457600080fd5b5061074f600480360381019061074a9190612f71565b611bee565b60405161075c9190612f19565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613407565b611c95565b6040516107999190612ce7565b60405180910390f35b3480156107ae57600080fd5b506107b7611d29565b6040516107c49190612f19565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613117565b611db7565b005b34801561080257600080fd5b5061080b611eaf565b6040516108189190612fdf565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610894575061089382611ed5565b5b9050919050565b600660149054906101000a900460ff1681565b6108b6611fb7565b73ffffffffffffffffffffffffffffffffffffffff166108d461168a565b73ffffffffffffffffffffffffffffffffffffffff161461092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190613493565b60405180910390fd5b8060089080519060200190610940929190612b90565b5050565b606060008054610953906134e2565b80601f016020809104026020016040519081016040528092919081815260200182805461097f906134e2565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e182611fbf565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613586565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6682610fd8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613618565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af6611fb7565b73ffffffffffffffffffffffffffffffffffffffff161480610b255750610b2481610b1f611fb7565b611c95565b5b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906136aa565b60405180910390fd5b610b6e8383612047565b505050565b6000600280549050905090565b610b91610b8b611fb7565b82612100565b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc79061373c565b60405180910390fd5b610bdb8383836121de565b505050565b60075481565b6000610bf183611460565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906137ce565b60405180910390fd5b6000805b600280549050811015610ce95760028181548110610c5757610c566137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd65783821415610cc7578092505050610d25565b8180610cd29061384c565b9250505b8080610ce19061384c565b915050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906137ce565b60405180910390fd5b92915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610d53611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610d7161168a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906138e1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610eb957600080fd5b565b610ec3611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610ee161168a565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613493565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b610f6f83838360405180602001604052806000815250611b8c565b505050565b60006002805490508210610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613973565b60405180910390fd5b819050919050565b600660159054906101000a900460ff1681565b60008060028381548110610fef57610fee6137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613a05565b60405180910390fd5b80915050919050565b600061109f610b73565b90506000336040516020016110b49190613a6d565b604051602081830303815290604052805190602001209050600660159054906101000a900460ff1661111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613ad4565b60405180910390fd5b6109c560018361112b9190613af4565b1061116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613b96565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613c02565b60405180910390fd5b60095434101561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613c6e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613cda565b60405180910390fd5b6112f9848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612397565b611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d46565b60405180910390fd5b61134233836123ae565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6113a8611fb7565b73ffffffffffffffffffffffffffffffffffffffff166113c661168a565b73ffffffffffffffffffffffffffffffffffffffff161461141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390613493565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613dd8565b60405180910390fd5b6000805b60028054905081101561157257600281815481106114f6576114f56137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611561578161155e9061384c565b91505b8061156b9061384c565b90506114d5565b5080915050919050565b611584611fb7565b73ffffffffffffffffffffffffffffffffffffffff166115a261168a565b73ffffffffffffffffffffffffffffffffffffffff16146115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613493565b60405180910390fd5b61160260006123cc565b565b61160c611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661162a61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613493565b60405180910390fd5b8060078190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116bc611fb7565b73ffffffffffffffffffffffffffffffffffffffff166116da61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613493565b60405180910390fd5b8060098190555050565b606060018054611749906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611775906134e2565b80156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b5050505050905090565b60095481565b60006117dc610b73565b9050600660149054906101000a900460ff1661182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613ad4565b60405180910390fd5b6109c5828261183c9190613af4565b1061187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613b96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613cda565b60405180910390fd5b816009546118f89190613df8565b34101561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190613c6e565b60405180910390fd5b60005b8281101561196d5761195a3382846119559190613af4565b6123ae565b80806119659061384c565b91505061193d565b505050565b61197a611fb7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90613e9e565b60405180910390fd5b80600460006119f5611fb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aa2611fb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae79190612ce7565b60405180910390a35050565b611afb611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611b1961168a565b73ffffffffffffffffffffffffffffffffffffffff1614611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613493565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b611b9d611b97611fb7565b83612100565b611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061373c565b60405180910390fd5b611be884848484612492565b50505050565b6060611bf982611fbf565b611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613f30565b60405180910390fd5b6000611c426124ee565b90506000815111611c625760405180602001604052806000815250611c8d565b80611c6c84612580565b604051602001611c7d929190613f8c565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60088054611d36906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d62906134e2565b8015611daf5780601f10611d8457610100808354040283529160200191611daf565b820191906000526020600020905b815481529060010190602001808311611d9257829003601f168201915b505050505081565b611dbf611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611ddd61168a565b73ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614022565b60405180910390fd5b611eac816123cc565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fa057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fb05750611faf826126e1565b5b9050919050565b600033905090565b6000600280549050821080156120405750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611ffc57611ffb6137ee565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120ba83610fd8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210b82611fbf565b61214a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906140b4565b60405180910390fd5b600061215583610fd8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c457508373ffffffffffffffffffffffffffffffffffffffff166121ac846109d6565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d557506121d48185611c95565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121fe82610fd8565b73ffffffffffffffffffffffffffffffffffffffff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90614146565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906141d8565b60405180910390fd5b6122cf83838361274b565b6122da600082612047565b81600282815481106122ef576122ee6137ee565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826123a48584612750565b1490509392505050565b6123c8828260405180602001604052806000815250612803565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61249d8484846121de565b6124a98484848461285e565b6124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061426a565b60405180910390fd5b50505050565b6060600880546124fd906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054612529906134e2565b80156125765780601f1061254b57610100808354040283529160200191612576565b820191906000526020600020905b81548152906001019060200180831161255957829003601f168201915b5050505050905090565b606060008214156125c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126dc565b600082905060005b600082146125fa5780806125e39061384c565b915050600a826125f391906142b9565b91506125d0565b60008167ffffffffffffffff81111561261657612615612d1d565b5b6040519080825280601f01601f1916602001820160405280156126485781602001600182028036833780820191505090505b5090505b600085146126d55760018261266191906142ea565b9150600a85612670919061431e565b603061267c9190613af4565b60f81b818381518110612692576126916137ee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ce91906142b9565b945061264c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b84518110156127f8576000858281518110612777576127766137ee565b5b602002602001015190508083116127b857828160405160200161279b929190614370565b6040516020818303038152906040528051906020012092506127e4565b80836040516020016127cb929190614370565b6040516020818303038152906040528051906020012092505b5080806127f09061384c565b915050612759565b508091505092915050565b61280d83836129f5565b61281a600084848461285e565b612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128509061426a565b60405180910390fd5b505050565b600061287f8473ffffffffffffffffffffffffffffffffffffffff16612b7d565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a8611fb7565b8786866040518563ffffffff1660e01b81526004016128ca94939291906143f1565b602060405180830381600087803b1580156128e457600080fd5b505af192505050801561291557506040513d601f19601f820116820180604052508101906129129190614452565b60015b612998573d8060008114612945576040519150601f19603f3d011682016040523d82523d6000602084013e61294a565b606091505b50600081511415612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129879061426a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ed565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c906144cb565b60405180910390fd5b612a6e81611fbf565b15612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa590614537565b60405180910390fd5b612aba6000838361274b565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b9c906134e2565b90600052602060002090601f016020900481019282612bbe5760008555612c05565b82601f10612bd757805160ff1916838001178555612c05565b82800160010185558215612c05579182015b82811115612c04578251825591602001919060010190612be9565b5b509050612c129190612c16565b5090565b5b80821115612c2f576000816000905550600101612c17565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7c81612c47565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600060208284031215612cb557612cb4612c3d565b5b6000612cc384828501612c8a565b91505092915050565b60008115159050919050565b612ce181612ccc565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5582612d0c565b810181811067ffffffffffffffff82111715612d7457612d73612d1d565b5b80604052505050565b6000612d87612c33565b9050612d938282612d4c565b919050565b600067ffffffffffffffff821115612db357612db2612d1d565b5b612dbc82612d0c565b9050602081019050919050565b82818337600083830152505050565b6000612deb612de684612d98565b612d7d565b905082815260208101848484011115612e0757612e06612d07565b5b612e12848285612dc9565b509392505050565b600082601f830112612e2f57612e2e612d02565b5b8135612e3f848260208601612dd8565b91505092915050565b600060208284031215612e5e57612e5d612c3d565b5b600082013567ffffffffffffffff811115612e7c57612e7b612c42565b5b612e8884828501612e1a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ecb578082015181840152602081019050612eb0565b83811115612eda576000848401525b50505050565b6000612eeb82612e91565b612ef58185612e9c565b9350612f05818560208601612ead565b612f0e81612d0c565b840191505092915050565b60006020820190508181036000830152612f338184612ee0565b905092915050565b6000819050919050565b612f4e81612f3b565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b600060208284031215612f8757612f86612c3d565b5b6000612f9584828501612f5c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc982612f9e565b9050919050565b612fd981612fbe565b82525050565b6000602082019050612ff46000830184612fd0565b92915050565b61300381612fbe565b811461300e57600080fd5b50565b60008135905061302081612ffa565b92915050565b6000806040838503121561303d5761303c612c3d565b5b600061304b85828601613011565b925050602061305c85828601612f5c565b9150509250929050565b61306f81612f3b565b82525050565b600060208201905061308a6000830184613066565b92915050565b6000806000606084860312156130a9576130a8612c3d565b5b60006130b786828701613011565b93505060206130c886828701613011565b92505060406130d986828701612f5c565b9150509250925092565b6000819050919050565b6130f6816130e3565b82525050565b600060208201905061311160008301846130ed565b92915050565b60006020828403121561312d5761312c612c3d565b5b600061313b84828501613011565b91505092915050565b61314d81612ccc565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b60006020828403121561318657613185612c3d565b5b60006131948482850161315b565b91505092915050565b600080fd5b600080fd5b60008083601f8401126131bd576131bc612d02565b5b8235905067ffffffffffffffff8111156131da576131d961319d565b5b6020830191508360208202830111156131f6576131f56131a2565b5b9250929050565b6000806020838503121561321457613213612c3d565b5b600083013567ffffffffffffffff81111561323257613231612c42565b5b61323e858286016131a7565b92509250509250929050565b613253816130e3565b811461325e57600080fd5b50565b6000813590506132708161324a565b92915050565b60006020828403121561328c5761328b612c3d565b5b600061329a84828501613261565b91505092915050565b600080604083850312156132ba576132b9612c3d565b5b60006132c885828601613011565b92505060206132d98582860161315b565b9150509250929050565b600067ffffffffffffffff8211156132fe576132fd612d1d565b5b61330782612d0c565b9050602081019050919050565b6000613327613322846132e3565b612d7d565b90508281526020810184848401111561334357613342612d07565b5b61334e848285612dc9565b509392505050565b600082601f83011261336b5761336a612d02565b5b813561337b848260208601613314565b91505092915050565b6000806000806080858703121561339e5761339d612c3d565b5b60006133ac87828801613011565b94505060206133bd87828801613011565b93505060406133ce87828801612f5c565b925050606085013567ffffffffffffffff8111156133ef576133ee612c42565b5b6133fb87828801613356565b91505092959194509250565b6000806040838503121561341e5761341d612c3d565b5b600061342c85828601613011565b925050602061343d85828601613011565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347d602083612e9c565b915061348882613447565b602082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fa57607f821691505b6020821081141561350e5761350d6134b3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613570602c83612e9c565b915061357b82613514565b604082019050919050565b6000602082019050818103600083015261359f81613563565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613602602183612e9c565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613694603883612e9c565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613726603183612e9c565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137b8602b83612e9c565b91506137c38261375c565b604082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061385782612f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561388a5761388961381d565b5b600182019050919050565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b60006138cb600d83612e9c565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061395d602c83612e9c565b915061396882613901565b604082019050919050565b6000602082019050818103600083015261398c81613950565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006139ef602983612e9c565b91506139fa82613993565b604082019050919050565b60006020820190508181036000830152613a1e816139e2565b9050919050565b60008160601b9050919050565b6000613a3d82613a25565b9050919050565b6000613a4f82613a32565b9050919050565b613a67613a6282612fbe565b613a44565b82525050565b6000613a798284613a56565b60148201915081905092915050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000613abe600a83612e9c565b9150613ac982613a88565b602082019050919050565b60006020820190508181036000830152613aed81613ab1565b9050919050565b6000613aff82612f3b565b9150613b0a83612f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3f57613b3e61381d565b5b828201905092915050565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b6000613b80600d83612e9c565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f53656e6465722044656e69656400000000000000000000000000000000000000600082015250565b6000613bec600d83612e9c565b9150613bf782613bb6565b602082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b6000613c58601383612e9c565b9150613c6382613c22565b602082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b6000613cc4600f83612e9c565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b6000613d30600d83612e9c565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613dc2602a83612e9c565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b6000613e0382612f3b565b9150613e0e83612f3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4757613e4661381d565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e88601983612e9c565b9150613e9382613e52565b602082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f1a602f83612e9c565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b600081905092915050565b6000613f6682612e91565b613f708185613f50565b9350613f80818560208601612ead565b80840191505092915050565b6000613f988285613f5b565b9150613fa48284613f5b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400c602683612e9c565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061409e602c83612e9c565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614130602983612e9c565b915061413b826140d4565b604082019050919050565b6000602082019050818103600083015261415f81614123565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141c2602483612e9c565b91506141cd82614166565b604082019050919050565b600060208201905081810360008301526141f1816141b5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614254603283612e9c565b915061425f826141f8565b604082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142c482612f3b565b91506142cf83612f3b565b9250826142df576142de61428a565b5b828204905092915050565b60006142f582612f3b565b915061430083612f3b565b9250828210156143135761431261381d565b5b828203905092915050565b600061432982612f3b565b915061433483612f3b565b9250826143445761434361428a565b5b828206905092915050565b6000819050919050565b61436a614365826130e3565b61434f565b82525050565b600061437c8285614359565b60208201915061438c8284614359565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006143c38261439c565b6143cd81856143a7565b93506143dd818560208601612ead565b6143e681612d0c565b840191505092915050565b60006080820190506144066000830187612fd0565b6144136020830186612fd0565b6144206040830185613066565b818103606083015261443281846143b8565b905095945050505050565b60008151905061444c81612c73565b92915050565b60006020828403121561446857614467612c3d565b5b60006144768482850161443d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006144b5602083612e9c565b91506144c08261447f565b602082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614521601c83612e9c565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b905091905056fea26469706673582212208685c12f18c549df75ee12949c0e4c4aa76f87004d39c17e7eade274b34d00b464736f6c63430008080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _price (uint256): 0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
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.