ERC-721
Overview
Max Total Supply
10,333 CCC
Holders
2,114
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CCCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CheekyCougarClub
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Hi. If you have any questions or comments in this smart contract please let me know at: // Whatsapp +923014440289, Telegram @thinkmuneeb, discord: timon#1213, I'm Muneeb Zubair Khan // // // Smart Contract Made by Muneeb Zubair Khan // The UI is made by Abraham Peter, Whatsapp +923004702553, Telegram @Abrahampeterhash. // // // // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract CheekyCougarClub is ERC721("Cheeky Cougar Club", "CCC") { string public baseURI; bool public isSaleActive; uint256 public circulatingSupply; address public owner = msg.sender; uint256 public itemPrice = 0.08 ether; uint256 public itemPricePresale = 0.06 ether; uint256 public constant totalSupply = 10_333; address public marketing = 0x9A437225AA033F6FCe376e1c5ac4c30c41363c9f; address public dev = 0xc66C9f79AAa0c8E6F3d12C4eFc7D7FE7c1f8B89C; bool public isAllowListActive; uint256 public allowListMaxMint = 3; mapping(address => bool) public onAllowList; mapping(address => uint256) public allowListClaimedBy; //////////////////// // ALLOWLIST // //////////////////// function addToAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) onAllowList[addresses[i]] = true; } function removeFromAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) onAllowList[addresses[i]] = false; } //////////////////// // PRESALE // //////////////////// // Purchase multiple NFTs at once function purchasePresaleTokens(uint256 _howMany) external payable tokensAvailable(_howMany) { require(isAllowListActive, "Allowlist is not active"); require(onAllowList[msg.sender], "You are not in allowlist"); require( allowListClaimedBy[msg.sender] + _howMany <= allowListMaxMint, "Purchase exceeds max allowed" ); require( msg.value >= _howMany * itemPricePresale, "Try to send more ETH" ); allowListClaimedBy[msg.sender] += _howMany; for (uint256 i = 0; i < _howMany; i++) _mint(msg.sender, ++circulatingSupply); } //////////////////// // PUBLIC SALE // //////////////////// // Purchase multiple NFTs at once function purchaseTokens(uint256 _howMany) external payable tokensAvailable(_howMany) { require( isSaleActive, "Sale is not active" ); require(_howMany > 0 && _howMany <= 10, "Mint min 1, max 10"); require(msg.value >= _howMany * itemPrice, "Try to send more ETH"); for (uint256 i = 0; i < _howMany; i++) _mint(msg.sender, ++circulatingSupply); } ////////////////////////// // Only Owner Methods // ////////////////////////// function stopSale() external onlyOwner { isSaleActive = false; } function startSale() external onlyOwner { isSaleActive = true; } // Owner can withdraw ETH from here function withdrawETH() external onlyOwner { uint256 balance = address(this).balance; uint256 _50_percent = (balance * 0.50 ether) / 1 ether; uint256 _49_percent = (balance * 0.49 ether) / 1 ether; uint256 _1_percent = (balance * 0.01 ether) / 1 ether; payable(msg.sender).transfer(_50_percent); payable(marketing).transfer(_49_percent); payable(dev).transfer(_1_percent); } // set limit of allowlist function setAllowListMaxMint(uint256 _allowListMaxMint) external onlyOwner { allowListMaxMint = _allowListMaxMint; } // Change price in case of ETH price changes too much function setPrice(uint256 _newPrice) external onlyOwner { itemPrice = _newPrice; } // Change presale price in case of ETH price changes too much function setPricePresale(uint256 _itemPricePresale) external onlyOwner { itemPricePresale = _itemPricePresale; } // Hide identity or show identity from here function setBaseURI(string memory __baseURI) external onlyOwner { baseURI = __baseURI; } // Send NFTs to a list of addresses function giftNftToList(address[] calldata _sendNftsTo) external onlyOwner tokensAvailable(_sendNftsTo.length) { for (uint256 i = 0; i < _sendNftsTo.length; i++) _mint(_sendNftsTo[i], ++circulatingSupply); } // Send NFTs to a single address function giftNftToAddress(address _sendNftsTo, uint256 _howMany) external onlyOwner tokensAvailable(_howMany) { for (uint256 i = 0; i < _howMany; i++) _mint(_sendNftsTo, ++circulatingSupply); } function setIsAllowListActive(bool _isAllowListActive) external onlyOwner { isAllowListActive = _isAllowListActive; } /////////////////// // Query Method // /////////////////// function tokensRemaining() public view returns (uint256) { return totalSupply - circulatingSupply; } function _baseURI() internal view override returns (string memory) { return baseURI; } /////////////////// // Helper Code // /////////////////// modifier tokensAvailable(uint256 _howMany) { require(_howMany <= tokensRemaining(), "Try minting less tokens"); _; } modifier onlyOwner() { require(owner == msg.sender, "Ownable: caller is not the owner"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_sendNftsTo","type":"address"},{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"giftNftToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_sendNftsTo","type":"address[]"}],"name":"giftNftToList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchasePresaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchaseTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","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":"uint256","name":"_allowListMaxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemPricePresale","type":"uint256"}],"name":"setPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":"tokensRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405233600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555067011c37937e080000600a5566d529ae9e860000600b55739a437225aa033f6fce376e1c5ac4c30c41363c9f600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c66c9f79aaa0c8e6f3d12c4efc7d7fe7c1f8b89c600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003600e553480156200011857600080fd5b506040518060400160405280601281526020017f436865656b7920436f7567617220436c756200000000000000000000000000008152506040518060400160405280600381526020017f434343000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019d929190620001bf565b508060019080519060200190620001b6929190620001bf565b505050620002d4565b828054620001cd906200029e565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b757607f821691505b60208210811415620002ce57620002cd6200026f565b5b50919050565b6144ba80620002e46000396000f3fe6080604052600436106102455760003560e01c80637a6685f111610139578063b4cdf927116100b6578063dac6db1c1161007a578063dac6db1c1461085f578063e086e5ec1461088a578063e36b0b37146108a1578063e985e9c5146108b8578063efc8e9d6146108f5578063f9529a261461091e57610245565b8063b4cdf9271461078c578063b66a0e5d146107b7578063b88d4fde146107ce578063c87b56dd146107f7578063c8b081251461083457610245565b806391cca3db116100fd57806391cca3db146106b95780639358928b146106e457806395d89b411461070f578063a22cb4651461073a578063a51312c81461076357610245565b80637a6685f1146105f55780637b97008d1461061e5780637f44ab2f1461063a5780638da5cb5b1461066557806391b7f5ed1461069057610245565b80633a065892116101c75780636352211e1161018b5780636352211e146104fe5780636c0360eb1461053b57806370a0823114610566578063718bc4af146105a35780637263cfe2146105cc57610245565b80633a0658921461041b57806342842e0e1461045857806355f804b314610481578063564566a8146104aa5780635a94133c146104d557610245565b80630a2ed1091161020e5780630a2ed1091461035557806318160ddd1461037157806323b872dd1461039c57806329fc6bae146103c55780632d3e474a146103f057610245565b806208ffdd1461024a57806301ffc9a71461028757806306fdde03146102c4578063081812fc146102ef578063095ea7b31461032c575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612ec5565b610947565b60405161027e9190612f0b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f7e565b61095f565b6040516102bb9190612fc6565b60405180910390f35b3480156102d057600080fd5b506102d9610a41565b6040516102e6919061307a565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906130c8565b610ad3565b6040516103239190613104565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061311f565b610b58565b005b61036f600480360381019061036a91906130c8565b610c70565b005b34801561037d57600080fd5b50610386610f0c565b6040516103939190612f0b565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be919061315f565b610f12565b005b3480156103d157600080fd5b506103da610f72565b6040516103e79190612fc6565b60405180910390f35b3480156103fc57600080fd5b50610405610f85565b6040516104129190613104565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612ec5565b610fab565b60405161044f9190612fc6565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061315f565b610fcb565b005b34801561048d57600080fd5b506104a860048036038101906104a391906132e7565b610feb565b005b3480156104b657600080fd5b506104bf611095565b6040516104cc9190612fc6565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906130c8565b6110a8565b005b34801561050a57600080fd5b50610525600480360381019061052091906130c8565b611142565b6040516105329190613104565b60405180910390f35b34801561054757600080fd5b506105506111f4565b60405161055d919061307a565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612ec5565b611282565b60405161059a9190612f0b565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061335c565b61133a565b005b3480156105d857600080fd5b506105f360048036038101906105ee91906133e9565b6113e7565b005b34801561060157600080fd5b5061061c600480360381019061061791906130c8565b61151c565b005b610638600480360381019061063391906130c8565b6115b6565b005b34801561064657600080fd5b5061064f611731565b60405161065c9190612f0b565b60405180910390f35b34801561067157600080fd5b5061067a611737565b6040516106879190613104565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906130c8565b61175d565b005b3480156106c557600080fd5b506106ce6117f7565b6040516106db9190613104565b60405180910390f35b3480156106f057600080fd5b506106f961181d565b6040516107069190612f0b565b60405180910390f35b34801561071b57600080fd5b50610724611823565b604051610731919061307a565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613436565b6118b5565b005b34801561076f57600080fd5b5061078a600480360381019061078591906133e9565b6118cb565b005b34801561079857600080fd5b506107a1611a00565b6040516107ae9190612f0b565b60405180910390f35b3480156107c357600080fd5b506107cc611a06565b005b3480156107da57600080fd5b506107f560048036038101906107f09190613517565b611ab3565b005b34801561080357600080fd5b5061081e600480360381019061081991906130c8565b611b15565b60405161082b919061307a565b60405180910390f35b34801561084057600080fd5b50610849611bbc565b6040516108569190612f0b565b60405180910390f35b34801561086b57600080fd5b50610874611bd3565b6040516108819190612f0b565b60405180910390f35b34801561089657600080fd5b5061089f611bd9565b005b3480156108ad57600080fd5b506108b6611e0d565b005b3480156108c457600080fd5b506108df60048036038101906108da919061359a565b611eba565b6040516108ec9190612fc6565b60405180910390f35b34801561090157600080fd5b5061091c6004803603810190610917919061311f565b611f4e565b005b34801561092a57600080fd5b50610945600480360381019061094091906133e9565b61206b565b005b60106020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3a5750610a39826121b5565b5b9050919050565b606060008054610a5090613609565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c90613609565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b6000610ade8261221f565b610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906136ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6382611142565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb9061373f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf361228b565b73ffffffffffffffffffffffffffffffffffffffff161480610c225750610c2181610c1c61228b565b611eba565b5b610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906137d1565b60405180910390fd5b610c6b8383612293565b505050565b80610c79611bbc565b811115610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061383d565b60405180910390fd5b600d60149054906101000a900460ff16610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d01906138a9565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613915565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de49190613964565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613a06565b60405180910390fd5b600b5482610e339190613a26565b341015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613acc565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec49190613964565b9250508190555060005b82811015610f0757610ef433600860008154610ee990613aec565b91905081905561234c565b8080610eff90613aec565b915050610ece565b505050565b61285d81565b610f23610f1d61228b565b8261251a565b610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613ba7565b60405180910390fd5b610f6d8383836125f8565b505050565b600d60149054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fe683838360405180602001604052806000815250611ab3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613c13565b60405180910390fd5b8060069080519060200190611091929190612db0565b5050565b600760009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613c13565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613ca5565b60405180910390fd5b80915050919050565b6006805461120190613609565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613609565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613d37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613c13565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c13565b60405180910390fd5b60005b82829050811015611517576001600f600085858581811061149e5761149d613d57565b5b90506020020160208101906114b39190612ec5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150f90613aec565b91505061147a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613c13565b60405180910390fd5b80600e8190555050565b806115bf611bbc565b811115611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f89061383d565b60405180910390fd5b600760009054906101000a900460ff16611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613dd2565b60405180910390fd5b6000821180156116615750600a8211155b6116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613e3e565b60405180910390fd5b600a54826116ae9190613a26565b3410156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613acc565b60405180910390fd5b60005b8281101561172c576117193360086000815461170e90613aec565b91905081905561234c565b808061172490613aec565b9150506116f3565b505050565b600e5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613c13565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60606001805461183290613609565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613609565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b5050505050905090565b6118c76118c061228b565b8383612854565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613c13565b60405180910390fd5b60005b828290508110156119fb576000600f600085858581811061198257611981613d57565b5b90506020020160208101906119979190612ec5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119f390613aec565b91505061195e565b505050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613c13565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b611ac4611abe61228b565b8361251a565b611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90613ba7565b60405180910390fd5b611b0f848484846129c1565b50505050565b6060611b208261221f565b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690613ed0565b60405180910390fd5b6000611b69612a1d565b90506000815111611b895760405180602001604052806000815250611bb4565b80611b9384612aaf565b604051602001611ba4929190613f2c565b6040516020818303038152906040525b915050919050565b600060085461285d611bce9190613f50565b905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613c13565b60405180910390fd5b60004790506000670de0b6b3a76400006706f05b59d3b2000083611c8d9190613a26565b611c979190613fb3565b90506000670de0b6b3a76400006706ccd46763f1000084611cb89190613a26565b611cc29190613fb3565b90506000670de0b6b3a7640000662386f26fc1000085611ce29190613a26565b611cec9190613fb3565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611d34573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611d9d573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e06573d6000803e3d6000fd5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613c13565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613c13565b60405180910390fd5b80611fe7611bbc565b811115612029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120209061383d565b60405180910390fd5b60005b82811015612065576120528460086000815461204790613aec565b91905081905561234c565b808061205d90613aec565b91505061202c565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290613c13565b60405180910390fd5b81819050612107611bbc565b811115612149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121409061383d565b60405180910390fd5b60005b838390508110156121af5761219c84848381811061216d5761216c613d57565b5b90506020020160208101906121829190612ec5565b60086000815461219190613aec565b91905081905561234c565b80806121a790613aec565b91505061214c565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661230683611142565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614030565b60405180910390fd5b6123c58161221f565b15612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9061409c565b60405180910390fd5b61241160008383612c10565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124619190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006125258261221f565b612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061412e565b60405180910390fd5b600061256f83611142565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125de57508373ffffffffffffffffffffffffffffffffffffffff166125c684610ad3565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ef57506125ee8185611eba565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661261882611142565b73ffffffffffffffffffffffffffffffffffffffff161461266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906141c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614252565b60405180910390fd5b6126e9838383612c10565b6126f4600082612293565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127449190613f50565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b9190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba906142be565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b49190612fc6565b60405180910390a3505050565b6129cc8484846125f8565b6129d884848484612c15565b612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614350565b60405180910390fd5b50505050565b606060068054612a2c90613609565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5890613609565b8015612aa55780601f10612a7a57610100808354040283529160200191612aa5565b820191906000526020600020905b815481529060010190602001808311612a8857829003601f168201915b5050505050905090565b60606000821415612af7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0b565b600082905060005b60008214612b29578080612b1290613aec565b915050600a82612b229190613fb3565b9150612aff565b60008167ffffffffffffffff811115612b4557612b446131bc565b5b6040519080825280601f01601f191660200182016040528015612b775781602001600182028036833780820191505090505b5090505b60008514612c0457600182612b909190613f50565b9150600a85612b9f9190614370565b6030612bab9190613964565b60f81b818381518110612bc157612bc0613d57565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bfd9190613fb3565b9450612b7b565b8093505050505b919050565b505050565b6000612c368473ffffffffffffffffffffffffffffffffffffffff16612d9d565b15612d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c5f61228b565b8786866040518563ffffffff1660e01b8152600401612c8194939291906143f6565b6020604051808303816000875af1925050508015612cbd57506040513d601f19601f82011682018060405250810190612cba9190614457565b60015b612d40573d8060008114612ced576040519150601f19603f3d011682016040523d82523d6000602084013e612cf2565b606091505b50600081511415612d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2f90614350565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d95565b600190505b949350505050565b600080823b905060008111915050919050565b828054612dbc90613609565b90600052602060002090601f016020900481019282612dde5760008555612e25565b82601f10612df757805160ff1916838001178555612e25565b82800160010185558215612e25579182015b82811115612e24578251825591602001919060010190612e09565b5b509050612e329190612e36565b5090565b5b80821115612e4f576000816000905550600101612e37565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e9282612e67565b9050919050565b612ea281612e87565b8114612ead57600080fd5b50565b600081359050612ebf81612e99565b92915050565b600060208284031215612edb57612eda612e5d565b5b6000612ee984828501612eb0565b91505092915050565b6000819050919050565b612f0581612ef2565b82525050565b6000602082019050612f206000830184612efc565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5b81612f26565b8114612f6657600080fd5b50565b600081359050612f7881612f52565b92915050565b600060208284031215612f9457612f93612e5d565b5b6000612fa284828501612f69565b91505092915050565b60008115159050919050565b612fc081612fab565b82525050565b6000602082019050612fdb6000830184612fb7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561301b578082015181840152602081019050613000565b8381111561302a576000848401525b50505050565b6000601f19601f8301169050919050565b600061304c82612fe1565b6130568185612fec565b9350613066818560208601612ffd565b61306f81613030565b840191505092915050565b600060208201905081810360008301526130948184613041565b905092915050565b6130a581612ef2565b81146130b057600080fd5b50565b6000813590506130c28161309c565b92915050565b6000602082840312156130de576130dd612e5d565b5b60006130ec848285016130b3565b91505092915050565b6130fe81612e87565b82525050565b600060208201905061311960008301846130f5565b92915050565b6000806040838503121561313657613135612e5d565b5b600061314485828601612eb0565b9250506020613155858286016130b3565b9150509250929050565b60008060006060848603121561317857613177612e5d565b5b600061318686828701612eb0565b935050602061319786828701612eb0565b92505060406131a8868287016130b3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f482613030565b810181811067ffffffffffffffff82111715613213576132126131bc565b5b80604052505050565b6000613226612e53565b905061323282826131eb565b919050565b600067ffffffffffffffff821115613252576132516131bc565b5b61325b82613030565b9050602081019050919050565b82818337600083830152505050565b600061328a61328584613237565b61321c565b9050828152602081018484840111156132a6576132a56131b7565b5b6132b1848285613268565b509392505050565b600082601f8301126132ce576132cd6131b2565b5b81356132de848260208601613277565b91505092915050565b6000602082840312156132fd576132fc612e5d565b5b600082013567ffffffffffffffff81111561331b5761331a612e62565b5b613327848285016132b9565b91505092915050565b61333981612fab565b811461334457600080fd5b50565b60008135905061335681613330565b92915050565b60006020828403121561337257613371612e5d565b5b600061338084828501613347565b91505092915050565b600080fd5b600080fd5b60008083601f8401126133a9576133a86131b2565b5b8235905067ffffffffffffffff8111156133c6576133c5613389565b5b6020830191508360208202830111156133e2576133e161338e565b5b9250929050565b60008060208385031215613400576133ff612e5d565b5b600083013567ffffffffffffffff81111561341e5761341d612e62565b5b61342a85828601613393565b92509250509250929050565b6000806040838503121561344d5761344c612e5d565b5b600061345b85828601612eb0565b925050602061346c85828601613347565b9150509250929050565b600067ffffffffffffffff821115613491576134906131bc565b5b61349a82613030565b9050602081019050919050565b60006134ba6134b584613476565b61321c565b9050828152602081018484840111156134d6576134d56131b7565b5b6134e1848285613268565b509392505050565b600082601f8301126134fe576134fd6131b2565b5b813561350e8482602086016134a7565b91505092915050565b6000806000806080858703121561353157613530612e5d565b5b600061353f87828801612eb0565b945050602061355087828801612eb0565b9350506040613561878288016130b3565b925050606085013567ffffffffffffffff81111561358257613581612e62565b5b61358e878288016134e9565b91505092959194509250565b600080604083850312156135b1576135b0612e5d565b5b60006135bf85828601612eb0565b92505060206135d085828601612eb0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b60208210811415613635576136346135da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613697602c83612fec565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613729602183612fec565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137bb603883612fec565b91506137c68261375f565b604082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b6000613827601783612fec565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f416c6c6f776c697374206973206e6f7420616374697665000000000000000000600082015250565b6000613893601783612fec565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b60006138ff601883612fec565b915061390a826138c9565b602082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061396f82612ef2565b915061397a83612ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139af576139ae613935565b5b828201905092915050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b60006139f0601c83612fec565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b6000613a3182612ef2565b9150613a3c83612ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7557613a74613935565b5b828202905092915050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000613ab6601483612fec565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b6000613af782612ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2a57613b29613935565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b91603183612fec565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bfd602083612fec565b9150613c0882613bc7565b602082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c8f602983612fec565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d21602a83612fec565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613dbc601283612fec565b9150613dc782613d86565b602082019050919050565b60006020820190508181036000830152613deb81613daf565b9050919050565b7f4d696e74206d696e20312c206d61782031300000000000000000000000000000600082015250565b6000613e28601283612fec565b9150613e3382613df2565b602082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613eba602f83612fec565b9150613ec582613e5e565b604082019050919050565b60006020820190508181036000830152613ee981613ead565b9050919050565b600081905092915050565b6000613f0682612fe1565b613f108185613ef0565b9350613f20818560208601612ffd565b80840191505092915050565b6000613f388285613efb565b9150613f448284613efb565b91508190509392505050565b6000613f5b82612ef2565b9150613f6683612ef2565b925082821015613f7957613f78613935565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fbe82612ef2565b9150613fc983612ef2565b925082613fd957613fd8613f84565b5b828204905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061401a602083612fec565b915061402582613fe4565b602082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614086601c83612fec565b915061409182614050565b602082019050919050565b600060208201905081810360008301526140b581614079565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614118602c83612fec565b9150614123826140bc565b604082019050919050565b600060208201905081810360008301526141478161410b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141aa602983612fec565b91506141b58261414e565b604082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061423c602483612fec565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a8601983612fec565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061433a603283612fec565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b600061437b82612ef2565b915061438683612ef2565b92508261439657614395613f84565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006143c8826143a1565b6143d281856143ac565b93506143e2818560208601612ffd565b6143eb81613030565b840191505092915050565b600060808201905061440b60008301876130f5565b61441860208301866130f5565b6144256040830185612efc565b818103606083015261443781846143bd565b905095945050505050565b60008151905061445181612f52565b92915050565b60006020828403121561446d5761446c612e5d565b5b600061447b84828501614442565b9150509291505056fea26469706673582212209615854774dafe9b38d83f2247a6cdcfbef34845fcbbfc87a1808cfadbb8a25a64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102455760003560e01c80637a6685f111610139578063b4cdf927116100b6578063dac6db1c1161007a578063dac6db1c1461085f578063e086e5ec1461088a578063e36b0b37146108a1578063e985e9c5146108b8578063efc8e9d6146108f5578063f9529a261461091e57610245565b8063b4cdf9271461078c578063b66a0e5d146107b7578063b88d4fde146107ce578063c87b56dd146107f7578063c8b081251461083457610245565b806391cca3db116100fd57806391cca3db146106b95780639358928b146106e457806395d89b411461070f578063a22cb4651461073a578063a51312c81461076357610245565b80637a6685f1146105f55780637b97008d1461061e5780637f44ab2f1461063a5780638da5cb5b1461066557806391b7f5ed1461069057610245565b80633a065892116101c75780636352211e1161018b5780636352211e146104fe5780636c0360eb1461053b57806370a0823114610566578063718bc4af146105a35780637263cfe2146105cc57610245565b80633a0658921461041b57806342842e0e1461045857806355f804b314610481578063564566a8146104aa5780635a94133c146104d557610245565b80630a2ed1091161020e5780630a2ed1091461035557806318160ddd1461037157806323b872dd1461039c57806329fc6bae146103c55780632d3e474a146103f057610245565b806208ffdd1461024a57806301ffc9a71461028757806306fdde03146102c4578063081812fc146102ef578063095ea7b31461032c575b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612ec5565b610947565b60405161027e9190612f0b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f7e565b61095f565b6040516102bb9190612fc6565b60405180910390f35b3480156102d057600080fd5b506102d9610a41565b6040516102e6919061307a565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906130c8565b610ad3565b6040516103239190613104565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e919061311f565b610b58565b005b61036f600480360381019061036a91906130c8565b610c70565b005b34801561037d57600080fd5b50610386610f0c565b6040516103939190612f0b565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be919061315f565b610f12565b005b3480156103d157600080fd5b506103da610f72565b6040516103e79190612fc6565b60405180910390f35b3480156103fc57600080fd5b50610405610f85565b6040516104129190613104565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612ec5565b610fab565b60405161044f9190612fc6565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061315f565b610fcb565b005b34801561048d57600080fd5b506104a860048036038101906104a391906132e7565b610feb565b005b3480156104b657600080fd5b506104bf611095565b6040516104cc9190612fc6565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906130c8565b6110a8565b005b34801561050a57600080fd5b50610525600480360381019061052091906130c8565b611142565b6040516105329190613104565b60405180910390f35b34801561054757600080fd5b506105506111f4565b60405161055d919061307a565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612ec5565b611282565b60405161059a9190612f0b565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061335c565b61133a565b005b3480156105d857600080fd5b506105f360048036038101906105ee91906133e9565b6113e7565b005b34801561060157600080fd5b5061061c600480360381019061061791906130c8565b61151c565b005b610638600480360381019061063391906130c8565b6115b6565b005b34801561064657600080fd5b5061064f611731565b60405161065c9190612f0b565b60405180910390f35b34801561067157600080fd5b5061067a611737565b6040516106879190613104565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906130c8565b61175d565b005b3480156106c557600080fd5b506106ce6117f7565b6040516106db9190613104565b60405180910390f35b3480156106f057600080fd5b506106f961181d565b6040516107069190612f0b565b60405180910390f35b34801561071b57600080fd5b50610724611823565b604051610731919061307a565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613436565b6118b5565b005b34801561076f57600080fd5b5061078a600480360381019061078591906133e9565b6118cb565b005b34801561079857600080fd5b506107a1611a00565b6040516107ae9190612f0b565b60405180910390f35b3480156107c357600080fd5b506107cc611a06565b005b3480156107da57600080fd5b506107f560048036038101906107f09190613517565b611ab3565b005b34801561080357600080fd5b5061081e600480360381019061081991906130c8565b611b15565b60405161082b919061307a565b60405180910390f35b34801561084057600080fd5b50610849611bbc565b6040516108569190612f0b565b60405180910390f35b34801561086b57600080fd5b50610874611bd3565b6040516108819190612f0b565b60405180910390f35b34801561089657600080fd5b5061089f611bd9565b005b3480156108ad57600080fd5b506108b6611e0d565b005b3480156108c457600080fd5b506108df60048036038101906108da919061359a565b611eba565b6040516108ec9190612fc6565b60405180910390f35b34801561090157600080fd5b5061091c6004803603810190610917919061311f565b611f4e565b005b34801561092a57600080fd5b50610945600480360381019061094091906133e9565b61206b565b005b60106020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3a5750610a39826121b5565b5b9050919050565b606060008054610a5090613609565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c90613609565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b6000610ade8261221f565b610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906136ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6382611142565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb9061373f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf361228b565b73ffffffffffffffffffffffffffffffffffffffff161480610c225750610c2181610c1c61228b565b611eba565b5b610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906137d1565b60405180910390fd5b610c6b8383612293565b505050565b80610c79611bbc565b811115610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061383d565b60405180910390fd5b600d60149054906101000a900460ff16610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d01906138a9565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613915565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de49190613964565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613a06565b60405180910390fd5b600b5482610e339190613a26565b341015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613acc565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec49190613964565b9250508190555060005b82811015610f0757610ef433600860008154610ee990613aec565b91905081905561234c565b8080610eff90613aec565b915050610ece565b505050565b61285d81565b610f23610f1d61228b565b8261251a565b610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613ba7565b60405180910390fd5b610f6d8383836125f8565b505050565b600d60149054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fe683838360405180602001604052806000815250611ab3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290613c13565b60405180910390fd5b8060069080519060200190611091929190612db0565b5050565b600760009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613c13565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613ca5565b60405180910390fd5b80915050919050565b6006805461120190613609565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613609565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90613d37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613c13565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c13565b60405180910390fd5b60005b82829050811015611517576001600f600085858581811061149e5761149d613d57565b5b90506020020160208101906114b39190612ec5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150f90613aec565b91505061147a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613c13565b60405180910390fd5b80600e8190555050565b806115bf611bbc565b811115611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f89061383d565b60405180910390fd5b600760009054906101000a900460ff16611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613dd2565b60405180910390fd5b6000821180156116615750600a8211155b6116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613e3e565b60405180910390fd5b600a54826116ae9190613a26565b3410156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613acc565b60405180910390fd5b60005b8281101561172c576117193360086000815461170e90613aec565b91905081905561234c565b808061172490613aec565b9150506116f3565b505050565b600e5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613c13565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60606001805461183290613609565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613609565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b5050505050905090565b6118c76118c061228b565b8383612854565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613c13565b60405180910390fd5b60005b828290508110156119fb576000600f600085858581811061198257611981613d57565b5b90506020020160208101906119979190612ec5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119f390613aec565b91505061195e565b505050565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90613c13565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b611ac4611abe61228b565b8361251a565b611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90613ba7565b60405180910390fd5b611b0f848484846129c1565b50505050565b6060611b208261221f565b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690613ed0565b60405180910390fd5b6000611b69612a1d565b90506000815111611b895760405180602001604052806000815250611bb4565b80611b9384612aaf565b604051602001611ba4929190613f2c565b6040516020818303038152906040525b915050919050565b600060085461285d611bce9190613f50565b905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613c13565b60405180910390fd5b60004790506000670de0b6b3a76400006706f05b59d3b2000083611c8d9190613a26565b611c979190613fb3565b90506000670de0b6b3a76400006706ccd46763f1000084611cb89190613a26565b611cc29190613fb3565b90506000670de0b6b3a7640000662386f26fc1000085611ce29190613a26565b611cec9190613fb3565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611d34573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611d9d573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e06573d6000803e3d6000fd5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613c13565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590613c13565b60405180910390fd5b80611fe7611bbc565b811115612029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120209061383d565b60405180910390fd5b60005b82811015612065576120528460086000815461204790613aec565b91905081905561234c565b808061205d90613aec565b91505061202c565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290613c13565b60405180910390fd5b81819050612107611bbc565b811115612149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121409061383d565b60405180910390fd5b60005b838390508110156121af5761219c84848381811061216d5761216c613d57565b5b90506020020160208101906121829190612ec5565b60086000815461219190613aec565b91905081905561234c565b80806121a790613aec565b91505061214c565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661230683611142565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614030565b60405180910390fd5b6123c58161221f565b15612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc9061409c565b60405180910390fd5b61241160008383612c10565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124619190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006125258261221f565b612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061412e565b60405180910390fd5b600061256f83611142565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125de57508373ffffffffffffffffffffffffffffffffffffffff166125c684610ad3565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ef57506125ee8185611eba565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661261882611142565b73ffffffffffffffffffffffffffffffffffffffff161461266e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612665906141c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614252565b60405180910390fd5b6126e9838383612c10565b6126f4600082612293565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127449190613f50565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461279b9190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba906142be565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b49190612fc6565b60405180910390a3505050565b6129cc8484846125f8565b6129d884848484612c15565b612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614350565b60405180910390fd5b50505050565b606060068054612a2c90613609565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5890613609565b8015612aa55780601f10612a7a57610100808354040283529160200191612aa5565b820191906000526020600020905b815481529060010190602001808311612a8857829003601f168201915b5050505050905090565b60606000821415612af7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0b565b600082905060005b60008214612b29578080612b1290613aec565b915050600a82612b229190613fb3565b9150612aff565b60008167ffffffffffffffff811115612b4557612b446131bc565b5b6040519080825280601f01601f191660200182016040528015612b775781602001600182028036833780820191505090505b5090505b60008514612c0457600182612b909190613f50565b9150600a85612b9f9190614370565b6030612bab9190613964565b60f81b818381518110612bc157612bc0613d57565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bfd9190613fb3565b9450612b7b565b8093505050505b919050565b505050565b6000612c368473ffffffffffffffffffffffffffffffffffffffff16612d9d565b15612d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c5f61228b565b8786866040518563ffffffff1660e01b8152600401612c8194939291906143f6565b6020604051808303816000875af1925050508015612cbd57506040513d601f19601f82011682018060405250810190612cba9190614457565b60015b612d40573d8060008114612ced576040519150601f19603f3d011682016040523d82523d6000602084013e612cf2565b606091505b50600081511415612d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2f90614350565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d95565b600190505b949350505050565b600080823b905060008111915050919050565b828054612dbc90613609565b90600052602060002090601f016020900481019282612dde5760008555612e25565b82601f10612df757805160ff1916838001178555612e25565b82800160010185558215612e25579182015b82811115612e24578251825591602001919060010190612e09565b5b509050612e329190612e36565b5090565b5b80821115612e4f576000816000905550600101612e37565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e9282612e67565b9050919050565b612ea281612e87565b8114612ead57600080fd5b50565b600081359050612ebf81612e99565b92915050565b600060208284031215612edb57612eda612e5d565b5b6000612ee984828501612eb0565b91505092915050565b6000819050919050565b612f0581612ef2565b82525050565b6000602082019050612f206000830184612efc565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5b81612f26565b8114612f6657600080fd5b50565b600081359050612f7881612f52565b92915050565b600060208284031215612f9457612f93612e5d565b5b6000612fa284828501612f69565b91505092915050565b60008115159050919050565b612fc081612fab565b82525050565b6000602082019050612fdb6000830184612fb7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561301b578082015181840152602081019050613000565b8381111561302a576000848401525b50505050565b6000601f19601f8301169050919050565b600061304c82612fe1565b6130568185612fec565b9350613066818560208601612ffd565b61306f81613030565b840191505092915050565b600060208201905081810360008301526130948184613041565b905092915050565b6130a581612ef2565b81146130b057600080fd5b50565b6000813590506130c28161309c565b92915050565b6000602082840312156130de576130dd612e5d565b5b60006130ec848285016130b3565b91505092915050565b6130fe81612e87565b82525050565b600060208201905061311960008301846130f5565b92915050565b6000806040838503121561313657613135612e5d565b5b600061314485828601612eb0565b9250506020613155858286016130b3565b9150509250929050565b60008060006060848603121561317857613177612e5d565b5b600061318686828701612eb0565b935050602061319786828701612eb0565b92505060406131a8868287016130b3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f482613030565b810181811067ffffffffffffffff82111715613213576132126131bc565b5b80604052505050565b6000613226612e53565b905061323282826131eb565b919050565b600067ffffffffffffffff821115613252576132516131bc565b5b61325b82613030565b9050602081019050919050565b82818337600083830152505050565b600061328a61328584613237565b61321c565b9050828152602081018484840111156132a6576132a56131b7565b5b6132b1848285613268565b509392505050565b600082601f8301126132ce576132cd6131b2565b5b81356132de848260208601613277565b91505092915050565b6000602082840312156132fd576132fc612e5d565b5b600082013567ffffffffffffffff81111561331b5761331a612e62565b5b613327848285016132b9565b91505092915050565b61333981612fab565b811461334457600080fd5b50565b60008135905061335681613330565b92915050565b60006020828403121561337257613371612e5d565b5b600061338084828501613347565b91505092915050565b600080fd5b600080fd5b60008083601f8401126133a9576133a86131b2565b5b8235905067ffffffffffffffff8111156133c6576133c5613389565b5b6020830191508360208202830111156133e2576133e161338e565b5b9250929050565b60008060208385031215613400576133ff612e5d565b5b600083013567ffffffffffffffff81111561341e5761341d612e62565b5b61342a85828601613393565b92509250509250929050565b6000806040838503121561344d5761344c612e5d565b5b600061345b85828601612eb0565b925050602061346c85828601613347565b9150509250929050565b600067ffffffffffffffff821115613491576134906131bc565b5b61349a82613030565b9050602081019050919050565b60006134ba6134b584613476565b61321c565b9050828152602081018484840111156134d6576134d56131b7565b5b6134e1848285613268565b509392505050565b600082601f8301126134fe576134fd6131b2565b5b813561350e8482602086016134a7565b91505092915050565b6000806000806080858703121561353157613530612e5d565b5b600061353f87828801612eb0565b945050602061355087828801612eb0565b9350506040613561878288016130b3565b925050606085013567ffffffffffffffff81111561358257613581612e62565b5b61358e878288016134e9565b91505092959194509250565b600080604083850312156135b1576135b0612e5d565b5b60006135bf85828601612eb0565b92505060206135d085828601612eb0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b60208210811415613635576136346135da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613697602c83612fec565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613729602183612fec565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137bb603883612fec565b91506137c68261375f565b604082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b6000613827601783612fec565b9150613832826137f1565b602082019050919050565b600060208201905081810360008301526138568161381a565b9050919050565b7f416c6c6f776c697374206973206e6f7420616374697665000000000000000000600082015250565b6000613893601783612fec565b915061389e8261385d565b602082019050919050565b600060208201905081810360008301526138c281613886565b9050919050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b60006138ff601883612fec565b915061390a826138c9565b602082019050919050565b6000602082019050818103600083015261392e816138f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061396f82612ef2565b915061397a83612ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139af576139ae613935565b5b828201905092915050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b60006139f0601c83612fec565b91506139fb826139ba565b602082019050919050565b60006020820190508181036000830152613a1f816139e3565b9050919050565b6000613a3182612ef2565b9150613a3c83612ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7557613a74613935565b5b828202905092915050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000613ab6601483612fec565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b6000613af782612ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2a57613b29613935565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b91603183612fec565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bfd602083612fec565b9150613c0882613bc7565b602082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c8f602983612fec565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d21602a83612fec565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613dbc601283612fec565b9150613dc782613d86565b602082019050919050565b60006020820190508181036000830152613deb81613daf565b9050919050565b7f4d696e74206d696e20312c206d61782031300000000000000000000000000000600082015250565b6000613e28601283612fec565b9150613e3382613df2565b602082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613eba602f83612fec565b9150613ec582613e5e565b604082019050919050565b60006020820190508181036000830152613ee981613ead565b9050919050565b600081905092915050565b6000613f0682612fe1565b613f108185613ef0565b9350613f20818560208601612ffd565b80840191505092915050565b6000613f388285613efb565b9150613f448284613efb565b91508190509392505050565b6000613f5b82612ef2565b9150613f6683612ef2565b925082821015613f7957613f78613935565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fbe82612ef2565b9150613fc983612ef2565b925082613fd957613fd8613f84565b5b828204905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061401a602083612fec565b915061402582613fe4565b602082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614086601c83612fec565b915061409182614050565b602082019050919050565b600060208201905081810360008301526140b581614079565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614118602c83612fec565b9150614123826140bc565b604082019050919050565b600060208201905081810360008301526141478161410b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141aa602983612fec565b91506141b58261414e565b604082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061423c602483612fec565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a8601983612fec565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061433a603283612fec565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b600061437b82612ef2565b915061438683612ef2565b92508261439657614395613f84565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006143c8826143a1565b6143d281856143ac565b93506143e2818560208601612ffd565b6143eb81613030565b840191505092915050565b600060808201905061440b60008301876130f5565b61441860208301866130f5565b6144256040830185612efc565b818103606083015261443781846143bd565b905095945050505050565b60008151905061445181612f52565b92915050565b60006020828403121561446d5761446c612e5d565b5b600061447b84828501614442565b9150509291505056fea26469706673582212209615854774dafe9b38d83f2247a6cdcfbef34845fcbbfc87a1808cfadbb8a25a64736f6c634300080a0033
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.