Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,747 MDNA
Holders
715
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MDNALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaaniDNA
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: NONE pragma solidity 0.8.10; import "./OpenzeppelinERC721.sol"; import "./OpenZeppelinMerkleProof.sol"; contract MetaaniDNA is ERC721Enumerable { uint public constant price = 0.075 ether; string private _baseBeforeRevealURI = "ipfs://QmdXrwGLHBJSft1CBrps4XhZfxEHJ3GCwuCvf3ihffKuDn/"; uint public teamMintedAmount = 0; string private _ipfs_base; bool public isRevealed = false; bool public isFrozenBaseURI = false; uint private tokenIdCount = 1; uint public tokenIdCountMax = 3000; mapping(uint => bool) public minted; uint public privateAmountLimit = 50; uint public publicAmountLimit = 3000; bytes32 public allowListRoot = 0x493c228601905ea40eec37ae8423c901976d08e0ea1f9fa6fdc0924ea7633f58; enum MintTermStatus{ None, holderSale, allowListSale, publicSale } MintTermStatus private _mintTermStatus = MintTermStatus.None; mapping( address => uint ) public addressMintedMap1; mapping( address => uint ) public addressMintedMap2; mapping( address => uint ) public addressMintedMap3; address owner; address constant fundsWallet = 0x8837391C2634b62C4fCF4f0b01F0772A743A4Cf3; address constant fundsRescueSpareKey = 0xbDc378A75Fe1d1b53AdB3025541174B79474845b; address constant fundsRescueDestWallet = 0xeecE4544101f7C7198157c74A1cBfE12aa86718B; function setRoot(bytes32 _merkleroot) public { require( _msgSender() == owner ); allowListRoot = _merkleroot; } function setPrivateAmountLimit(uint amountLimit) public { require(_msgSender() == owner); privateAmountLimit = amountLimit; } function setPublicAmountLimit(uint amountLimit) public { require(_msgSender() == owner); publicAmountLimit = amountLimit; } function checkredeem(address account, uint256 allowedAmount, bytes32[] calldata proof) public view returns ( uint ) { if (_verify(_leaf(account, allowedAmount), proof)){ return allowedAmount; } else { return 0; } } function _leaf(address account, uint256 allowedAmount) internal pure returns (bytes32){ return keccak256(abi.encodePacked(account , allowedAmount)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool){ return MerkleProof.verify(proof, allowListRoot, leaf); } function holderSale(address account, uint256 allowedAmount, bytes32[] calldata proof) public payable { require( msg.value == price , "Invalid ETH"); require(checkredeem( account , allowedAmount , proof ) > 0 , "account is not in allowlist"); require( _msgSender() == account); require( _mintTermStatus == MintTermStatus.holderSale , "MintTermStatus Invalid"); require(tokenIdCount <= tokenIdCountMax, "out of stock"); require(addressMintedMap1[account] < allowedAmount, "amount limited in AL"); require(addressMintedMap1[account] < privateAmountLimit, "amount limited at this time"); _safeMint( account , tokenIdCount); addressMintedMap1[account]++; minted[tokenIdCount] = true; tokenIdCount++; } function allowListSale(address account, uint256 allowedAmount, bytes32[] calldata proof) public payable{ require( msg.value == price , "Invalid ETH"); require(checkredeem( account , allowedAmount , proof ) > 0 , "account is not in allowlist"); require( _msgSender() == account); require( _mintTermStatus == MintTermStatus.allowListSale , "MintTermStatus Invalid"); require(tokenIdCount <= tokenIdCountMax, "out of stock"); require(addressMintedMap2[account] < allowedAmount, "amount limited in AL"); require(addressMintedMap2[account] < privateAmountLimit, "amount limited at this time"); _safeMint( account , tokenIdCount); addressMintedMap2[account]++; minted[tokenIdCount] = true; tokenIdCount++; } function publicSale(uint requestAmount) public payable{ require( msg.value == price * requestAmount , "Invalid ETH"); address account = _msgSender(); require( _mintTermStatus == MintTermStatus.publicSale , "MintTermStatus Invalid"); for(uint i=0; i<requestAmount; i++){ require(tokenIdCount <= tokenIdCountMax, "out of stock"); require(addressMintedMap3[account] < publicAmountLimit, "amount limited at this time"); _safeMint( account , tokenIdCount); addressMintedMap3[account]++; minted[tokenIdCount] = true; tokenIdCount++; } } function teamMint(uint requestAmount) public { address account = _msgSender(); require(account == owner ); for(uint i=0; i<requestAmount; i++){ require(teamMintedAmount < 300, "out of team stock"); require(tokenIdCount <= tokenIdCountMax, "out of stock"); teamMintedAmount++; _safeMint( account , tokenIdCount); addressMintedMap1[account]++; minted[tokenIdCount] = true; tokenIdCount++; } } function getMintTermStatus() public view returns (MintTermStatus) { return _mintTermStatus; } function setMintTermStatus(MintTermStatus status) public { require(_msgSender() == owner ); _mintTermStatus = status; } function withdraw() public { require(msg.sender == fundsWallet); uint balance = address(this).balance; payable(fundsWallet).transfer(balance); } function withdrawSpare() public { require(msg.sender == fundsRescueSpareKey); uint balance = address(this).balance; payable(fundsRescueDestWallet).transfer(balance); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721) { super._burn(tokenId); } function burn(uint256 _id) public { require( msg.sender == ownerOf(_id)); _burn(_id); } function _baseURI() internal view override returns (string memory) { return _ipfs_base; } function freezeBaseURI() external { require(msg.sender == owner ); require(bytes(_baseURI()).length > 0, "baseURI is EMPTY"); require(tokenIdCount >= tokenIdCountMax, "Not Reached Amount"); isFrozenBaseURI = true; } function _baseURIBeforeReveal() internal view returns (string memory) { return _baseBeforeRevealURI; } function setBaseURI(string memory baseMetadataURI) external{ require(msg.sender == owner ); require(isFrozenBaseURI == false, "Metadata is Frozen"); _ipfs_base = baseMetadataURI; } function setRevealURI(string memory baseBeforeRevealURI) external { require(msg.sender == owner ); _baseBeforeRevealURI = baseBeforeRevealURI; } function reveal() external{ require(msg.sender == owner ); require(bytes(_baseURI()).length > 0, "baseURI is EMPTY"); isRevealed = true; } function tokenURI(uint256 _tokenId) public view override(ERC721) returns (string memory){ string memory baseURI; if(isRevealed){ baseURI = _baseURI(); }else{ return _baseURIBeforeReveal(); } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(_tokenId))) : ""; } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } constructor() ERC721("MetaaniDNA" , "MDNA" ) { owner = msg.sender; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @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; } /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @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); } /** * @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); } /** * @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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /** * @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); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedMap1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedMap2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedMap3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListSale","outputs":[],"stateMutability":"payable","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":"uint256","name":"_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkredeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintTermStatus","outputs":[{"internalType":"enum MetaaniDNA.MintTermStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"holderSale","outputs":[],"stateMutability":"payable","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":"isFrozenBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestAmount","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseMetadataURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MetaaniDNA.MintTermStatus","name":"status","type":"uint8"}],"name":"setMintTermStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountLimit","type":"uint256"}],"name":"setPrivateAmountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountLimit","type":"uint256"}],"name":"setPublicAmountLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseBeforeRevealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"}],"name":"setRoot","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":"requestAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdCountMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSpare","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620056b460369139600a908051906020019062000035929190620001d1565b506000600b556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506001600e55610bb8600f556032601155610bb86012557f493c228601905ea40eec37ae8423c901976d08e0ea1f9fa6fdc0924ea7633f5860001b6013556000601460006101000a81548160ff02191690836003811115620000d757620000d662000281565b5b0217905550348015620000e957600080fd5b506040518060400160405280600a81526020017f4d657461616e69444e41000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d444e410000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016e929190620001d1565b50806001908051906020019062000187929190620001d1565b50505033601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000315565b828054620001df90620002df565b90600052602060002090601f0160209004810192826200020357600085556200024f565b82601f106200021e57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024e57825182559160200191906001019062000231565b5b5090506200025e919062000262565b5090565b5b808211156200027d57600081600090555060010162000263565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f857607f821691505b602082108114156200030f576200030e620002b0565b5b50919050565b61538f80620003256000396000f3fe6080604052600436106102725760003560e01c8063942d7b7f1161014f578063c4373f7e116100c1578063d65ae6771161007a578063d65ae6771461095d578063dab5f34014610974578063e31638081461099d578063e7bc8208146109c8578063e97925b9146109df578063e985e9c514610a1c57610272565b8063c4373f7e1461083b578063c746035c14610866578063c87b56dd146108a3578063d03afb22146108e0578063d1f0fffe1461090b578063d3afbab71461093457610272565b8063a22cb46511610113578063a22cb46514610762578063a475b5dd1461078b578063a811a37b146107a2578063b287c8ed146107cb578063b88d4fde146107e7578063c08790c91461081057610272565b8063942d7b7f1461067b57806395d89b41146106a45780639d589611146106cf5780639de431f9146106fa578063a035b1fe1461073757610272565b806342966c68116101e85780636352211e116101ac5780636352211e1461054f57806370a082311461058c5780637cb2b0d9146105c95780637dc0bf3f146105e557806381df04a81461062257806383a805601461065f57610272565b806342966c681461046a5780634f6ccce71461049357806354214f69146104d057806355f804b3146104fb5780635e0801741461052457610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632f745c59146103c45780632fbba115146104015780633ccfd60b1461042a57806342842e0e1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f4f5a7614610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139fb565b610a59565b6040516102ab9190613a43565b60405180910390f35b3480156102c057600080fd5b506102c9610a6b565b6040516102d69190613af7565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613b4f565b610afd565b6040516103139190613bbd565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613c04565b610b82565b005b34801561035157600080fd5b5061035a610c9a565b6040516103679190613cbb565b60405180910390f35b34801561037c57600080fd5b50610385610cb1565b6040516103929190613ce5565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613d00565b610cbe565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613c04565b610d1e565b6040516103f89190613ce5565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613b4f565b610dc3565b005b34801561043657600080fd5b5061043f610f98565b005b34801561044d57600080fd5b5061046860048036038101906104639190613d00565b611047565b005b34801561047657600080fd5b50610491600480360381019061048c9190613b4f565b611067565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b4f565b6110b3565b6040516104c79190613ce5565b60405180910390f35b3480156104dc57600080fd5b506104e5611124565b6040516104f29190613a43565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613e88565b611137565b005b34801561053057600080fd5b50610539611201565b6040516105469190613ce5565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613b4f565b611207565b6040516105839190613bbd565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613ed1565b6112b9565b6040516105c09190613ce5565b60405180910390f35b6105e360048036038101906105de9190613f5e565b611371565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613b4f565b6116b6565b6040516106199190613a43565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190613ed1565b6116d6565b6040516106569190613ce5565b60405180910390f35b61067960048036038101906106749190613f5e565b6116ee565b005b34801561068757600080fd5b506106a2600480360381019061069d9190613b4f565b611a33565b005b3480156106b057600080fd5b506106b9611a9e565b6040516106c69190613af7565b60405180910390f35b3480156106db57600080fd5b506106e4611b30565b6040516106f19190613feb565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613ed1565b611b36565b60405161072e9190613ce5565b60405180910390f35b34801561074357600080fd5b5061074c611b4e565b6040516107599190613ce5565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190614032565b611b5a565b005b34801561079757600080fd5b506107a0611cdb565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613e88565b611d9d565b005b6107e560048036038101906107e09190613b4f565b611e11565b005b3480156107f357600080fd5b5061080e60048036038101906108099190614113565b61207b565b005b34801561081c57600080fd5b506108256120dd565b6040516108329190613ce5565b60405180910390f35b34801561084757600080fd5b506108506120e3565b60405161085d9190613a43565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613ed1565b6120f6565b60405161089a9190613ce5565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613b4f565b61210e565b6040516108d79190613af7565b60405180910390f35b3480156108ec57600080fd5b506108f5612197565b6040516109029190613ce5565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613b4f565b61219d565b005b34801561094057600080fd5b5061095b600480360381019061095691906141bb565b612208565b005b34801561096957600080fd5b50610972612296565b005b34801561098057600080fd5b5061099b60048036038101906109969190614214565b612345565b005b3480156109a957600080fd5b506109b26123b0565b6040516109bf9190613ce5565b60405180910390f35b3480156109d457600080fd5b506109dd6123b6565b005b3480156109eb57600080fd5b50610a066004803603810190610a019190613f5e565b6124bf565b604051610a139190613ce5565b60405180910390f35b348015610a2857600080fd5b50610a436004803603810190610a3e9190614241565b61252f565b604051610a509190613a43565b60405180910390f35b6000610a64826125c3565b9050919050565b606060008054610a7a906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa6906142b0565b8015610af35780601f10610ac857610100808354040283529160200191610af3565b820191906000526020600020905b815481529060010190602001808311610ad657829003601f168201915b5050505050905090565b6000610b088261263d565b610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90614354565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d82611207565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906143e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d6126a9565b73ffffffffffffffffffffffffffffffffffffffff161480610c4c5750610c4b81610c466126a9565b61252f565b5b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614478565b60405180910390fd5b610c9583836126b1565b505050565b6000601460009054906101000a900460ff16905090565b6000600880549050905090565b610ccf610cc96126a9565b8261276a565b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d059061450a565b60405180910390fd5b610d19838383612848565b505050565b6000610d29836112b9565b8210610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d619061459c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610dcd6126a9565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2957600080fd5b60005b82811015610f935761012c600b5410610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614608565b60405180910390fd5b600f54600e541115610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890614674565b60405180910390fd5b600b6000815480929190610ed4906146c3565b9190505550610ee582600e54612aa4565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f35906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190610f7b906146c3565b91905055508080610f8b906146c3565b915050610e2c565b505050565b738837391c2634b62c4fcf4f0b01f0772a743a4cf373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fe457600080fd5b6000479050738837391c2634b62c4fcf4f0b01f0772a743a4cf373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611043573d6000803e3d6000fd5b5050565b6110628383836040518060200160405280600081525061207b565b505050565b61107081611207565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b6110b081612ac2565b50565b60006110bd610cb1565b82106110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f59061477e565b60405180910390fd5b600882815481106111125761111161479e565b5b90600052602060002001549050919050565b600d60009054906101000a900460ff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119157600080fd5b60001515600d60019054906101000a900460ff161515146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90614819565b60405180910390fd5b80600c90805190602001906111fd9291906138ec565b5050565b60115481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906148ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113219061493d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b67010a741a4627800034146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906149a9565b60405180910390fd5b60006113c9858585856124bf565b11611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614a15565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166114286126a9565b73ffffffffffffffffffffffffffffffffffffffff161461144857600080fd5b6001600381111561145c5761145b613c44565b5b601460009054906101000a900460ff16600381111561147e5761147d613c44565b5b146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614a81565b60405180910390fd5b600f54600e541115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614674565b60405180910390fd5b82601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614aed565b60405180910390fd5b601154601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090614b59565b60405180910390fd5b61161584600e54612aa4565b601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611665906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e60008154809291906116ab906146c3565b919050555050505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915090505481565b67010a741a462780003414611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906149a9565b60405180910390fd5b6000611746858585856124bf565b11611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614a15565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166117a56126a9565b73ffffffffffffffffffffffffffffffffffffffff16146117c557600080fd5b600260038111156117d9576117d8613c44565b5b601460009054906101000a900460ff1660038111156117fb576117fa613c44565b5b1461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290614a81565b60405180910390fd5b600f54600e541115611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614674565b60405180910390fd5b82601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614aed565b60405180910390fd5b601154601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614b59565b60405180910390fd5b61199284600e54612aa4565b601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119e2906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190611a28906146c3565b919050555050505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a746126a9565b73ffffffffffffffffffffffffffffffffffffffff1614611a9457600080fd5b8060128190555050565b606060018054611aad906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad9906142b0565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b5050505050905090565b60135481565b60166020528060005260406000206000915090505481565b67010a741a4627800081565b611b626126a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614bc5565b60405180910390fd5b8060056000611bdd6126a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c8a6126a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccf9190613a43565b60405180910390a35050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d3557600080fd5b6000611d3f612ace565b5111611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614c31565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611df757600080fd5b80600a9080519060200190611e0d9291906138ec565b5050565b8067010a741a46278000611e259190614c51565b3414611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906149a9565b60405180910390fd5b6000611e706126a9565b9050600380811115611e8557611e84613c44565b5b601460009054906101000a900460ff166003811115611ea757611ea6613c44565b5b14611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede90614a81565b60405180910390fd5b60005b8281101561207657600f54600e541115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090614674565b60405180910390fd5b601254601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390614b59565b60405180910390fd5b611fc882600e54612aa4565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612018906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e600081548092919061205e906146c3565b9190505550808061206e906146c3565b915050611eea565b505050565b61208c6120866126a9565b8361276a565b6120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061450a565b60405180910390fd5b6120d784848484612b60565b50505050565b60125481565b600d60019054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b606080600d60009054906101000a900460ff16156121355761212e612ace565b9050612145565b61213d612bbc565b915050612192565b6000815111612163576040518060200160405280600081525061218e565b8061216d84612c4e565b60405160200161217e929190614ce7565b6040516020818303038152906040525b9150505b919050565b600f5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121de6126a9565b73ffffffffffffffffffffffffffffffffffffffff16146121fe57600080fd5b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122496126a9565b73ffffffffffffffffffffffffffffffffffffffff161461226957600080fd5b80601460006101000a81548160ff0219169083600381111561228e5761228d613c44565b5b021790555050565b73bdc378a75fe1d1b53adb3025541174b79474845b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122e257600080fd5b600047905073eece4544101f7c7198157c74a1cbfe12aa86718b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612341573d6000803e3d6000fd5b5050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166123866126a9565b73ffffffffffffffffffffffffffffffffffffffff16146123a657600080fd5b8060138190555050565b600b5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461241057600080fd5b600061241a612ace565b511161245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290614c31565b60405180910390fd5b600f54600e5410156124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990614d57565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60006125156124ce8686612daf565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612de2565b1561252257839050612527565b600090505b949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612636575061263582612df9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272483611207565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127758261263d565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614de9565b60405180910390fd5b60006127bf83611207565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282e57508373ffffffffffffffffffffffffffffffffffffffff1661281684610afd565b73ffffffffffffffffffffffffffffffffffffffff16145b8061283f575061283e818561252f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286882611207565b73ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614f0d565b60405180910390fd5b612939838383612edb565b6129446000826126b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129949190614f2d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129eb9190614f61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612abe828260405180602001604052806000815250612eeb565b5050565b612acb81612f46565b50565b6060600c8054612add906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612b09906142b0565b8015612b565780601f10612b2b57610100808354040283529160200191612b56565b820191906000526020600020905b815481529060010190602001808311612b3957829003601f168201915b5050505050905090565b612b6b848484612848565b612b7784848484613057565b612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90615029565b60405180910390fd5b50505050565b6060600a8054612bcb906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf7906142b0565b8015612c445780601f10612c1957610100808354040283529160200191612c44565b820191906000526020600020905b815481529060010190602001808311612c2757829003601f168201915b5050505050905090565b60606000821415612c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612daa565b600082905060005b60008214612cc8578080612cb1906146c3565b915050600a82612cc19190615078565b9150612c9e565b60008167ffffffffffffffff811115612ce457612ce3613d5d565b5b6040519080825280601f01601f191660200182016040528015612d165781602001600182028036833780820191505090505b5090505b60008514612da357600182612d2f9190614f2d565b9150600a85612d3e91906150a9565b6030612d4a9190614f61565b60f81b818381518110612d6057612d5f61479e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9c9190615078565b9450612d1a565b8093505050505b919050565b60008282604051602001612dc4929190615143565b60405160208183030381529060405280519060200120905092915050565b6000612df182601354856131df565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ec457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ed45750612ed3826131f6565b5b9050919050565b612ee6838383613260565b505050565b612ef58383613374565b612f026000848484613057565b612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890615029565b60405180910390fd5b505050565b6000612f5182611207565b9050612f5f81600084612edb565b612f6a6000836126b1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fba9190614f2d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006130788473ffffffffffffffffffffffffffffffffffffffff16613542565b156131d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130a16126a9565b8786866040518563ffffffff1660e01b81526004016130c394939291906151c4565b6020604051808303816000875af19250505080156130ff57506040513d601f19601f820116820180604052508101906130fc9190615225565b60015b613182573d806000811461312f576040519150601f19603f3d011682016040523d82523d6000602084013e613134565b606091505b5060008151141561317a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317190615029565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131d7565b600190505b949350505050565b6000826131ec8584613555565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61326b8383836135ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132ae576132a9816135cf565b6132ed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ec576132eb8382613618565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133305761332b81613785565b61336f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461336e5761336d8282613856565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133db9061529e565b60405180910390fd5b6133ed8161263d565b1561342d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134249061530a565b60405180910390fd5b61343960008383612edb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134899190614f61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60008082905060005b84518110156135bf57600085828151811061357c5761357b61479e565b5b6020026020010151905080831161359e5761359783826138d5565b92506135ab565b6135a881846138d5565b92505b5080806135b7906146c3565b91505061355e565b508091505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613625846112b9565b61362f9190614f2d565b9050600060076000848152602001908152602001600020549050818114613714576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137999190614f2d565b90506000600960008481526020019081526020016000205490506000600883815481106137c9576137c861479e565b5b9060005260206000200154905080600883815481106137eb576137ea61479e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061383a5761383961532a565b5b6001900381819060005260206000200160009055905550505050565b6000613861836112b9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b8280546138f8906142b0565b90600052602060002090601f01602090048101928261391a5760008555613961565b82601f1061393357805160ff1916838001178555613961565b82800160010185558215613961579182015b82811115613960578251825591602001919060010190613945565b5b50905061396e9190613972565b5090565b5b8082111561398b576000816000905550600101613973565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139d8816139a3565b81146139e357600080fd5b50565b6000813590506139f5816139cf565b92915050565b600060208284031215613a1157613a10613999565b5b6000613a1f848285016139e6565b91505092915050565b60008115159050919050565b613a3d81613a28565b82525050565b6000602082019050613a586000830184613a34565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a98578082015181840152602081019050613a7d565b83811115613aa7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ac982613a5e565b613ad38185613a69565b9350613ae3818560208601613a7a565b613aec81613aad565b840191505092915050565b60006020820190508181036000830152613b118184613abe565b905092915050565b6000819050919050565b613b2c81613b19565b8114613b3757600080fd5b50565b600081359050613b4981613b23565b92915050565b600060208284031215613b6557613b64613999565b5b6000613b7384828501613b3a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba782613b7c565b9050919050565b613bb781613b9c565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b613be181613b9c565b8114613bec57600080fd5b50565b600081359050613bfe81613bd8565b92915050565b60008060408385031215613c1b57613c1a613999565b5b6000613c2985828601613bef565b9250506020613c3a85828601613b3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110613c8457613c83613c44565b5b50565b6000819050613c9582613c73565b919050565b6000613ca582613c87565b9050919050565b613cb581613c9a565b82525050565b6000602082019050613cd06000830184613cac565b92915050565b613cdf81613b19565b82525050565b6000602082019050613cfa6000830184613cd6565b92915050565b600080600060608486031215613d1957613d18613999565b5b6000613d2786828701613bef565b9350506020613d3886828701613bef565b9250506040613d4986828701613b3a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d9582613aad565b810181811067ffffffffffffffff82111715613db457613db3613d5d565b5b80604052505050565b6000613dc761398f565b9050613dd38282613d8c565b919050565b600067ffffffffffffffff821115613df357613df2613d5d565b5b613dfc82613aad565b9050602081019050919050565b82818337600083830152505050565b6000613e2b613e2684613dd8565b613dbd565b905082815260208101848484011115613e4757613e46613d58565b5b613e52848285613e09565b509392505050565b600082601f830112613e6f57613e6e613d53565b5b8135613e7f848260208601613e18565b91505092915050565b600060208284031215613e9e57613e9d613999565b5b600082013567ffffffffffffffff811115613ebc57613ebb61399e565b5b613ec884828501613e5a565b91505092915050565b600060208284031215613ee757613ee6613999565b5b6000613ef584828501613bef565b91505092915050565b600080fd5b600080fd5b60008083601f840112613f1e57613f1d613d53565b5b8235905067ffffffffffffffff811115613f3b57613f3a613efe565b5b602083019150836020820283011115613f5757613f56613f03565b5b9250929050565b60008060008060608587031215613f7857613f77613999565b5b6000613f8687828801613bef565b9450506020613f9787828801613b3a565b935050604085013567ffffffffffffffff811115613fb857613fb761399e565b5b613fc487828801613f08565b925092505092959194509250565b6000819050919050565b613fe581613fd2565b82525050565b60006020820190506140006000830184613fdc565b92915050565b61400f81613a28565b811461401a57600080fd5b50565b60008135905061402c81614006565b92915050565b6000806040838503121561404957614048613999565b5b600061405785828601613bef565b92505060206140688582860161401d565b9150509250929050565b600067ffffffffffffffff82111561408d5761408c613d5d565b5b61409682613aad565b9050602081019050919050565b60006140b66140b184614072565b613dbd565b9050828152602081018484840111156140d2576140d1613d58565b5b6140dd848285613e09565b509392505050565b600082601f8301126140fa576140f9613d53565b5b813561410a8482602086016140a3565b91505092915050565b6000806000806080858703121561412d5761412c613999565b5b600061413b87828801613bef565b945050602061414c87828801613bef565b935050604061415d87828801613b3a565b925050606085013567ffffffffffffffff81111561417e5761417d61399e565b5b61418a878288016140e5565b91505092959194509250565b600481106141a357600080fd5b50565b6000813590506141b581614196565b92915050565b6000602082840312156141d1576141d0613999565b5b60006141df848285016141a6565b91505092915050565b6141f181613fd2565b81146141fc57600080fd5b50565b60008135905061420e816141e8565b92915050565b60006020828403121561422a57614229613999565b5b6000614238848285016141ff565b91505092915050565b6000806040838503121561425857614257613999565b5b600061426685828601613bef565b925050602061427785828601613bef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c857607f821691505b602082108114156142dc576142db614281565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061433e602c83613a69565b9150614349826142e2565b604082019050919050565b6000602082019050818103600083015261436d81614331565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006143d0602183613a69565b91506143db82614374565b604082019050919050565b600060208201905081810360008301526143ff816143c3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614462603883613a69565b915061446d82614406565b604082019050919050565b6000602082019050818103600083015261449181614455565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144f4603183613a69565b91506144ff82614498565b604082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614586602b83613a69565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f6f7574206f66207465616d2073746f636b000000000000000000000000000000600082015250565b60006145f2601183613a69565b91506145fd826145bc565b602082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b600061465e600c83613a69565b915061466982614628565b602082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146ce82613b19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470157614700614694565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614768602c83613a69565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d657461646174612069732046726f7a656e0000000000000000000000000000600082015250565b6000614803601283613a69565b915061480e826147cd565b602082019050919050565b60006020820190508181036000830152614832816147f6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614895602983613a69565b91506148a082614839565b604082019050919050565b600060208201905081810360008301526148c481614888565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614927602a83613a69565b9150614932826148cb565b604082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b7f496e76616c696420455448000000000000000000000000000000000000000000600082015250565b6000614993600b83613a69565b915061499e8261495d565b602082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f6163636f756e74206973206e6f7420696e20616c6c6f776c6973740000000000600082015250565b60006149ff601b83613a69565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f4d696e745465726d53746174757320496e76616c696400000000000000000000600082015250565b6000614a6b601683613a69565b9150614a7682614a35565b602082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f616d6f756e74206c696d6974656420696e20414c000000000000000000000000600082015250565b6000614ad7601483613a69565b9150614ae282614aa1565b602082019050919050565b60006020820190508181036000830152614b0681614aca565b9050919050565b7f616d6f756e74206c696d6974656420617420746869732074696d650000000000600082015250565b6000614b43601b83613a69565b9150614b4e82614b0d565b602082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614baf601983613a69565b9150614bba82614b79565b602082019050919050565b60006020820190508181036000830152614bde81614ba2565b9050919050565b7f6261736555524920697320454d50545900000000000000000000000000000000600082015250565b6000614c1b601083613a69565b9150614c2682614be5565b602082019050919050565b60006020820190508181036000830152614c4a81614c0e565b9050919050565b6000614c5c82613b19565b9150614c6783613b19565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ca057614c9f614694565b5b828202905092915050565b600081905092915050565b6000614cc182613a5e565b614ccb8185614cab565b9350614cdb818560208601613a7a565b80840191505092915050565b6000614cf38285614cb6565b9150614cff8284614cb6565b91508190509392505050565b7f4e6f74205265616368656420416d6f756e740000000000000000000000000000600082015250565b6000614d41601283613a69565b9150614d4c82614d0b565b602082019050919050565b60006020820190508181036000830152614d7081614d34565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614dd3602c83613a69565b9150614dde82614d77565b604082019050919050565b60006020820190508181036000830152614e0281614dc6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614e65602983613a69565b9150614e7082614e09565b604082019050919050565b60006020820190508181036000830152614e9481614e58565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ef7602483613a69565b9150614f0282614e9b565b604082019050919050565b60006020820190508181036000830152614f2681614eea565b9050919050565b6000614f3882613b19565b9150614f4383613b19565b925082821015614f5657614f55614694565b5b828203905092915050565b6000614f6c82613b19565b9150614f7783613b19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fac57614fab614694565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615013603283613a69565b915061501e82614fb7565b604082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061508382613b19565b915061508e83613b19565b92508261509e5761509d615049565b5b828204905092915050565b60006150b482613b19565b91506150bf83613b19565b9250826150cf576150ce615049565b5b828206905092915050565b60008160601b9050919050565b60006150f2826150da565b9050919050565b6000615104826150e7565b9050919050565b61511c61511782613b9c565b6150f9565b82525050565b6000819050919050565b61513d61513882613b19565b615122565b82525050565b600061514f828561510b565b60148201915061515f828461512c565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006151968261516f565b6151a0818561517a565b93506151b0818560208601613a7a565b6151b981613aad565b840191505092915050565b60006080820190506151d96000830187613bae565b6151e66020830186613bae565b6151f36040830185613cd6565b8181036060830152615205818461518b565b905095945050505050565b60008151905061521f816139cf565b92915050565b60006020828403121561523b5761523a613999565b5b600061524984828501615210565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615288602083613a69565b915061529382615252565b602082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006152f4601c83613a69565b91506152ff826152be565b602082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220e58232f884e593a7805180e992d2a265dd83f587b9ca2f180e299361f2134a6a64736f6c634300080a0033697066733a2f2f516d64587277474c48424a5366743143427270733458685a667845484a334743777543766633696866664b75446e2f
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063942d7b7f1161014f578063c4373f7e116100c1578063d65ae6771161007a578063d65ae6771461095d578063dab5f34014610974578063e31638081461099d578063e7bc8208146109c8578063e97925b9146109df578063e985e9c514610a1c57610272565b8063c4373f7e1461083b578063c746035c14610866578063c87b56dd146108a3578063d03afb22146108e0578063d1f0fffe1461090b578063d3afbab71461093457610272565b8063a22cb46511610113578063a22cb46514610762578063a475b5dd1461078b578063a811a37b146107a2578063b287c8ed146107cb578063b88d4fde146107e7578063c08790c91461081057610272565b8063942d7b7f1461067b57806395d89b41146106a45780639d589611146106cf5780639de431f9146106fa578063a035b1fe1461073757610272565b806342966c68116101e85780636352211e116101ac5780636352211e1461054f57806370a082311461058c5780637cb2b0d9146105c95780637dc0bf3f146105e557806381df04a81461062257806383a805601461065f57610272565b806342966c681461046a5780634f6ccce71461049357806354214f69146104d057806355f804b3146104fb5780635e0801741461052457610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632f745c59146103c45780632fbba115146104015780633ccfd60b1461042a57806342842e0e1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f4f5a7614610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139fb565b610a59565b6040516102ab9190613a43565b60405180910390f35b3480156102c057600080fd5b506102c9610a6b565b6040516102d69190613af7565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613b4f565b610afd565b6040516103139190613bbd565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613c04565b610b82565b005b34801561035157600080fd5b5061035a610c9a565b6040516103679190613cbb565b60405180910390f35b34801561037c57600080fd5b50610385610cb1565b6040516103929190613ce5565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613d00565b610cbe565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613c04565b610d1e565b6040516103f89190613ce5565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613b4f565b610dc3565b005b34801561043657600080fd5b5061043f610f98565b005b34801561044d57600080fd5b5061046860048036038101906104639190613d00565b611047565b005b34801561047657600080fd5b50610491600480360381019061048c9190613b4f565b611067565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b4f565b6110b3565b6040516104c79190613ce5565b60405180910390f35b3480156104dc57600080fd5b506104e5611124565b6040516104f29190613a43565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613e88565b611137565b005b34801561053057600080fd5b50610539611201565b6040516105469190613ce5565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613b4f565b611207565b6040516105839190613bbd565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613ed1565b6112b9565b6040516105c09190613ce5565b60405180910390f35b6105e360048036038101906105de9190613f5e565b611371565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613b4f565b6116b6565b6040516106199190613a43565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190613ed1565b6116d6565b6040516106569190613ce5565b60405180910390f35b61067960048036038101906106749190613f5e565b6116ee565b005b34801561068757600080fd5b506106a2600480360381019061069d9190613b4f565b611a33565b005b3480156106b057600080fd5b506106b9611a9e565b6040516106c69190613af7565b60405180910390f35b3480156106db57600080fd5b506106e4611b30565b6040516106f19190613feb565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613ed1565b611b36565b60405161072e9190613ce5565b60405180910390f35b34801561074357600080fd5b5061074c611b4e565b6040516107599190613ce5565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190614032565b611b5a565b005b34801561079757600080fd5b506107a0611cdb565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613e88565b611d9d565b005b6107e560048036038101906107e09190613b4f565b611e11565b005b3480156107f357600080fd5b5061080e60048036038101906108099190614113565b61207b565b005b34801561081c57600080fd5b506108256120dd565b6040516108329190613ce5565b60405180910390f35b34801561084757600080fd5b506108506120e3565b60405161085d9190613a43565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613ed1565b6120f6565b60405161089a9190613ce5565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613b4f565b61210e565b6040516108d79190613af7565b60405180910390f35b3480156108ec57600080fd5b506108f5612197565b6040516109029190613ce5565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613b4f565b61219d565b005b34801561094057600080fd5b5061095b600480360381019061095691906141bb565b612208565b005b34801561096957600080fd5b50610972612296565b005b34801561098057600080fd5b5061099b60048036038101906109969190614214565b612345565b005b3480156109a957600080fd5b506109b26123b0565b6040516109bf9190613ce5565b60405180910390f35b3480156109d457600080fd5b506109dd6123b6565b005b3480156109eb57600080fd5b50610a066004803603810190610a019190613f5e565b6124bf565b604051610a139190613ce5565b60405180910390f35b348015610a2857600080fd5b50610a436004803603810190610a3e9190614241565b61252f565b604051610a509190613a43565b60405180910390f35b6000610a64826125c3565b9050919050565b606060008054610a7a906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa6906142b0565b8015610af35780601f10610ac857610100808354040283529160200191610af3565b820191906000526020600020905b815481529060010190602001808311610ad657829003601f168201915b5050505050905090565b6000610b088261263d565b610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90614354565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d82611207565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906143e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d6126a9565b73ffffffffffffffffffffffffffffffffffffffff161480610c4c5750610c4b81610c466126a9565b61252f565b5b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290614478565b60405180910390fd5b610c9583836126b1565b505050565b6000601460009054906101000a900460ff16905090565b6000600880549050905090565b610ccf610cc96126a9565b8261276a565b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d059061450a565b60405180910390fd5b610d19838383612848565b505050565b6000610d29836112b9565b8210610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d619061459c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610dcd6126a9565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2957600080fd5b60005b82811015610f935761012c600b5410610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614608565b60405180910390fd5b600f54600e541115610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890614674565b60405180910390fd5b600b6000815480929190610ed4906146c3565b9190505550610ee582600e54612aa4565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f35906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190610f7b906146c3565b91905055508080610f8b906146c3565b915050610e2c565b505050565b738837391c2634b62c4fcf4f0b01f0772a743a4cf373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fe457600080fd5b6000479050738837391c2634b62c4fcf4f0b01f0772a743a4cf373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611043573d6000803e3d6000fd5b5050565b6110628383836040518060200160405280600081525061207b565b505050565b61107081611207565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b6110b081612ac2565b50565b60006110bd610cb1565b82106110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f59061477e565b60405180910390fd5b600882815481106111125761111161479e565b5b90600052602060002001549050919050565b600d60009054906101000a900460ff1681565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119157600080fd5b60001515600d60019054906101000a900460ff161515146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90614819565b60405180910390fd5b80600c90805190602001906111fd9291906138ec565b5050565b60115481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906148ab565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113219061493d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b67010a741a4627800034146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906149a9565b60405180910390fd5b60006113c9858585856124bf565b11611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090614a15565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166114286126a9565b73ffffffffffffffffffffffffffffffffffffffff161461144857600080fd5b6001600381111561145c5761145b613c44565b5b601460009054906101000a900460ff16600381111561147e5761147d613c44565b5b146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614a81565b60405180910390fd5b600f54600e541115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614674565b60405180910390fd5b82601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614aed565b60405180910390fd5b601154601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090614b59565b60405180910390fd5b61161584600e54612aa4565b601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611665906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e60008154809291906116ab906146c3565b919050555050505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60156020528060005260406000206000915090505481565b67010a741a462780003414611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906149a9565b60405180910390fd5b6000611746858585856124bf565b11611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614a15565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166117a56126a9565b73ffffffffffffffffffffffffffffffffffffffff16146117c557600080fd5b600260038111156117d9576117d8613c44565b5b601460009054906101000a900460ff1660038111156117fb576117fa613c44565b5b1461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290614a81565b60405180910390fd5b600f54600e541115611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614674565b60405180910390fd5b82601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614aed565b60405180910390fd5b601154601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614b59565b60405180910390fd5b61199284600e54612aa4565b601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119e2906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190611a28906146c3565b919050555050505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a746126a9565b73ffffffffffffffffffffffffffffffffffffffff1614611a9457600080fd5b8060128190555050565b606060018054611aad906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad9906142b0565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b5050505050905090565b60135481565b60166020528060005260406000206000915090505481565b67010a741a4627800081565b611b626126a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614bc5565b60405180910390fd5b8060056000611bdd6126a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c8a6126a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccf9190613a43565b60405180910390a35050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d3557600080fd5b6000611d3f612ace565b5111611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790614c31565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611df757600080fd5b80600a9080519060200190611e0d9291906138ec565b5050565b8067010a741a46278000611e259190614c51565b3414611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906149a9565b60405180910390fd5b6000611e706126a9565b9050600380811115611e8557611e84613c44565b5b601460009054906101000a900460ff166003811115611ea757611ea6613c44565b5b14611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede90614a81565b60405180910390fd5b60005b8281101561207657600f54600e541115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090614674565b60405180910390fd5b601254601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390614b59565b60405180910390fd5b611fc882600e54612aa4565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612018906146c3565b9190505550600160106000600e54815260200190815260200160002060006101000a81548160ff021916908315150217905550600e600081548092919061205e906146c3565b9190505550808061206e906146c3565b915050611eea565b505050565b61208c6120866126a9565b8361276a565b6120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061450a565b60405180910390fd5b6120d784848484612b60565b50505050565b60125481565b600d60019054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b606080600d60009054906101000a900460ff16156121355761212e612ace565b9050612145565b61213d612bbc565b915050612192565b6000815111612163576040518060200160405280600081525061218e565b8061216d84612c4e565b60405160200161217e929190614ce7565b6040516020818303038152906040525b9150505b919050565b600f5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121de6126a9565b73ffffffffffffffffffffffffffffffffffffffff16146121fe57600080fd5b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122496126a9565b73ffffffffffffffffffffffffffffffffffffffff161461226957600080fd5b80601460006101000a81548160ff0219169083600381111561228e5761228d613c44565b5b021790555050565b73bdc378a75fe1d1b53adb3025541174b79474845b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122e257600080fd5b600047905073eece4544101f7c7198157c74a1cbfe12aa86718b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612341573d6000803e3d6000fd5b5050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166123866126a9565b73ffffffffffffffffffffffffffffffffffffffff16146123a657600080fd5b8060138190555050565b600b5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461241057600080fd5b600061241a612ace565b511161245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290614c31565b60405180910390fd5b600f54600e5410156124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990614d57565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b60006125156124ce8686612daf565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612de2565b1561252257839050612527565b600090505b949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612636575061263582612df9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272483611207565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127758261263d565b6127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90614de9565b60405180910390fd5b60006127bf83611207565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282e57508373ffffffffffffffffffffffffffffffffffffffff1661281684610afd565b73ffffffffffffffffffffffffffffffffffffffff16145b8061283f575061283e818561252f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286882611207565b73ffffffffffffffffffffffffffffffffffffffff16146128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614f0d565b60405180910390fd5b612939838383612edb565b6129446000826126b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129949190614f2d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129eb9190614f61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612abe828260405180602001604052806000815250612eeb565b5050565b612acb81612f46565b50565b6060600c8054612add906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612b09906142b0565b8015612b565780601f10612b2b57610100808354040283529160200191612b56565b820191906000526020600020905b815481529060010190602001808311612b3957829003601f168201915b5050505050905090565b612b6b848484612848565b612b7784848484613057565b612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90615029565b60405180910390fd5b50505050565b6060600a8054612bcb906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf7906142b0565b8015612c445780601f10612c1957610100808354040283529160200191612c44565b820191906000526020600020905b815481529060010190602001808311612c2757829003601f168201915b5050505050905090565b60606000821415612c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612daa565b600082905060005b60008214612cc8578080612cb1906146c3565b915050600a82612cc19190615078565b9150612c9e565b60008167ffffffffffffffff811115612ce457612ce3613d5d565b5b6040519080825280601f01601f191660200182016040528015612d165781602001600182028036833780820191505090505b5090505b60008514612da357600182612d2f9190614f2d565b9150600a85612d3e91906150a9565b6030612d4a9190614f61565b60f81b818381518110612d6057612d5f61479e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9c9190615078565b9450612d1a565b8093505050505b919050565b60008282604051602001612dc4929190615143565b60405160208183030381529060405280519060200120905092915050565b6000612df182601354856131df565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ec457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ed45750612ed3826131f6565b5b9050919050565b612ee6838383613260565b505050565b612ef58383613374565b612f026000848484613057565b612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3890615029565b60405180910390fd5b505050565b6000612f5182611207565b9050612f5f81600084612edb565b612f6a6000836126b1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fba9190614f2d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006130788473ffffffffffffffffffffffffffffffffffffffff16613542565b156131d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130a16126a9565b8786866040518563ffffffff1660e01b81526004016130c394939291906151c4565b6020604051808303816000875af19250505080156130ff57506040513d601f19601f820116820180604052508101906130fc9190615225565b60015b613182573d806000811461312f576040519150601f19603f3d011682016040523d82523d6000602084013e613134565b606091505b5060008151141561317a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317190615029565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131d7565b600190505b949350505050565b6000826131ec8584613555565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61326b8383836135ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132ae576132a9816135cf565b6132ed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ec576132eb8382613618565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133305761332b81613785565b61336f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461336e5761336d8282613856565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133db9061529e565b60405180910390fd5b6133ed8161263d565b1561342d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134249061530a565b60405180910390fd5b61343960008383612edb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134899190614f61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60008082905060005b84518110156135bf57600085828151811061357c5761357b61479e565b5b6020026020010151905080831161359e5761359783826138d5565b92506135ab565b6135a881846138d5565b92505b5080806135b7906146c3565b91505061355e565b508091505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613625846112b9565b61362f9190614f2d565b9050600060076000848152602001908152602001600020549050818114613714576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137999190614f2d565b90506000600960008481526020019081526020016000205490506000600883815481106137c9576137c861479e565b5b9060005260206000200154905080600883815481106137eb576137ea61479e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061383a5761383961532a565b5b6001900381819060005260206000200160009055905550505050565b6000613861836112b9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b8280546138f8906142b0565b90600052602060002090601f01602090048101928261391a5760008555613961565b82601f1061393357805160ff1916838001178555613961565b82800160010185558215613961579182015b82811115613960578251825591602001919060010190613945565b5b50905061396e9190613972565b5090565b5b8082111561398b576000816000905550600101613973565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139d8816139a3565b81146139e357600080fd5b50565b6000813590506139f5816139cf565b92915050565b600060208284031215613a1157613a10613999565b5b6000613a1f848285016139e6565b91505092915050565b60008115159050919050565b613a3d81613a28565b82525050565b6000602082019050613a586000830184613a34565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a98578082015181840152602081019050613a7d565b83811115613aa7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ac982613a5e565b613ad38185613a69565b9350613ae3818560208601613a7a565b613aec81613aad565b840191505092915050565b60006020820190508181036000830152613b118184613abe565b905092915050565b6000819050919050565b613b2c81613b19565b8114613b3757600080fd5b50565b600081359050613b4981613b23565b92915050565b600060208284031215613b6557613b64613999565b5b6000613b7384828501613b3a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ba782613b7c565b9050919050565b613bb781613b9c565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b613be181613b9c565b8114613bec57600080fd5b50565b600081359050613bfe81613bd8565b92915050565b60008060408385031215613c1b57613c1a613999565b5b6000613c2985828601613bef565b9250506020613c3a85828601613b3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110613c8457613c83613c44565b5b50565b6000819050613c9582613c73565b919050565b6000613ca582613c87565b9050919050565b613cb581613c9a565b82525050565b6000602082019050613cd06000830184613cac565b92915050565b613cdf81613b19565b82525050565b6000602082019050613cfa6000830184613cd6565b92915050565b600080600060608486031215613d1957613d18613999565b5b6000613d2786828701613bef565b9350506020613d3886828701613bef565b9250506040613d4986828701613b3a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d9582613aad565b810181811067ffffffffffffffff82111715613db457613db3613d5d565b5b80604052505050565b6000613dc761398f565b9050613dd38282613d8c565b919050565b600067ffffffffffffffff821115613df357613df2613d5d565b5b613dfc82613aad565b9050602081019050919050565b82818337600083830152505050565b6000613e2b613e2684613dd8565b613dbd565b905082815260208101848484011115613e4757613e46613d58565b5b613e52848285613e09565b509392505050565b600082601f830112613e6f57613e6e613d53565b5b8135613e7f848260208601613e18565b91505092915050565b600060208284031215613e9e57613e9d613999565b5b600082013567ffffffffffffffff811115613ebc57613ebb61399e565b5b613ec884828501613e5a565b91505092915050565b600060208284031215613ee757613ee6613999565b5b6000613ef584828501613bef565b91505092915050565b600080fd5b600080fd5b60008083601f840112613f1e57613f1d613d53565b5b8235905067ffffffffffffffff811115613f3b57613f3a613efe565b5b602083019150836020820283011115613f5757613f56613f03565b5b9250929050565b60008060008060608587031215613f7857613f77613999565b5b6000613f8687828801613bef565b9450506020613f9787828801613b3a565b935050604085013567ffffffffffffffff811115613fb857613fb761399e565b5b613fc487828801613f08565b925092505092959194509250565b6000819050919050565b613fe581613fd2565b82525050565b60006020820190506140006000830184613fdc565b92915050565b61400f81613a28565b811461401a57600080fd5b50565b60008135905061402c81614006565b92915050565b6000806040838503121561404957614048613999565b5b600061405785828601613bef565b92505060206140688582860161401d565b9150509250929050565b600067ffffffffffffffff82111561408d5761408c613d5d565b5b61409682613aad565b9050602081019050919050565b60006140b66140b184614072565b613dbd565b9050828152602081018484840111156140d2576140d1613d58565b5b6140dd848285613e09565b509392505050565b600082601f8301126140fa576140f9613d53565b5b813561410a8482602086016140a3565b91505092915050565b6000806000806080858703121561412d5761412c613999565b5b600061413b87828801613bef565b945050602061414c87828801613bef565b935050604061415d87828801613b3a565b925050606085013567ffffffffffffffff81111561417e5761417d61399e565b5b61418a878288016140e5565b91505092959194509250565b600481106141a357600080fd5b50565b6000813590506141b581614196565b92915050565b6000602082840312156141d1576141d0613999565b5b60006141df848285016141a6565b91505092915050565b6141f181613fd2565b81146141fc57600080fd5b50565b60008135905061420e816141e8565b92915050565b60006020828403121561422a57614229613999565b5b6000614238848285016141ff565b91505092915050565b6000806040838503121561425857614257613999565b5b600061426685828601613bef565b925050602061427785828601613bef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c857607f821691505b602082108114156142dc576142db614281565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061433e602c83613a69565b9150614349826142e2565b604082019050919050565b6000602082019050818103600083015261436d81614331565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006143d0602183613a69565b91506143db82614374565b604082019050919050565b600060208201905081810360008301526143ff816143c3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614462603883613a69565b915061446d82614406565b604082019050919050565b6000602082019050818103600083015261449181614455565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144f4603183613a69565b91506144ff82614498565b604082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614586602b83613a69565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f6f7574206f66207465616d2073746f636b000000000000000000000000000000600082015250565b60006145f2601183613a69565b91506145fd826145bc565b602082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b600061465e600c83613a69565b915061466982614628565b602082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146ce82613b19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470157614700614694565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614768602c83613a69565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d657461646174612069732046726f7a656e0000000000000000000000000000600082015250565b6000614803601283613a69565b915061480e826147cd565b602082019050919050565b60006020820190508181036000830152614832816147f6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614895602983613a69565b91506148a082614839565b604082019050919050565b600060208201905081810360008301526148c481614888565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614927602a83613a69565b9150614932826148cb565b604082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b7f496e76616c696420455448000000000000000000000000000000000000000000600082015250565b6000614993600b83613a69565b915061499e8261495d565b602082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f6163636f756e74206973206e6f7420696e20616c6c6f776c6973740000000000600082015250565b60006149ff601b83613a69565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f4d696e745465726d53746174757320496e76616c696400000000000000000000600082015250565b6000614a6b601683613a69565b9150614a7682614a35565b602082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f616d6f756e74206c696d6974656420696e20414c000000000000000000000000600082015250565b6000614ad7601483613a69565b9150614ae282614aa1565b602082019050919050565b60006020820190508181036000830152614b0681614aca565b9050919050565b7f616d6f756e74206c696d6974656420617420746869732074696d650000000000600082015250565b6000614b43601b83613a69565b9150614b4e82614b0d565b602082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614baf601983613a69565b9150614bba82614b79565b602082019050919050565b60006020820190508181036000830152614bde81614ba2565b9050919050565b7f6261736555524920697320454d50545900000000000000000000000000000000600082015250565b6000614c1b601083613a69565b9150614c2682614be5565b602082019050919050565b60006020820190508181036000830152614c4a81614c0e565b9050919050565b6000614c5c82613b19565b9150614c6783613b19565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ca057614c9f614694565b5b828202905092915050565b600081905092915050565b6000614cc182613a5e565b614ccb8185614cab565b9350614cdb818560208601613a7a565b80840191505092915050565b6000614cf38285614cb6565b9150614cff8284614cb6565b91508190509392505050565b7f4e6f74205265616368656420416d6f756e740000000000000000000000000000600082015250565b6000614d41601283613a69565b9150614d4c82614d0b565b602082019050919050565b60006020820190508181036000830152614d7081614d34565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614dd3602c83613a69565b9150614dde82614d77565b604082019050919050565b60006020820190508181036000830152614e0281614dc6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614e65602983613a69565b9150614e7082614e09565b604082019050919050565b60006020820190508181036000830152614e9481614e58565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ef7602483613a69565b9150614f0282614e9b565b604082019050919050565b60006020820190508181036000830152614f2681614eea565b9050919050565b6000614f3882613b19565b9150614f4383613b19565b925082821015614f5657614f55614694565b5b828203905092915050565b6000614f6c82613b19565b9150614f7783613b19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fac57614fab614694565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615013603283613a69565b915061501e82614fb7565b604082019050919050565b6000602082019050818103600083015261504281615006565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061508382613b19565b915061508e83613b19565b92508261509e5761509d615049565b5b828204905092915050565b60006150b482613b19565b91506150bf83613b19565b9250826150cf576150ce615049565b5b828206905092915050565b60008160601b9050919050565b60006150f2826150da565b9050919050565b6000615104826150e7565b9050919050565b61511c61511782613b9c565b6150f9565b82525050565b6000819050919050565b61513d61513882613b19565b615122565b82525050565b600061514f828561510b565b60148201915061515f828461512c565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006151968261516f565b6151a0818561517a565b93506151b0818560208601613a7a565b6151b981613aad565b840191505092915050565b60006080820190506151d96000830187613bae565b6151e66020830186613bae565b6151f36040830185613cd6565b8181036060830152615205818461518b565b905095945050505050565b60008151905061521f816139cf565b92915050565b60006020828403121561523b5761523a613999565b5b600061524984828501615210565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615288602083613a69565b915061529382615252565b602082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006152f4601c83613a69565b91506152ff826152be565b602082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220e58232f884e593a7805180e992d2a265dd83f587b9ca2f180e299361f2134a6a64736f6c634300080a0033
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.