Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
41 H00ts
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 H00tsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
H00ts
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.17; contract H00ts is ERC721A, Ownable { using Strings for uint256; uint256 public cost = 0.001 ether; uint256 public maxSupply = 2000; uint256 public freeSupply = 420; uint256 public freePerWallet = 1; uint256 public maxMint = 5; uint256 public requiredBalance = 0.001 ether; bool public status = false; string private baseTokenURI; mapping(address => uint256) public mintedByAddress; constructor() ERC721A("H00ts", "H00ts") { } // MINTING function mint(uint256 _count) external payable { uint256 _cost = getCost(msg.sender, _count); require(msg.sender == tx.origin, "No contracts!"); require(status, "Not yet"); require(totalSupply() + _count <= freeSupply, "No more free supply"); require(totalSupply() + _count <= maxSupply, "Would excced supply"); require(_count <= maxMint, "Too many"); require(msg.value == _cost, "Wrong amount"); mintedByAddress[msg.sender] += _count; _safeMint(msg.sender, _count); } function airdrop( address[] calldata _recipients, uint256[] calldata _mintAmounts ) external onlyOwner { for (uint256 i = 0; i < _recipients.length; i++) { require(totalSupply() + _mintAmounts[i] <= maxSupply, "Too many"); _safeMint(_recipients[i], _mintAmounts[i]); } } // SETTERS function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setFreePerWallet(uint256 _newFreePerWallet) public onlyOwner { freePerWallet = _newFreePerWallet; } function setfreeSupply(uint256 _newfreeSupply) public onlyOwner { freeSupply = _newfreeSupply; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } // modify qualifying collection function modifyWL(uint256 _requiredBalance) external onlyOwner { requiredBalance = _requiredBalance; } // GETTERS function getCost( address _address, uint256 _count ) public view returns (uint256) { uint256 _mintedByAddress = mintedByAddress[_address]; bool _canClaim = canClaim(_address); if (_canClaim) { if (_count <= freePerWallet - _mintedByAddress) { return 0; } else { return cost * (_count - (freePerWallet - _mintedByAddress)); } } else { return cost * _count; } } function canClaim(address _wallet) public view returns (bool) { if ( (mintedByAddress[_wallet] < freePerWallet) && (_wallet.balance >= requiredBalance) ) { return true; } else { return false; } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } // ADMIN //Open/close sale function flipSaleStatus() public onlyOwner { status = !status; } //Withdraw funds pro rata function withdrawAll() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requiredBalance","type":"uint256"}],"name":"modifyWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requiredBalance","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreePerWallet","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreeSupply","type":"uint256"}],"name":"setfreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c680006009556107d0600a556101a4600b556001600c556005600d5566038d7ea4c68000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005857600080fd5b506040518060400160405280600581526020017f48303074730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f48303074730000000000000000000000000000000000000000000000000000008152508160029081620000d6919062000478565b508060039081620000e8919062000478565b50620000f96200012760201b60201c565b600081905550505062000121620001156200013060201b60201c565b6200013860201b60201c565b6200055f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200028057607f821691505b60208210810362000296576200029562000238565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002c1565b6200030c8683620002c1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000359620003536200034d8462000324565b6200032e565b62000324565b9050919050565b6000819050919050565b620003758362000338565b6200038d620003848262000360565b848454620002ce565b825550505050565b600090565b620003a462000395565b620003b18184846200036a565b505050565b5b81811015620003d957620003cd6000826200039a565b600181019050620003b7565b5050565b601f8211156200042857620003f2816200029c565b620003fd84620002b1565b810160208510156200040d578190505b620004256200041c85620002b1565b830182620003b6565b50505b505050565b600082821c905092915050565b60006200044d600019846008026200042d565b1980831691505092915050565b60006200046883836200043a565b9150826002028217905092915050565b6200048382620001fe565b67ffffffffffffffff8111156200049f576200049e62000209565b5b620004ab825462000267565b620004b8828285620003dd565b600060209050601f831160018114620004f05760008415620004db578287015190505b620004e785826200045a565b86555062000557565b601f19841662000500866200029c565b60005b828110156200052a5784890151825560018201915060208501945060208101905062000503565b868310156200054a578489015162000546601f8916826200043a565b8355505b6001600288020188555050505b505050505050565b613f31806200056f6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461076d578063ce03ec93146107aa578063d5abeb01146107c1578063e985e9c5146107ec578063f2fde38b146108295761020f565b8063a0712d68146106c2578063a22cb465146106de578063b88d4fde14610707578063bf3506c1146107305761020f565b8063715018a6116100e7578063715018a6146106205780637501f74114610637578063853828b6146106625780638da5cb5b1461066c57806395d89b41146106975761020f565b80636352211e1461055457806367243482146105915780636c413938146105ba57806370a08231146105e35761020f565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a1461047157806352ea4f771461049a57806353630745146104d757806355f804b3146105005780635b74efcf146105295761020f565b806323b872dd146103b757806324a6ab0c146103e05780633ca63f2c1461040b57806342842e0e146104485761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806313faede61461030d57806318160ddd146103385780631a86854f14610363578063200d2ed21461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c57806308560ace146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cd5565b610852565b6040516102489190612d1d565b60405180910390f35b34801561025d57600080fd5b50610266610934565b6040516102739190612dc8565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e20565b6109c6565b6040516102b09190612e8e565b60405180910390f35b3480156102c557600080fd5b506102ce610a42565b6040516102db9190612eb8565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612eff565b610a48565b005b34801561031957600080fd5b50610322610b52565b60405161032f9190612eb8565b60405180910390f35b34801561034457600080fd5b5061034d610b58565b60405161035a9190612eb8565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612e20565b610b6f565b005b34801561039857600080fd5b506103a1610bf5565b6040516103ae9190612d1d565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612f3f565b610c08565b005b3480156103ec57600080fd5b506103f5610c18565b6040516104029190612eb8565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612f92565b610c1e565b60405161043f9190612eb8565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612f3f565b610c36565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e20565b610c56565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612eff565b610cdc565b6040516104ce9190612eb8565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612e20565b610d9b565b005b34801561050c57600080fd5b50610527600480360381019061052291906130f4565b610e21565b005b34801561053557600080fd5b5061053e610eb0565b60405161054b9190612eb8565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612e20565b610eb6565b6040516105889190612e8e565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906131f3565b610ecc565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612e20565b61102a565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612f92565b6110b0565b6040516106179190612eb8565b60405180910390f35b34801561062c57600080fd5b5061063561117f565b005b34801561064357600080fd5b5061064c611207565b6040516106599190612eb8565b60405180910390f35b61066a61120d565b005b34801561067857600080fd5b50610681611302565b60405161068e9190612e8e565b60405180910390f35b3480156106a357600080fd5b506106ac61132c565b6040516106b99190612dc8565b60405180910390f35b6106dc60048036038101906106d79190612e20565b6113be565b005b3480156106ea57600080fd5b50610705600480360381019061070091906132a0565b611622565b005b34801561071357600080fd5b5061072e60048036038101906107299190613381565b611799565b005b34801561073c57600080fd5b5061075760048036038101906107529190612f92565b611815565b6040516107649190612d1d565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e20565b611898565b6040516107a19190612dc8565b60405180910390f35b3480156107b657600080fd5b506107bf61191a565b005b3480156107cd57600080fd5b506107d66119c2565b6040516107e39190612eb8565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190613404565b6119c8565b6040516108209190612d1d565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612f92565b611a5c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092d575061092c82611b53565b5b9050919050565b60606002805461094390613473565b80601f016020809104026020016040519081016040528092919081815260200182805461096f90613473565b80156109bc5780601f10610991576101008083540402835291602001916109bc565b820191906000526020600020905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b60006109d182611bbd565b610a07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b6000610a5382610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad9611c0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0b5750610b0981610b04611c0b565b6119c8565b155b15610b42576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d838383611c13565b505050565b60095481565b6000610b62611cc5565b6001546000540303905090565b610b77611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610b95611302565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906134f0565b60405180910390fd5b80600b8190555050565b600f60009054906101000a900460ff1681565b610c13838383611cce565b505050565b600b5481565b60116020528060005260406000206000915090505481565b610c5183838360405180602001604052806000815250611799565b505050565b610c5e611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610c7c611302565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906134f0565b60405180910390fd5b8060098190555050565b600080601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d2c85611815565b90508015610d825781600c54610d42919061353f565b8411610d5357600092505050610d95565b81600c54610d61919061353f565b84610d6c919061353f565b600954610d799190613573565b92505050610d95565b83600954610d909190613573565b925050505b92915050565b610da3611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906134f0565b60405180910390fd5b80600c8190555050565b610e29611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610e47611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906134f0565b60405180910390fd5b8060109081610eac9190613761565b5050565b600c5481565b6000610ec182612182565b600001519050919050565b610ed4611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610ef2611302565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906134f0565b60405180910390fd5b60005b8484905081101561102357600a54838383818110610f6c57610f6b613833565b5b90506020020135610f7b610b58565b610f859190613862565b1115610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906138e2565b60405180910390fd5b611010858583818110610fdc57610fdb613833565b5b9050602002016020810190610ff19190612f92565b84848481811061100457611003613833565b5b90506020020135612411565b808061101b90613902565b915050610f4b565b5050505050565b611032611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611050611302565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906134f0565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611187611c0b565b73ffffffffffffffffffffffffffffffffffffffff166111a5611302565b73ffffffffffffffffffffffffffffffffffffffff16146111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f2906134f0565b60405180910390fd5b611205600061242f565b565b600d5481565b611215611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611233611302565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906134f0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112af9061397b565b60006040518083038185875af1925050503d80600081146112ec576040519150601f19603f3d011682016040523d82523d6000602084013e6112f1565b606091505b50509050806112ff57600080fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133b90613473565b80601f016020809104026020016040519081016040528092919081815260200182805461136790613473565b80156113b45780601f10611389576101008083540402835291602001916113b4565b820191906000526020600020905b81548152906001019060200180831161139757829003601f168201915b5050505050905090565b60006113ca3383610cdc565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906139dc565b60405180910390fd5b600f60009054906101000a900460ff16611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a48565b60405180910390fd5b600b5482611495610b58565b61149f9190613862565b11156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613ab4565b60405180910390fd5b600a54826114ec610b58565b6114f69190613862565b1115611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613b20565b60405180910390fd5b600d5482111561157c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611573906138e2565b60405180910390fd5b8034146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613b8c565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160d9190613862565b9250508190555061161e3383612411565b5050565b61162a611c0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169b611c0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611748611c0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178d9190612d1d565b60405180910390a35050565b6117a4848484611cce565b6117c38373ffffffffffffffffffffffffffffffffffffffff166124f5565b80156117d857506117d684848484612518565b155b1561180f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156118805750600e548273ffffffffffffffffffffffffffffffffffffffff163110155b1561188e5760019050611893565b600090505b919050565b60606118a382611bbd565b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613c1e565b60405180910390fd5b6118ea612668565b6118f3836126fa565b604051602001611904929190613cc6565b6040516020818303038152906040529050919050565b611922611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611940611302565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d906134f0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a64611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611a82611302565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613d67565b60405180910390fd5b611b508161242f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bc8611cc5565b11158015611bd7575060005482105b8015611c04575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611cd982612182565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d65611c0b565b73ffffffffffffffffffffffffffffffffffffffff161480611d945750611d9385611d8e611c0b565b6119c8565b5b80611dd95750611da2611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611dc1846109c6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e85858585600161285a565b611e9160008487611c13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361211057600054821461210f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461217b8585856001612860565b5050505050565b61218a612c26565b600082905080612198611cc5565b111580156121a7575060005481105b156123da576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123d857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122bc57809250505061240c565b5b6001156123d757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d257809250505061240c565b6122bd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61242b828260405180602001604052806000815250612866565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253e611c0b565b8786866040518563ffffffff1660e01b81526004016125609493929190613ddc565b6020604051808303816000875af192505050801561259c57506040513d601f19601f820116820180604052508101906125999190613e3d565b60015b612615573d80600081146125cc576040519150601f19603f3d011682016040523d82523d6000602084013e6125d1565b606091505b50600081510361260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461267790613473565b80601f01602080910402602001604051908101604052809291908181526020018280546126a390613473565b80156126f05780601f106126c5576101008083540402835291602001916126f0565b820191906000526020600020905b8154815290600101906020018083116126d357829003601f168201915b5050505050905090565b606060008203612741576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612855565b600082905060005b6000821461277357808061275c90613902565b915050600a8261276c9190613e99565b9150612749565b60008167ffffffffffffffff81111561278f5761278e612fc9565b5b6040519080825280601f01601f1916602001820160405280156127c15781602001600182028036833780820191505090505b5090505b6000851461284e576001826127da919061353f565b9150600a856127e99190613eca565b60306127f59190613862565b60f81b81838151811061280b5761280a613833565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128479190613e99565b94506127c5565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361290c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612919600085838661285a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612ada8673ffffffffffffffffffffffffffffffffffffffff166124f5565b15612b9f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4f6000878480600101955087612518565b612b85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ae0578260005414612b9a57600080fd5b612c0a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612ba0575b816000819055505050612c206000858386612860565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cb281612c7d565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b600060208284031215612ceb57612cea612c73565b5b6000612cf984828501612cc0565b91505092915050565b60008115159050919050565b612d1781612d02565b82525050565b6000602082019050612d326000830184612d0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d72578082015181840152602081019050612d57565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9a82612d38565b612da48185612d43565b9350612db4818560208601612d54565b612dbd81612d7e565b840191505092915050565b60006020820190508181036000830152612de28184612d8f565b905092915050565b6000819050919050565b612dfd81612dea565b8114612e0857600080fd5b50565b600081359050612e1a81612df4565b92915050565b600060208284031215612e3657612e35612c73565b5b6000612e4484828501612e0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7882612e4d565b9050919050565b612e8881612e6d565b82525050565b6000602082019050612ea36000830184612e7f565b92915050565b612eb281612dea565b82525050565b6000602082019050612ecd6000830184612ea9565b92915050565b612edc81612e6d565b8114612ee757600080fd5b50565b600081359050612ef981612ed3565b92915050565b60008060408385031215612f1657612f15612c73565b5b6000612f2485828601612eea565b9250506020612f3585828601612e0b565b9150509250929050565b600080600060608486031215612f5857612f57612c73565b5b6000612f6686828701612eea565b9350506020612f7786828701612eea565b9250506040612f8886828701612e0b565b9150509250925092565b600060208284031215612fa857612fa7612c73565b5b6000612fb684828501612eea565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61300182612d7e565b810181811067ffffffffffffffff821117156130205761301f612fc9565b5b80604052505050565b6000613033612c69565b905061303f8282612ff8565b919050565b600067ffffffffffffffff82111561305f5761305e612fc9565b5b61306882612d7e565b9050602081019050919050565b82818337600083830152505050565b600061309761309284613044565b613029565b9050828152602081018484840111156130b3576130b2612fc4565b5b6130be848285613075565b509392505050565b600082601f8301126130db576130da612fbf565b5b81356130eb848260208601613084565b91505092915050565b60006020828403121561310a57613109612c73565b5b600082013567ffffffffffffffff81111561312857613127612c78565b5b613134848285016130c6565b91505092915050565b600080fd5b600080fd5b60008083601f84011261315d5761315c612fbf565b5b8235905067ffffffffffffffff81111561317a5761317961313d565b5b60208301915083602082028301111561319657613195613142565b5b9250929050565b60008083601f8401126131b3576131b2612fbf565b5b8235905067ffffffffffffffff8111156131d0576131cf61313d565b5b6020830191508360208202830111156131ec576131eb613142565b5b9250929050565b6000806000806040858703121561320d5761320c612c73565b5b600085013567ffffffffffffffff81111561322b5761322a612c78565b5b61323787828801613147565b9450945050602085013567ffffffffffffffff81111561325a57613259612c78565b5b6132668782880161319d565b925092505092959194509250565b61327d81612d02565b811461328857600080fd5b50565b60008135905061329a81613274565b92915050565b600080604083850312156132b7576132b6612c73565b5b60006132c585828601612eea565b92505060206132d68582860161328b565b9150509250929050565b600067ffffffffffffffff8211156132fb576132fa612fc9565b5b61330482612d7e565b9050602081019050919050565b600061332461331f846132e0565b613029565b9050828152602081018484840111156133405761333f612fc4565b5b61334b848285613075565b509392505050565b600082601f83011261336857613367612fbf565b5b8135613378848260208601613311565b91505092915050565b6000806000806080858703121561339b5761339a612c73565b5b60006133a987828801612eea565b94505060206133ba87828801612eea565b93505060406133cb87828801612e0b565b925050606085013567ffffffffffffffff8111156133ec576133eb612c78565b5b6133f887828801613353565b91505092959194509250565b6000806040838503121561341b5761341a612c73565b5b600061342985828601612eea565b925050602061343a85828601612eea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348b57607f821691505b60208210810361349e5761349d613444565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134da602083612d43565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354a82612dea565b915061355583612dea565b925082820390508181111561356d5761356c613510565b5b92915050565b600061357e82612dea565b915061358983612dea565b925082820261359781612dea565b915082820484148315176135ae576135ad613510565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135da565b61362186836135da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061365e61365961365484612dea565b613639565b612dea565b9050919050565b6000819050919050565b61367883613643565b61368c61368482613665565b8484546135e7565b825550505050565b600090565b6136a1613694565b6136ac81848461366f565b505050565b5b818110156136d0576136c5600082613699565b6001810190506136b2565b5050565b601f821115613715576136e6816135b5565b6136ef846135ca565b810160208510156136fe578190505b61371261370a856135ca565b8301826136b1565b50505b505050565b600082821c905092915050565b60006137386000198460080261371a565b1980831691505092915050565b60006137518383613727565b9150826002028217905092915050565b61376a82612d38565b67ffffffffffffffff81111561378357613782612fc9565b5b61378d8254613473565b6137988282856136d4565b600060209050601f8311600181146137cb57600084156137b9578287015190505b6137c38582613745565b86555061382b565b601f1984166137d9866135b5565b60005b82811015613801578489015182556001820191506020850194506020810190506137dc565b8683101561381e578489015161381a601f891682613727565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061386d82612dea565b915061387883612dea565b92508282019050808211156138905761388f613510565b5b92915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006138cc600883612d43565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b600061390d82612dea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361393f5761393e613510565b5b600182019050919050565b600081905092915050565b50565b600061396560008361394a565b915061397082613955565b600082019050919050565b600061398682613958565b9150819050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b60006139c6600d83612d43565b91506139d182613990565b602082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b6000613a32600783612d43565b9150613a3d826139fc565b602082019050919050565b60006020820190508181036000830152613a6181613a25565b9050919050565b7f4e6f206d6f7265206672656520737570706c7900000000000000000000000000600082015250565b6000613a9e601383612d43565b9150613aa982613a68565b602082019050919050565b60006020820190508181036000830152613acd81613a91565b9050919050565b7f576f756c642065786363656420737570706c7900000000000000000000000000600082015250565b6000613b0a601383612d43565b9150613b1582613ad4565b602082019050919050565b60006020820190508181036000830152613b3981613afd565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613b76600c83612d43565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c08602f83612d43565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b600081905092915050565b6000613c5482612d38565b613c5e8185613c3e565b9350613c6e818560208601612d54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cb0600583613c3e565b9150613cbb82613c7a565b600582019050919050565b6000613cd28285613c49565b9150613cde8284613c49565b9150613ce982613ca3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d51602683612d43565b9150613d5c82613cf5565b604082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dae82613d87565b613db88185613d92565b9350613dc8818560208601612d54565b613dd181612d7e565b840191505092915050565b6000608082019050613df16000830187612e7f565b613dfe6020830186612e7f565b613e0b6040830185612ea9565b8181036060830152613e1d8184613da3565b905095945050505050565b600081519050613e3781612ca9565b92915050565b600060208284031215613e5357613e52612c73565b5b6000613e6184828501613e28565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ea482612dea565b9150613eaf83612dea565b925082613ebf57613ebe613e6a565b5b828204905092915050565b6000613ed582612dea565b9150613ee083612dea565b925082613ef057613eef613e6a565b5b82820690509291505056fea2646970667358221220e74cfcb285ce3efc699ff464cc98f566c7e98476799643cd12bf6faa2686d5ad64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461076d578063ce03ec93146107aa578063d5abeb01146107c1578063e985e9c5146107ec578063f2fde38b146108295761020f565b8063a0712d68146106c2578063a22cb465146106de578063b88d4fde14610707578063bf3506c1146107305761020f565b8063715018a6116100e7578063715018a6146106205780637501f74114610637578063853828b6146106625780638da5cb5b1461066c57806395d89b41146106975761020f565b80636352211e1461055457806367243482146105915780636c413938146105ba57806370a08231146105e35761020f565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a1461047157806352ea4f771461049a57806353630745146104d757806355f804b3146105005780635b74efcf146105295761020f565b806323b872dd146103b757806324a6ab0c146103e05780633ca63f2c1461040b57806342842e0e146104485761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806313faede61461030d57806318160ddd146103385780631a86854f14610363578063200d2ed21461038c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c57806308560ace146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cd5565b610852565b6040516102489190612d1d565b60405180910390f35b34801561025d57600080fd5b50610266610934565b6040516102739190612dc8565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e20565b6109c6565b6040516102b09190612e8e565b60405180910390f35b3480156102c557600080fd5b506102ce610a42565b6040516102db9190612eb8565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612eff565b610a48565b005b34801561031957600080fd5b50610322610b52565b60405161032f9190612eb8565b60405180910390f35b34801561034457600080fd5b5061034d610b58565b60405161035a9190612eb8565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612e20565b610b6f565b005b34801561039857600080fd5b506103a1610bf5565b6040516103ae9190612d1d565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612f3f565b610c08565b005b3480156103ec57600080fd5b506103f5610c18565b6040516104029190612eb8565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612f92565b610c1e565b60405161043f9190612eb8565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612f3f565b610c36565b005b34801561047d57600080fd5b5061049860048036038101906104939190612e20565b610c56565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612eff565b610cdc565b6040516104ce9190612eb8565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612e20565b610d9b565b005b34801561050c57600080fd5b50610527600480360381019061052291906130f4565b610e21565b005b34801561053557600080fd5b5061053e610eb0565b60405161054b9190612eb8565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612e20565b610eb6565b6040516105889190612e8e565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906131f3565b610ecc565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612e20565b61102a565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612f92565b6110b0565b6040516106179190612eb8565b60405180910390f35b34801561062c57600080fd5b5061063561117f565b005b34801561064357600080fd5b5061064c611207565b6040516106599190612eb8565b60405180910390f35b61066a61120d565b005b34801561067857600080fd5b50610681611302565b60405161068e9190612e8e565b60405180910390f35b3480156106a357600080fd5b506106ac61132c565b6040516106b99190612dc8565b60405180910390f35b6106dc60048036038101906106d79190612e20565b6113be565b005b3480156106ea57600080fd5b50610705600480360381019061070091906132a0565b611622565b005b34801561071357600080fd5b5061072e60048036038101906107299190613381565b611799565b005b34801561073c57600080fd5b5061075760048036038101906107529190612f92565b611815565b6040516107649190612d1d565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e20565b611898565b6040516107a19190612dc8565b60405180910390f35b3480156107b657600080fd5b506107bf61191a565b005b3480156107cd57600080fd5b506107d66119c2565b6040516107e39190612eb8565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190613404565b6119c8565b6040516108209190612d1d565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612f92565b611a5c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092d575061092c82611b53565b5b9050919050565b60606002805461094390613473565b80601f016020809104026020016040519081016040528092919081815260200182805461096f90613473565b80156109bc5780601f10610991576101008083540402835291602001916109bc565b820191906000526020600020905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b60006109d182611bbd565b610a07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b6000610a5382610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad9611c0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0b5750610b0981610b04611c0b565b6119c8565b155b15610b42576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d838383611c13565b505050565b60095481565b6000610b62611cc5565b6001546000540303905090565b610b77611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610b95611302565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906134f0565b60405180910390fd5b80600b8190555050565b600f60009054906101000a900460ff1681565b610c13838383611cce565b505050565b600b5481565b60116020528060005260406000206000915090505481565b610c5183838360405180602001604052806000815250611799565b505050565b610c5e611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610c7c611302565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906134f0565b60405180910390fd5b8060098190555050565b600080601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d2c85611815565b90508015610d825781600c54610d42919061353f565b8411610d5357600092505050610d95565b81600c54610d61919061353f565b84610d6c919061353f565b600954610d799190613573565b92505050610d95565b83600954610d909190613573565b925050505b92915050565b610da3611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906134f0565b60405180910390fd5b80600c8190555050565b610e29611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610e47611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e94906134f0565b60405180910390fd5b8060109081610eac9190613761565b5050565b600c5481565b6000610ec182612182565b600001519050919050565b610ed4611c0b565b73ffffffffffffffffffffffffffffffffffffffff16610ef2611302565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906134f0565b60405180910390fd5b60005b8484905081101561102357600a54838383818110610f6c57610f6b613833565b5b90506020020135610f7b610b58565b610f859190613862565b1115610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd906138e2565b60405180910390fd5b611010858583818110610fdc57610fdb613833565b5b9050602002016020810190610ff19190612f92565b84848481811061100457611003613833565b5b90506020020135612411565b808061101b90613902565b915050610f4b565b5050505050565b611032611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611050611302565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d906134f0565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611187611c0b565b73ffffffffffffffffffffffffffffffffffffffff166111a5611302565b73ffffffffffffffffffffffffffffffffffffffff16146111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f2906134f0565b60405180910390fd5b611205600061242f565b565b600d5481565b611215611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611233611302565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906134f0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112af9061397b565b60006040518083038185875af1925050503d80600081146112ec576040519150601f19603f3d011682016040523d82523d6000602084013e6112f1565b606091505b50509050806112ff57600080fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133b90613473565b80601f016020809104026020016040519081016040528092919081815260200182805461136790613473565b80156113b45780601f10611389576101008083540402835291602001916113b4565b820191906000526020600020905b81548152906001019060200180831161139757829003601f168201915b5050505050905090565b60006113ca3383610cdc565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906139dc565b60405180910390fd5b600f60009054906101000a900460ff16611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a48565b60405180910390fd5b600b5482611495610b58565b61149f9190613862565b11156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613ab4565b60405180910390fd5b600a54826114ec610b58565b6114f69190613862565b1115611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613b20565b60405180910390fd5b600d5482111561157c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611573906138e2565b60405180910390fd5b8034146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590613b8c565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160d9190613862565b9250508190555061161e3383612411565b5050565b61162a611c0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169b611c0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611748611c0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178d9190612d1d565b60405180910390a35050565b6117a4848484611cce565b6117c38373ffffffffffffffffffffffffffffffffffffffff166124f5565b80156117d857506117d684848484612518565b155b1561180f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156118805750600e548273ffffffffffffffffffffffffffffffffffffffff163110155b1561188e5760019050611893565b600090505b919050565b60606118a382611bbd565b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613c1e565b60405180910390fd5b6118ea612668565b6118f3836126fa565b604051602001611904929190613cc6565b6040516020818303038152906040529050919050565b611922611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611940611302565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d906134f0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a64611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611a82611302565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf906134f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613d67565b60405180910390fd5b611b508161242f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611bc8611cc5565b11158015611bd7575060005482105b8015611c04575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611cd982612182565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d65611c0b565b73ffffffffffffffffffffffffffffffffffffffff161480611d945750611d9385611d8e611c0b565b6119c8565b5b80611dd95750611da2611c0b565b73ffffffffffffffffffffffffffffffffffffffff16611dc1846109c6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e85858585600161285a565b611e9160008487611c13565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361211057600054821461210f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461217b8585856001612860565b5050505050565b61218a612c26565b600082905080612198611cc5565b111580156121a7575060005481105b156123da576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123d857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122bc57809250505061240c565b5b6001156123d757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d257809250505061240c565b6122bd565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61242b828260405180602001604052806000815250612866565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253e611c0b565b8786866040518563ffffffff1660e01b81526004016125609493929190613ddc565b6020604051808303816000875af192505050801561259c57506040513d601f19601f820116820180604052508101906125999190613e3d565b60015b612615573d80600081146125cc576040519150601f19603f3d011682016040523d82523d6000602084013e6125d1565b606091505b50600081510361260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461267790613473565b80601f01602080910402602001604051908101604052809291908181526020018280546126a390613473565b80156126f05780601f106126c5576101008083540402835291602001916126f0565b820191906000526020600020905b8154815290600101906020018083116126d357829003601f168201915b5050505050905090565b606060008203612741576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612855565b600082905060005b6000821461277357808061275c90613902565b915050600a8261276c9190613e99565b9150612749565b60008167ffffffffffffffff81111561278f5761278e612fc9565b5b6040519080825280601f01601f1916602001820160405280156127c15781602001600182028036833780820191505090505b5090505b6000851461284e576001826127da919061353f565b9150600a856127e99190613eca565b60306127f59190613862565b60f81b81838151811061280b5761280a613833565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128479190613e99565b94506127c5565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361290c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612919600085838661285a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612ada8673ffffffffffffffffffffffffffffffffffffffff166124f5565b15612b9f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4f6000878480600101955087612518565b612b85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ae0578260005414612b9a57600080fd5b612c0a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612ba0575b816000819055505050612c206000858386612860565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cb281612c7d565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b600060208284031215612ceb57612cea612c73565b5b6000612cf984828501612cc0565b91505092915050565b60008115159050919050565b612d1781612d02565b82525050565b6000602082019050612d326000830184612d0e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d72578082015181840152602081019050612d57565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9a82612d38565b612da48185612d43565b9350612db4818560208601612d54565b612dbd81612d7e565b840191505092915050565b60006020820190508181036000830152612de28184612d8f565b905092915050565b6000819050919050565b612dfd81612dea565b8114612e0857600080fd5b50565b600081359050612e1a81612df4565b92915050565b600060208284031215612e3657612e35612c73565b5b6000612e4484828501612e0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7882612e4d565b9050919050565b612e8881612e6d565b82525050565b6000602082019050612ea36000830184612e7f565b92915050565b612eb281612dea565b82525050565b6000602082019050612ecd6000830184612ea9565b92915050565b612edc81612e6d565b8114612ee757600080fd5b50565b600081359050612ef981612ed3565b92915050565b60008060408385031215612f1657612f15612c73565b5b6000612f2485828601612eea565b9250506020612f3585828601612e0b565b9150509250929050565b600080600060608486031215612f5857612f57612c73565b5b6000612f6686828701612eea565b9350506020612f7786828701612eea565b9250506040612f8886828701612e0b565b9150509250925092565b600060208284031215612fa857612fa7612c73565b5b6000612fb684828501612eea565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61300182612d7e565b810181811067ffffffffffffffff821117156130205761301f612fc9565b5b80604052505050565b6000613033612c69565b905061303f8282612ff8565b919050565b600067ffffffffffffffff82111561305f5761305e612fc9565b5b61306882612d7e565b9050602081019050919050565b82818337600083830152505050565b600061309761309284613044565b613029565b9050828152602081018484840111156130b3576130b2612fc4565b5b6130be848285613075565b509392505050565b600082601f8301126130db576130da612fbf565b5b81356130eb848260208601613084565b91505092915050565b60006020828403121561310a57613109612c73565b5b600082013567ffffffffffffffff81111561312857613127612c78565b5b613134848285016130c6565b91505092915050565b600080fd5b600080fd5b60008083601f84011261315d5761315c612fbf565b5b8235905067ffffffffffffffff81111561317a5761317961313d565b5b60208301915083602082028301111561319657613195613142565b5b9250929050565b60008083601f8401126131b3576131b2612fbf565b5b8235905067ffffffffffffffff8111156131d0576131cf61313d565b5b6020830191508360208202830111156131ec576131eb613142565b5b9250929050565b6000806000806040858703121561320d5761320c612c73565b5b600085013567ffffffffffffffff81111561322b5761322a612c78565b5b61323787828801613147565b9450945050602085013567ffffffffffffffff81111561325a57613259612c78565b5b6132668782880161319d565b925092505092959194509250565b61327d81612d02565b811461328857600080fd5b50565b60008135905061329a81613274565b92915050565b600080604083850312156132b7576132b6612c73565b5b60006132c585828601612eea565b92505060206132d68582860161328b565b9150509250929050565b600067ffffffffffffffff8211156132fb576132fa612fc9565b5b61330482612d7e565b9050602081019050919050565b600061332461331f846132e0565b613029565b9050828152602081018484840111156133405761333f612fc4565b5b61334b848285613075565b509392505050565b600082601f83011261336857613367612fbf565b5b8135613378848260208601613311565b91505092915050565b6000806000806080858703121561339b5761339a612c73565b5b60006133a987828801612eea565b94505060206133ba87828801612eea565b93505060406133cb87828801612e0b565b925050606085013567ffffffffffffffff8111156133ec576133eb612c78565b5b6133f887828801613353565b91505092959194509250565b6000806040838503121561341b5761341a612c73565b5b600061342985828601612eea565b925050602061343a85828601612eea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348b57607f821691505b60208210810361349e5761349d613444565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134da602083612d43565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354a82612dea565b915061355583612dea565b925082820390508181111561356d5761356c613510565b5b92915050565b600061357e82612dea565b915061358983612dea565b925082820261359781612dea565b915082820484148315176135ae576135ad613510565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135da565b61362186836135da565b95508019841693508086168417925050509392505050565b6000819050919050565b600061365e61365961365484612dea565b613639565b612dea565b9050919050565b6000819050919050565b61367883613643565b61368c61368482613665565b8484546135e7565b825550505050565b600090565b6136a1613694565b6136ac81848461366f565b505050565b5b818110156136d0576136c5600082613699565b6001810190506136b2565b5050565b601f821115613715576136e6816135b5565b6136ef846135ca565b810160208510156136fe578190505b61371261370a856135ca565b8301826136b1565b50505b505050565b600082821c905092915050565b60006137386000198460080261371a565b1980831691505092915050565b60006137518383613727565b9150826002028217905092915050565b61376a82612d38565b67ffffffffffffffff81111561378357613782612fc9565b5b61378d8254613473565b6137988282856136d4565b600060209050601f8311600181146137cb57600084156137b9578287015190505b6137c38582613745565b86555061382b565b601f1984166137d9866135b5565b60005b82811015613801578489015182556001820191506020850194506020810190506137dc565b8683101561381e578489015161381a601f891682613727565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061386d82612dea565b915061387883612dea565b92508282019050808211156138905761388f613510565b5b92915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006138cc600883612d43565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b600061390d82612dea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361393f5761393e613510565b5b600182019050919050565b600081905092915050565b50565b600061396560008361394a565b915061397082613955565b600082019050919050565b600061398682613958565b9150819050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b60006139c6600d83612d43565b91506139d182613990565b602082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b6000613a32600783612d43565b9150613a3d826139fc565b602082019050919050565b60006020820190508181036000830152613a6181613a25565b9050919050565b7f4e6f206d6f7265206672656520737570706c7900000000000000000000000000600082015250565b6000613a9e601383612d43565b9150613aa982613a68565b602082019050919050565b60006020820190508181036000830152613acd81613a91565b9050919050565b7f576f756c642065786363656420737570706c7900000000000000000000000000600082015250565b6000613b0a601383612d43565b9150613b1582613ad4565b602082019050919050565b60006020820190508181036000830152613b3981613afd565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613b76600c83612d43565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c08602f83612d43565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b600081905092915050565b6000613c5482612d38565b613c5e8185613c3e565b9350613c6e818560208601612d54565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613cb0600583613c3e565b9150613cbb82613c7a565b600582019050919050565b6000613cd28285613c49565b9150613cde8284613c49565b9150613ce982613ca3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d51602683612d43565b9150613d5c82613cf5565b604082019050919050565b60006020820190508181036000830152613d8081613d44565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dae82613d87565b613db88185613d92565b9350613dc8818560208601612d54565b613dd181612d7e565b840191505092915050565b6000608082019050613df16000830187612e7f565b613dfe6020830186612e7f565b613e0b6040830185612ea9565b8181036060830152613e1d8184613da3565b905095945050505050565b600081519050613e3781612ca9565b92915050565b600060208284031215613e5357613e52612c73565b5b6000613e6184828501613e28565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ea482612dea565b9150613eaf83612dea565b925082613ebf57613ebe613e6a565b5b828204905092915050565b6000613ed582612dea565b9150613ee083612dea565b925082613ef057613eef613e6a565b5b82820690509291505056fea2646970667358221220e74cfcb285ce3efc699ff464cc98f566c7e98476799643cd12bf6faa2686d5ad64736f6c63430008110033
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.