ERC-721
Overview
Max Total Supply
7 CWO
Holders
4
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CWOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
cowtiousNFT
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721r.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract cowtiousNFT is ERC721r, Ownable,ReentrancyGuard{ uint256 public mintPrice; uint256 public immutable maxPerWallet; bool public isPublicMintEnabled; string internal baseTokenUri; address payable public withdrawWallet; mapping(address => uint256) public walletMints; constructor(uint256 mintprice_,uint256 maxPerWallet_,uint256 maxSupply_) ERC721r('cowtiousNFT','CWO',maxSupply_){ maxPerWallet=maxPerWallet_; mintPrice=mintprice_; } function setMintPrice(uint256 mintprice_) external onlyOwner{ mintPrice=mintprice_; } function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner{ baseTokenUri = baseTokenUri_; } function tokenURI(uint256 tokenId_) public view override returns (string memory){ require(_exists(tokenId_),'Token does not exist!'); return string(abi.encodePacked(baseTokenUri,Strings.toString(tokenId_),".json")); } function withdraw() external onlyOwner{ (bool success,)= withdrawWallet.call{value:address(this).balance}(''); require(success,'withdraw failed'); } function mint(uint256 quantity_) external payable{ require(msg.value == quantity_ * mintPrice,'Wrong Mint Value'); require(walletMints[msg.sender]+quantity_ <= maxPerWallet,'exceed max wallet'); walletMints[msg.sender] += quantity_ ; _mintRandom(msg.sender,quantity_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension. This does random batch minting. */ contract ERC721r is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint => uint) private _availableTokens; uint256 private _numAvailableTokens; uint256 immutable _maxSupply; // 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_, uint maxSupply_) { _name = name_; _symbol = symbol_; _maxSupply = maxSupply_; _numAvailableTokens = maxSupply_; } /** * @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); } function totalSupply() public view virtual returns (uint256) { return _maxSupply - _numAvailableTokens; } function maxSupply() public view virtual returns (uint256) { return _maxSupply; } /** * @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(),".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden 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 = ERC721r.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721r.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _mintIdWithoutBalanceUpdate(address to, uint256 tokenId) private { _beforeTokenTransfer(address(0), to, tokenId); _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } function _mintRandom(address to, uint _numToMint) internal virtual { require(_msgSender() == tx.origin, "Contracts cannot mint"); require(to != address(0), "ERC721: mint to the zero address"); require(_numToMint > 0, "ERC721r: need to mint at least one token"); // TODO: Probably don't need this as it will underflow and revert automatically in this case require(_numAvailableTokens >= _numToMint, "ERC721r: minting more tokens than available"); uint updatedNumAvailableTokens = _numAvailableTokens; for (uint256 i; i < _numToMint; ++i) { // Do this ++ unchecked? uint256 tokenId = getRandomAvailableTokenId(to, updatedNumAvailableTokens); _mintIdWithoutBalanceUpdate(to, tokenId); --updatedNumAvailableTokens; } _numAvailableTokens = updatedNumAvailableTokens; _balances[to] += _numToMint; } function getRandomAvailableTokenId(address to, uint updatedNumAvailableTokens) internal returns (uint256) { uint256 randomNum = uint256( keccak256( abi.encode( to, tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), address(this), updatedNumAvailableTokens ) ) ); uint256 randomIndex = randomNum % updatedNumAvailableTokens; return getAvailableTokenAtIndex(randomIndex, updatedNumAvailableTokens); } // Implements https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle. Code taken from CryptoPhunksV2 function getAvailableTokenAtIndex(uint256 indexToUse, uint updatedNumAvailableTokens) internal returns (uint256) { uint256 valAtIndex = _availableTokens[indexToUse]; uint256 result; if (valAtIndex == 0) { // This means the index itself is still an available token result = indexToUse; } else { // This means the index itself is not an available token, but the val at that index is. result = valAtIndex; } uint256 lastIndex = updatedNumAvailableTokens - 1; if (indexToUse != lastIndex) { // Replace the value at indexToUse, now that it's been used. // Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards. uint256 lastValInArray = _availableTokens[lastIndex]; if (lastValInArray == 0) { // This means the index itself is still an available token _availableTokens[indexToUse] = lastIndex; } else { // This means the index itself is not an available token, but the val at that index is. _availableTokens[indexToUse] = lastValInArray; // Gas refund courtsey of @dievardump delete _availableTokens[lastIndex]; } } return result; } // Not as good as minting a specific tokenId, but will behave the same at the start // allowing you to explicitly mint some tokens at launch. function _mintAtIndex(address to, uint index) internal virtual { require(_msgSender() == tx.origin, "Contracts cannot mint"); require(to != address(0), "ERC721: mint to the zero address"); require(_numAvailableTokens >= 1, "ERC721r: minting more tokens than available"); uint tokenId = getAvailableTokenAtIndex(index, _numAvailableTokens); --_numAvailableTokens; _mintIdWithoutBalanceUpdate(to, tokenId); _balances[to] += 1; } /** * @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(ERC721r.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); 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); _afterTokenTransfer(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(ERC721r.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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 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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"mintprice_","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice_","type":"uint256"}],"name":"setMintPrice","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":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162003c7538038062003c758339818101604052810190620000379190620002e6565b6040518060400160405280600b81526020017f636f7774696f75734e46540000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43574f0000000000000000000000000000000000000000000000000000000000815250828260009080519060200190620000bc929190620001f6565b508160019080519060200190620000d5929190620001f6565b5080608081815250508060038190555050505062000108620000fc6200012860201b60201c565b6200013060201b60201c565b60016009819055508160a0818152505082600a81905550505050620003a7565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002049062000371565b90600052602060002090601f01602090048101928262000228576000855562000274565b82601f106200024357805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027357825182559160200191906001019062000256565b5b50905062000283919062000287565b5090565b5b80821115620002a257600081600090555060010162000288565b5090565b600080fd5b6000819050919050565b620002c081620002ab565b8114620002cc57600080fd5b50565b600081519050620002e081620002b5565b92915050565b600080600060608486031215620003025762000301620002a6565b5b60006200031286828701620002cf565b93505060206200032586828701620002cf565b92505060406200033886828701620002cf565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038a57607f821691505b60208210811415620003a157620003a062000342565b5b50919050565b60805160a05161389a620003db60003960008181610b150152610e0c01526000818161098c0152611012015261389a6000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c514610595578063f0293fd3146105d2578063f2fde38b1461060f578063f4a0a528146106385761019c565b8063b88d4fde14610504578063c87b56dd1461052d578063d5abeb011461056a5761019c565b806395652cfa116100c657806395652cfa1461046b57806395d89b4114610494578063a0712d68146104bf578063a22cb465146104db5761019c565b8063715018a6146103fe57806385d178f4146104155780638da5cb5b146104405761019c565b806323b872dd11610159578063453c231011610133578063453c23101461032e5780636352211e146103595780636817c76c1461039657806370a08231146103c15761019c565b806323b872dd146102c55780633ccfd60b146102ee57806342842e0e146103055761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190612157565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906121de565b610674565b6040516102009190612157565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b91906122a4565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906122fc565b6107e8565b604051610268919061236a565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906123b1565b61086d565b005b3480156102a657600080fd5b506102af610985565b6040516102bc9190612400565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061241b565b6109ba565b005b3480156102fa57600080fd5b50610303610a1a565b005b34801561031157600080fd5b5061032c6004803603810190610327919061241b565b610af3565b005b34801561033a57600080fd5b50610343610b13565b6040516103509190612400565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906122fc565b610b37565b60405161038d919061236a565b60405180910390f35b3480156103a257600080fd5b506103ab610be9565b6040516103b89190612400565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e3919061246e565b610bef565b6040516103f59190612400565b60405180910390f35b34801561040a57600080fd5b50610413610ca7565b005b34801561042157600080fd5b5061042a610cbb565b60405161043791906124bc565b60405180910390f35b34801561044c57600080fd5b50610455610ce1565b604051610462919061236a565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061253c565b610d0b565b005b3480156104a057600080fd5b506104a9610d29565b6040516104b691906122a4565b60405180910390f35b6104d960048036038101906104d491906122fc565b610dbb565b005b3480156104e757600080fd5b5061050260048036038101906104fd91906125b5565b610f1a565b005b34801561051057600080fd5b5061052b60048036038101906105269190612725565b610f30565b005b34801561053957600080fd5b50610554600480360381019061054f91906122fc565b610f92565b60405161056191906122a4565b60405180910390f35b34801561057657600080fd5b5061057f61100e565b60405161058c9190612400565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906127a8565b611036565b6040516105c99190612157565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061246e565b6110ca565b6040516106069190612400565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061246e565b6110e2565b005b34801561064457600080fd5b5061065f600480360381019061065a91906122fc565b611166565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611178565b5b9050919050565b60606000805461076590612817565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612817565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826111e2565b610832576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610829906128bb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610b37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061294d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861124e565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161124e565b611036565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906129df565b60405180910390fd5b6109808383611256565b505050565b60006003547f00000000000000000000000000000000000000000000000000000000000000006109b59190612a2e565b905090565b6109cb6109c561124e565b8261130f565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190612ad4565b60405180910390fd5b610a158383836113ed565b505050565b610a22611654565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a6a90612b25565b60006040518083038185875af1925050503d8060008114610aa7576040519150601f19603f3d011682016040523d82523d6000602084013e610aac565b606091505b5050905080610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612b86565b60405180910390fd5b50565b610b0e83838360405180602001604052806000815250610f30565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c18565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790612caa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caf611654565b610cb960006116d2565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d13611654565b8181600c9190610d24929190612099565b505050565b606060018054610d3890612817565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490612817565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b5050505050905090565b600a5481610dc99190612cca565b3414610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612d70565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e769190612d90565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612e32565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f069190612d90565b92505081905550610f173382611798565b50565b610f2c610f2561124e565b83836119b0565b5050565b610f41610f3b61124e565b8361130f565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612ad4565b60405180910390fd5b610f8c84848484611b1d565b50505050565b6060610f9d826111e2565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612e9e565b60405180910390fd5b600c610fe783611b79565b604051602001610ff8929190612fda565b6040516020818303038152906040529050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6110ea611654565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111519061307b565b60405180910390fd5b611163816116d2565b50565b61116e611654565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112c983610b37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061131a826111e2565b611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061310d565b60405180910390fd5b600061136483610b37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d357508373ffffffffffffffffffffffffffffffffffffffff166113bb846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806113e457506113e38185611036565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661140d82610b37565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a9061319f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90613231565b60405180910390fd5b6114de838383611cda565b6114e9600082611256565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115399190612a2e565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115909190612d90565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461164f838383611cdf565b505050565b61165c61124e565b73ffffffffffffffffffffffffffffffffffffffff1661167a610ce1565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c79061329d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff166117b761124e565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613309565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613375565b60405180910390fd5b600081116118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613407565b60405180910390fd5b806003541015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613499565b60405180910390fd5b6000600354905060005b8281101561194d5760006119238584611ce4565b905061192f8582611d52565b82611939906134b9565b92505080611946906134e3565b905061190f565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a49190612d90565b92505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690613578565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b109190612157565b60405180910390a3505050565b611b288484846113ed565b611b3484848484611e1c565b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061360a565b60405180910390fd5b50505050565b60606000821415611bc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd5565b600082905060005b60008214611bf3578080611bdc906134e3565b915050600a82611bec9190613659565b9150611bc9565b60008167ffffffffffffffff811115611c0f57611c0e6125fa565b5b6040519080825280601f01601f191660200182016040528015611c415781602001600182028036833780820191505090505b5090505b60008514611cce57600182611c5a9190612a2e565b9150600a85611c69919061368a565b6030611c759190612d90565b60f81b818381518110611c8b57611c8a6136bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cc79190613659565b9450611c45565b8093505050505b919050565b505050565b505050565b600080833a434244600143611cf99190612a2e565b403089604051602001611d13989796959493929190613703565b6040516020818303038152906040528051906020012060001c905060008382611d3c919061368a565b9050611d488185611fb3565b9250505092915050565b611d5e60008383611cda565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1860008383611cdf565b5050565b6000611e3d8473ffffffffffffffffffffffffffffffffffffffff16612076565b15611fa6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6661124e565b8786866040518563ffffffff1660e01b8152600401611e8894939291906137d6565b602060405180830381600087803b158015611ea257600080fd5b505af1925050508015611ed357506040513d601f19601f82011682018060405250810190611ed09190613837565b60015b611f56573d8060008114611f03576040519150601f19603f3d011682016040523d82523d6000602084013e611f08565b606091505b50600081511415611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f459061360a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fab565b600190505b949350505050565b60008060026000858152602001908152602001600020549050600080821415611fde57849050611fe2565b8190505b6000600185611ff19190612a2e565b905080861461206a57600060026000838152602001908152602001600020549050600081141561203857816002600089815260200190815260200160002081905550612068565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120a590612817565b90600052602060002090601f0160209004810192826120c7576000855561210e565b82601f106120e057803560ff191683800117855561210e565b8280016001018555821561210e579182015b8281111561210d5782358255916020019190600101906120f2565b5b50905061211b919061211f565b5090565b5b80821115612138576000816000905550600101612120565b5090565b60008115159050919050565b6121518161213c565b82525050565b600060208201905061216c6000830184612148565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121bb81612186565b81146121c657600080fd5b50565b6000813590506121d8816121b2565b92915050565b6000602082840312156121f4576121f361217c565b5b6000612202848285016121c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224557808201518184015260208101905061222a565b83811115612254576000848401525b50505050565b6000601f19601f8301169050919050565b60006122768261220b565b6122808185612216565b9350612290818560208601612227565b6122998161225a565b840191505092915050565b600060208201905081810360008301526122be818461226b565b905092915050565b6000819050919050565b6122d9816122c6565b81146122e457600080fd5b50565b6000813590506122f6816122d0565b92915050565b6000602082840312156123125761231161217c565b5b6000612320848285016122e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235482612329565b9050919050565b61236481612349565b82525050565b600060208201905061237f600083018461235b565b92915050565b61238e81612349565b811461239957600080fd5b50565b6000813590506123ab81612385565b92915050565b600080604083850312156123c8576123c761217c565b5b60006123d68582860161239c565b92505060206123e7858286016122e7565b9150509250929050565b6123fa816122c6565b82525050565b600060208201905061241560008301846123f1565b92915050565b6000806000606084860312156124345761243361217c565b5b60006124428682870161239c565b93505060206124538682870161239c565b9250506040612464868287016122e7565b9150509250925092565b6000602082840312156124845761248361217c565b5b60006124928482850161239c565b91505092915050565b60006124a682612329565b9050919050565b6124b68161249b565b82525050565b60006020820190506124d160008301846124ad565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124fc576124fb6124d7565b5b8235905067ffffffffffffffff811115612519576125186124dc565b5b602083019150836001820283011115612535576125346124e1565b5b9250929050565b600080602083850312156125535761255261217c565b5b600083013567ffffffffffffffff81111561257157612570612181565b5b61257d858286016124e6565b92509250509250929050565b6125928161213c565b811461259d57600080fd5b50565b6000813590506125af81612589565b92915050565b600080604083850312156125cc576125cb61217c565b5b60006125da8582860161239c565b92505060206125eb858286016125a0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126328261225a565b810181811067ffffffffffffffff82111715612651576126506125fa565b5b80604052505050565b6000612664612172565b90506126708282612629565b919050565b600067ffffffffffffffff8211156126905761268f6125fa565b5b6126998261225a565b9050602081019050919050565b82818337600083830152505050565b60006126c86126c384612675565b61265a565b9050828152602081018484840111156126e4576126e36125f5565b5b6126ef8482856126a6565b509392505050565b600082601f83011261270c5761270b6124d7565b5b813561271c8482602086016126b5565b91505092915050565b6000806000806080858703121561273f5761273e61217c565b5b600061274d8782880161239c565b945050602061275e8782880161239c565b935050604061276f878288016122e7565b925050606085013567ffffffffffffffff8111156127905761278f612181565b5b61279c878288016126f7565b91505092959194509250565b600080604083850312156127bf576127be61217c565b5b60006127cd8582860161239c565b92505060206127de8582860161239c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061282f57607f821691505b60208210811415612843576128426127e8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006128a5602c83612216565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612937602183612216565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129c9603883612216565b91506129d48261296d565b604082019050919050565b600060208201905081810360008301526129f8816129bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a39826122c6565b9150612a44836122c6565b925082821015612a5757612a566129ff565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612abe603183612216565b9150612ac982612a62565b604082019050919050565b60006020820190508181036000830152612aed81612ab1565b9050919050565b600081905092915050565b50565b6000612b0f600083612af4565b9150612b1a82612aff565b600082019050919050565b6000612b3082612b02565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612b70600f83612216565b9150612b7b82612b3a565b602082019050919050565b60006020820190508181036000830152612b9f81612b63565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c02602983612216565b9150612c0d82612ba6565b604082019050919050565b60006020820190508181036000830152612c3181612bf5565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c94602a83612216565b9150612c9f82612c38565b604082019050919050565b60006020820190508181036000830152612cc381612c87565b9050919050565b6000612cd5826122c6565b9150612ce0836122c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d1957612d186129ff565b5b828202905092915050565b7f57726f6e67204d696e742056616c756500000000000000000000000000000000600082015250565b6000612d5a601083612216565b9150612d6582612d24565b602082019050919050565b60006020820190508181036000830152612d8981612d4d565b9050919050565b6000612d9b826122c6565b9150612da6836122c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ddb57612dda6129ff565b5b828201905092915050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b6000612e1c601183612216565b9150612e2782612de6565b602082019050919050565b60006020820190508181036000830152612e4b81612e0f565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6000612e88601583612216565b9150612e9382612e52565b602082019050919050565b60006020820190508181036000830152612eb781612e7b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612eeb81612817565b612ef58186612ebe565b94506001821660008114612f105760018114612f2157612f54565b60ff19831686528186019350612f54565b612f2a85612ec9565b60005b83811015612f4c57815481890152600182019150602081019050612f2d565b838801955050505b50505092915050565b6000612f688261220b565b612f728185612ebe565b9350612f82818560208601612227565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612fc4600583612ebe565b9150612fcf82612f8e565b600582019050919050565b6000612fe68285612ede565b9150612ff28284612f5d565b9150612ffd82612fb7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613065602683612216565b915061307082613009565b604082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006130f7602c83612216565b91506131028261309b565b604082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613189602583612216565b91506131948261312d565b604082019050919050565b600060208201905081810360008301526131b88161317c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061321b602483612216565b9150613226826131bf565b604082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613287602083612216565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b60006132f3601583612216565b91506132fe826132bd565b602082019050919050565b60006020820190508181036000830152613322816132e6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061335f602083612216565b915061336a82613329565b602082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006133f1602883612216565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b6000613483602b83612216565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b60006134c4826122c6565b915060008214156134d8576134d76129ff565b5b600182039050919050565b60006134ee826122c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613521576135206129ff565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613562601983612216565b915061356d8261352c565b602082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135f4603283612216565b91506135ff82613598565b604082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613664826122c6565b915061366f836122c6565b92508261367f5761367e61362a565b5b828204905092915050565b6000613695826122c6565b91506136a0836122c6565b9250826136b0576136af61362a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6136fd816136ea565b82525050565b600061010082019050613719600083018b61235b565b613726602083018a6123f1565b61373360408301896123f1565b61374060608301886123f1565b61374d60808301876123f1565b61375a60a08301866136f4565b61376760c083018561235b565b61377460e08301846123f1565b9998505050505050505050565b600081519050919050565b600082825260208201905092915050565b60006137a882613781565b6137b2818561378c565b93506137c2818560208601612227565b6137cb8161225a565b840191505092915050565b60006080820190506137eb600083018761235b565b6137f8602083018661235b565b61380560408301856123f1565b8181036060830152613817818461379d565b905095945050505050565b600081519050613831816121b2565b92915050565b60006020828403121561384d5761384c61217c565b5b600061385b84828501613822565b9150509291505056fea264697066735822122071185730b1e78b11f0256bdb5b6d29175b169f672c1d12061010e8232a6017d164736f6c63430008090033000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c514610595578063f0293fd3146105d2578063f2fde38b1461060f578063f4a0a528146106385761019c565b8063b88d4fde14610504578063c87b56dd1461052d578063d5abeb011461056a5761019c565b806395652cfa116100c657806395652cfa1461046b57806395d89b4114610494578063a0712d68146104bf578063a22cb465146104db5761019c565b8063715018a6146103fe57806385d178f4146104155780638da5cb5b146104405761019c565b806323b872dd11610159578063453c231011610133578063453c23101461032e5780636352211e146103595780636817c76c1461039657806370a08231146103c15761019c565b806323b872dd146102c55780633ccfd60b146102ee57806342842e0e146103055761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190612157565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906121de565b610674565b6040516102009190612157565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b91906122a4565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906122fc565b6107e8565b604051610268919061236a565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906123b1565b61086d565b005b3480156102a657600080fd5b506102af610985565b6040516102bc9190612400565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061241b565b6109ba565b005b3480156102fa57600080fd5b50610303610a1a565b005b34801561031157600080fd5b5061032c6004803603810190610327919061241b565b610af3565b005b34801561033a57600080fd5b50610343610b13565b6040516103509190612400565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906122fc565b610b37565b60405161038d919061236a565b60405180910390f35b3480156103a257600080fd5b506103ab610be9565b6040516103b89190612400565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e3919061246e565b610bef565b6040516103f59190612400565b60405180910390f35b34801561040a57600080fd5b50610413610ca7565b005b34801561042157600080fd5b5061042a610cbb565b60405161043791906124bc565b60405180910390f35b34801561044c57600080fd5b50610455610ce1565b604051610462919061236a565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061253c565b610d0b565b005b3480156104a057600080fd5b506104a9610d29565b6040516104b691906122a4565b60405180910390f35b6104d960048036038101906104d491906122fc565b610dbb565b005b3480156104e757600080fd5b5061050260048036038101906104fd91906125b5565b610f1a565b005b34801561051057600080fd5b5061052b60048036038101906105269190612725565b610f30565b005b34801561053957600080fd5b50610554600480360381019061054f91906122fc565b610f92565b60405161056191906122a4565b60405180910390f35b34801561057657600080fd5b5061057f61100e565b60405161058c9190612400565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906127a8565b611036565b6040516105c99190612157565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061246e565b6110ca565b6040516106069190612400565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061246e565b6110e2565b005b34801561064457600080fd5b5061065f600480360381019061065a91906122fc565b611166565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611178565b5b9050919050565b60606000805461076590612817565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612817565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826111e2565b610832576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610829906128bb565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610b37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061294d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861124e565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161124e565b611036565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906129df565b60405180910390fd5b6109808383611256565b505050565b60006003547f00000000000000000000000000000000000000000000000000000000000003e86109b59190612a2e565b905090565b6109cb6109c561124e565b8261130f565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190612ad4565b60405180910390fd5b610a158383836113ed565b505050565b610a22611654565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a6a90612b25565b60006040518083038185875af1925050503d8060008114610aa7576040519150601f19603f3d011682016040523d82523d6000602084013e610aac565b606091505b5050905080610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612b86565b60405180910390fd5b50565b610b0e83838360405180602001604052806000815250610f30565b505050565b7f000000000000000000000000000000000000000000000000000000000000000281565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c18565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790612caa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caf611654565b610cb960006116d2565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d13611654565b8181600c9190610d24929190612099565b505050565b606060018054610d3890612817565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490612817565b8015610db15780601f10610d8657610100808354040283529160200191610db1565b820191906000526020600020905b815481529060010190602001808311610d9457829003601f168201915b5050505050905090565b600a5481610dc99190612cca565b3414610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612d70565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000281600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e769190612d90565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612e32565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f069190612d90565b92505081905550610f173382611798565b50565b610f2c610f2561124e565b83836119b0565b5050565b610f41610f3b61124e565b8361130f565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612ad4565b60405180910390fd5b610f8c84848484611b1d565b50505050565b6060610f9d826111e2565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612e9e565b60405180910390fd5b600c610fe783611b79565b604051602001610ff8929190612fda565b6040516020818303038152906040529050919050565b60007f00000000000000000000000000000000000000000000000000000000000003e8905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6110ea611654565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111519061307b565b60405180910390fd5b611163816116d2565b50565b61116e611654565b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112c983610b37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061131a826111e2565b611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061310d565b60405180910390fd5b600061136483610b37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d357508373ffffffffffffffffffffffffffffffffffffffff166113bb846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806113e457506113e38185611036565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661140d82610b37565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a9061319f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90613231565b60405180910390fd5b6114de838383611cda565b6114e9600082611256565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115399190612a2e565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115909190612d90565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461164f838383611cdf565b505050565b61165c61124e565b73ffffffffffffffffffffffffffffffffffffffff1661167a610ce1565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c79061329d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff166117b761124e565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613309565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613375565b60405180910390fd5b600081116118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613407565b60405180910390fd5b806003541015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613499565b60405180910390fd5b6000600354905060005b8281101561194d5760006119238584611ce4565b905061192f8582611d52565b82611939906134b9565b92505080611946906134e3565b905061190f565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a49190612d90565b92505081905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1690613578565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b109190612157565b60405180910390a3505050565b611b288484846113ed565b611b3484848484611e1c565b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061360a565b60405180910390fd5b50505050565b60606000821415611bc1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd5565b600082905060005b60008214611bf3578080611bdc906134e3565b915050600a82611bec9190613659565b9150611bc9565b60008167ffffffffffffffff811115611c0f57611c0e6125fa565b5b6040519080825280601f01601f191660200182016040528015611c415781602001600182028036833780820191505090505b5090505b60008514611cce57600182611c5a9190612a2e565b9150600a85611c69919061368a565b6030611c759190612d90565b60f81b818381518110611c8b57611c8a6136bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cc79190613659565b9450611c45565b8093505050505b919050565b505050565b505050565b600080833a434244600143611cf99190612a2e565b403089604051602001611d13989796959493929190613703565b6040516020818303038152906040528051906020012060001c905060008382611d3c919061368a565b9050611d488185611fb3565b9250505092915050565b611d5e60008383611cda565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1860008383611cdf565b5050565b6000611e3d8473ffffffffffffffffffffffffffffffffffffffff16612076565b15611fa6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6661124e565b8786866040518563ffffffff1660e01b8152600401611e8894939291906137d6565b602060405180830381600087803b158015611ea257600080fd5b505af1925050508015611ed357506040513d601f19601f82011682018060405250810190611ed09190613837565b60015b611f56573d8060008114611f03576040519150601f19603f3d011682016040523d82523d6000602084013e611f08565b606091505b50600081511415611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f459061360a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fab565b600190505b949350505050565b60008060026000858152602001908152602001600020549050600080821415611fde57849050611fe2565b8190505b6000600185611ff19190612a2e565b905080861461206a57600060026000838152602001908152602001600020549050600081141561203857816002600089815260200190815260200160002081905550612068565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120a590612817565b90600052602060002090601f0160209004810192826120c7576000855561210e565b82601f106120e057803560ff191683800117855561210e565b8280016001018555821561210e579182015b8281111561210d5782358255916020019190600101906120f2565b5b50905061211b919061211f565b5090565b5b80821115612138576000816000905550600101612120565b5090565b60008115159050919050565b6121518161213c565b82525050565b600060208201905061216c6000830184612148565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121bb81612186565b81146121c657600080fd5b50565b6000813590506121d8816121b2565b92915050565b6000602082840312156121f4576121f361217c565b5b6000612202848285016121c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224557808201518184015260208101905061222a565b83811115612254576000848401525b50505050565b6000601f19601f8301169050919050565b60006122768261220b565b6122808185612216565b9350612290818560208601612227565b6122998161225a565b840191505092915050565b600060208201905081810360008301526122be818461226b565b905092915050565b6000819050919050565b6122d9816122c6565b81146122e457600080fd5b50565b6000813590506122f6816122d0565b92915050565b6000602082840312156123125761231161217c565b5b6000612320848285016122e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235482612329565b9050919050565b61236481612349565b82525050565b600060208201905061237f600083018461235b565b92915050565b61238e81612349565b811461239957600080fd5b50565b6000813590506123ab81612385565b92915050565b600080604083850312156123c8576123c761217c565b5b60006123d68582860161239c565b92505060206123e7858286016122e7565b9150509250929050565b6123fa816122c6565b82525050565b600060208201905061241560008301846123f1565b92915050565b6000806000606084860312156124345761243361217c565b5b60006124428682870161239c565b93505060206124538682870161239c565b9250506040612464868287016122e7565b9150509250925092565b6000602082840312156124845761248361217c565b5b60006124928482850161239c565b91505092915050565b60006124a682612329565b9050919050565b6124b68161249b565b82525050565b60006020820190506124d160008301846124ad565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126124fc576124fb6124d7565b5b8235905067ffffffffffffffff811115612519576125186124dc565b5b602083019150836001820283011115612535576125346124e1565b5b9250929050565b600080602083850312156125535761255261217c565b5b600083013567ffffffffffffffff81111561257157612570612181565b5b61257d858286016124e6565b92509250509250929050565b6125928161213c565b811461259d57600080fd5b50565b6000813590506125af81612589565b92915050565b600080604083850312156125cc576125cb61217c565b5b60006125da8582860161239c565b92505060206125eb858286016125a0565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126328261225a565b810181811067ffffffffffffffff82111715612651576126506125fa565b5b80604052505050565b6000612664612172565b90506126708282612629565b919050565b600067ffffffffffffffff8211156126905761268f6125fa565b5b6126998261225a565b9050602081019050919050565b82818337600083830152505050565b60006126c86126c384612675565b61265a565b9050828152602081018484840111156126e4576126e36125f5565b5b6126ef8482856126a6565b509392505050565b600082601f83011261270c5761270b6124d7565b5b813561271c8482602086016126b5565b91505092915050565b6000806000806080858703121561273f5761273e61217c565b5b600061274d8782880161239c565b945050602061275e8782880161239c565b935050604061276f878288016122e7565b925050606085013567ffffffffffffffff8111156127905761278f612181565b5b61279c878288016126f7565b91505092959194509250565b600080604083850312156127bf576127be61217c565b5b60006127cd8582860161239c565b92505060206127de8582860161239c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061282f57607f821691505b60208210811415612843576128426127e8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006128a5602c83612216565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612937602183612216565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129c9603883612216565b91506129d48261296d565b604082019050919050565b600060208201905081810360008301526129f8816129bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a39826122c6565b9150612a44836122c6565b925082821015612a5757612a566129ff565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612abe603183612216565b9150612ac982612a62565b604082019050919050565b60006020820190508181036000830152612aed81612ab1565b9050919050565b600081905092915050565b50565b6000612b0f600083612af4565b9150612b1a82612aff565b600082019050919050565b6000612b3082612b02565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612b70600f83612216565b9150612b7b82612b3a565b602082019050919050565b60006020820190508181036000830152612b9f81612b63565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c02602983612216565b9150612c0d82612ba6565b604082019050919050565b60006020820190508181036000830152612c3181612bf5565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c94602a83612216565b9150612c9f82612c38565b604082019050919050565b60006020820190508181036000830152612cc381612c87565b9050919050565b6000612cd5826122c6565b9150612ce0836122c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d1957612d186129ff565b5b828202905092915050565b7f57726f6e67204d696e742056616c756500000000000000000000000000000000600082015250565b6000612d5a601083612216565b9150612d6582612d24565b602082019050919050565b60006020820190508181036000830152612d8981612d4d565b9050919050565b6000612d9b826122c6565b9150612da6836122c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ddb57612dda6129ff565b5b828201905092915050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b6000612e1c601183612216565b9150612e2782612de6565b602082019050919050565b60006020820190508181036000830152612e4b81612e0f565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6000612e88601583612216565b9150612e9382612e52565b602082019050919050565b60006020820190508181036000830152612eb781612e7b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612eeb81612817565b612ef58186612ebe565b94506001821660008114612f105760018114612f2157612f54565b60ff19831686528186019350612f54565b612f2a85612ec9565b60005b83811015612f4c57815481890152600182019150602081019050612f2d565b838801955050505b50505092915050565b6000612f688261220b565b612f728185612ebe565b9350612f82818560208601612227565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612fc4600583612ebe565b9150612fcf82612f8e565b600582019050919050565b6000612fe68285612ede565b9150612ff28284612f5d565b9150612ffd82612fb7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613065602683612216565b915061307082613009565b604082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006130f7602c83612216565b91506131028261309b565b604082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613189602583612216565b91506131948261312d565b604082019050919050565b600060208201905081810360008301526131b88161317c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061321b602483612216565b9150613226826131bf565b604082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613287602083612216565b915061329282613251565b602082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b60006132f3601583612216565b91506132fe826132bd565b602082019050919050565b60006020820190508181036000830152613322816132e6565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061335f602083612216565b915061336a82613329565b602082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006133f1602883612216565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b6000613483602b83612216565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b60006134c4826122c6565b915060008214156134d8576134d76129ff565b5b600182039050919050565b60006134ee826122c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613521576135206129ff565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613562601983612216565b915061356d8261352c565b602082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135f4603283612216565b91506135ff82613598565b604082019050919050565b60006020820190508181036000830152613623816135e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613664826122c6565b915061366f836122c6565b92508261367f5761367e61362a565b5b828204905092915050565b6000613695826122c6565b91506136a0836122c6565b9250826136b0576136af61362a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6136fd816136ea565b82525050565b600061010082019050613719600083018b61235b565b613726602083018a6123f1565b61373360408301896123f1565b61374060608301886123f1565b61374d60808301876123f1565b61375a60a08301866136f4565b61376760c083018561235b565b61377460e08301846123f1565b9998505050505050505050565b600081519050919050565b600082825260208201905092915050565b60006137a882613781565b6137b2818561378c565b93506137c2818560208601612227565b6137cb8161225a565b840191505092915050565b60006080820190506137eb600083018761235b565b6137f8602083018661235b565b61380560408301856123f1565b8181036060830152613817818461379d565b905095945050505050565b600081519050613831816121b2565b92915050565b60006020828403121561384d5761384c61217c565b5b600061385b84828501613822565b9150509291505056fea264697066735822122071185730b1e78b11f0256bdb5b6d29175b169f672c1d12061010e8232a6017d164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : mintprice_ (uint256): 3000000000000000
Arg [1] : maxPerWallet_ (uint256): 2
Arg [2] : maxSupply_ (uint256): 1000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
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.