ERC-721
NFT
Overview
Max Total Supply
6,666 OS
Holders
2,400
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OniNFT
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; contract OniNFT is ERC721URIStorage, ERC721Pausable, ERC721Enumerable { using SafeMath for uint256; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public MAX_ELEMENTS = 275; uint256 public PRICE = 0.0666 ether; uint256 public MAX_BY_MINT = 1; address public creatorAddress; string public baseTokenURI; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; event CreateOni(uint256 indexed id); constructor(string memory _baseURI, address _creatorAddress) ERC721("Oni Squad", "OS") { creatorAddress = _creatorAddress; baseTokenURI = _baseURI; for (uint256 i = 0; i < 75; i++) { _mintAnElement(_creatorAddress); } _pause(); } function setMAX_ELEMENTS(uint256 _maxElements) external onlyOwner { require( _maxElements < 6667, "You can't set the MAX ELEMENTS to be over 6666." ); MAX_ELEMENTS = _maxElements; } function setMAX_BY_MINT(uint256 _maxByMint) external onlyOwner { require( _maxByMint <= 3 && _maxByMint > 0, "You can't set the MAX BY MINT to be over MAX_BY_MINT." ); MAX_BY_MINT = _maxByMint; } function setPRICE(uint256 _price) external onlyOwner { PRICE = _price; } function _totalSupply() internal view returns (uint256) { return _tokenIdTracker.current(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mint(uint256 _numTokensToMint) public payable { uint256 total = _totalSupply(); require(total + _numTokensToMint <= MAX_ELEMENTS, "Max limit"); require( balanceOf(msg.sender) + _numTokensToMint <= MAX_BY_MINT, "Can't mint more than MAX_BY_MINT NFTs to this address" ); require(total <= MAX_ELEMENTS, "This sale has ended"); require( msg.value >= price(_numTokensToMint), "Value paid is below price" ); for (uint256 i = 0; i < _numTokensToMint; i++) { _mintAnElement(msg.sender); } } function _mintAnElement(address _to) private { uint256 id = _totalSupply() + 1; _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateOni(id); } function price(uint256 _count) public view returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function pause() public onlyOwner { _pause(); return; } function unpause() public onlyOwner { _unpause(); return; } function getContractBalance() public view returns (uint256) { return address(this).balance; } // function withdrawAll() public payable onlyOwner { function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _withdraw(creatorAddress, balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Pausable, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { revert("Don't burn your ONI"); } function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } modifier onlyOwner() { require( msg.sender == creatorAddress, "Only owner can perform this action" ); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_creatorAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateOni","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","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":[{"internalType":"uint256","name":"_numTokensToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","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":"_maxByMint","type":"uint256"}],"name":"setMAX_BY_MINT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxElements","type":"uint256"}],"name":"setMAX_ELEMENTS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610113600d5566ec9c58de0a8000600e556001600f553480156200002757600080fd5b50604051620060583803806200605883398181016040528101906200004d91906200106b565b6040518060400160405280600981526020017f4f6e6920537175616400000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f530000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d192919062000db9565b508060019080519060200190620000ea92919062000db9565b5050506000600760006101000a81548160ff02191690831515021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601190805190602001906200016192919062000db9565b5060005b604b81101562000196576200018082620001af60201b60201c565b80806200018d906200110a565b91505062000165565b50620001a76200022b60201b60201c565b505062001761565b60006001620001c3620002e360201b60201c565b620001cf919062001158565b9050620001e8600c6200030160201b620018ff1760201c565b620001fa82826200031760201b60201c565b807f501d1050284d7655f55019fa7a674247a9c93768080b570064ba491f1bbee0fa60405160405180910390a25050565b6200023b6200033d60201b60201c565b156200027e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002759062001216565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002ca6200035460201b60201c565b604051620002d9919062001249565b60405180910390a1565b6000620002fc600c6200035c60201b620019151760201c565b905090565b6001816000016000828254019250508190555050565b620003398282604051806020016040528060008152506200036a60201b60201c565b5050565b6000600760009054906101000a900460ff16905090565b600033905090565b600081600001549050919050565b6200037c8383620003d860201b60201c565b620003916000848484620005be60201b60201c565b620003d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ca90620012dc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200044b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000442906200134e565b60405180910390fd5b6200045c816200077860201b60201c565b156200049f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049690620013c0565b60405180910390fd5b620004b360008383620007e460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000505919062001158565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005ec8473ffffffffffffffffffffffffffffffffffffffff166200080160201b620019231760201c565b156200076b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200061e6200035460201b60201c565b8786866040518563ffffffff1660e01b815260040162000642949392919062001450565b602060405180830381600087803b1580156200065d57600080fd5b505af19250505080156200069157506040513d601f19601f820116820180604052508101906200068e919062001501565b60015b6200071a573d8060008114620006c4576040519150601f19603f3d011682016040523d82523d6000602084013e620006c9565b606091505b5060008151141562000712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070990620012dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000770565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007fc8383836200081460201b620019361760201c565b505050565b600080823b905060008111915050919050565b6200082c8383836200095b60201b62001a4a1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000879576200087381620009cb60201b60201c565b620008c1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008c057620008bf838262000a1460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200090e57620009088162000b9160201b60201c565b62000956565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009555762000954828262000c6d60201b60201c565b5b5b505050565b6200097383838362000cf960201b62001aa21760201c565b620009836200033d60201b60201c565b15620009c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bd90620015a9565b60405180910390fd5b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a2e8462000cfe60201b62000ed91760201c565b62000a3a9190620015cb565b905060006009600084815260200190815260200160002054905081811462000b20576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905062000ba79190620015cb565b90506000600b60008481526020019081526020016000205490506000600a838154811062000bda5762000bd962001606565b5b9060005260206000200154905080600a838154811062000bff5762000bfe62001606565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548062000c515762000c5062001635565b5b6001900381819060005260206000200160009055905550505050565b600062000c858362000cfe60201b62000ed91760201c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d6990620016da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000dc7906200172b565b90600052602060002090601f01602090048101928262000deb576000855562000e37565b82601f1062000e0657805160ff191683800117855562000e37565b8280016001018555821562000e37579182015b8281111562000e3657825182559160200191906001019062000e19565b5b50905062000e46919062000e4a565b5090565b5b8082111562000e6557600081600090555060010162000e4b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ed28262000e87565b810181811067ffffffffffffffff8211171562000ef45762000ef362000e98565b5b80604052505050565b600062000f0962000e69565b905062000f17828262000ec7565b919050565b600067ffffffffffffffff82111562000f3a5762000f3962000e98565b5b62000f458262000e87565b9050602081019050919050565b60005b8381101562000f7257808201518184015260208101905062000f55565b8381111562000f82576000848401525b50505050565b600062000f9f62000f998462000f1c565b62000efd565b90508281526020810184848401111562000fbe5762000fbd62000e82565b5b62000fcb84828562000f52565b509392505050565b600082601f83011262000feb5762000fea62000e7d565b5b815162000ffd84826020860162000f88565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010338262001006565b9050919050565b620010458162001026565b81146200105157600080fd5b50565b60008151905062001065816200103a565b92915050565b6000806040838503121562001085576200108462000e73565b5b600083015167ffffffffffffffff811115620010a657620010a562000e78565b5b620010b48582860162000fd3565b9250506020620010c78582860162001054565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b6000620011178262001100565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200114d576200114c620010d1565b5b600182019050919050565b6000620011658262001100565b9150620011728362001100565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011aa57620011a9620010d1565b5b828201905092915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620011fe601083620011b5565b91506200120b82620011c6565b602082019050919050565b600060208201905081810360008301526200123181620011ef565b9050919050565b620012438162001026565b82525050565b600060208201905062001260600083018462001238565b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620012c4603283620011b5565b9150620012d18262001266565b604082019050919050565b60006020820190508181036000830152620012f781620012b5565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062001336602083620011b5565b91506200134382620012fe565b602082019050919050565b60006020820190508181036000830152620013698162001327565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620013a8601c83620011b5565b9150620013b58262001370565b602082019050919050565b60006020820190508181036000830152620013db8162001399565b9050919050565b620013ed8162001100565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200141c82620013f3565b620014288185620013fe565b93506200143a81856020860162000f52565b620014458162000e87565b840191505092915050565b600060808201905062001467600083018762001238565b62001476602083018662001238565b620014856040830185620013e2565b81810360608301526200149981846200140f565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620014db81620014a4565b8114620014e757600080fd5b50565b600081519050620014fb81620014d0565b92915050565b6000602082840312156200151a576200151962000e73565b5b60006200152a84828501620014ea565b91505092915050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b600062001591602b83620011b5565b91506200159e8262001533565b604082019050919050565b60006020820190508181036000830152620015c48162001582565b9050919050565b6000620015d88262001100565b9150620015e58362001100565b925082821015620015fb57620015fa620010d1565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000620016c2602a83620011b5565b9150620016cf8262001664565b604082019050919050565b60006020820190508181036000830152620016f581620016b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200174457607f821691505b602082108114156200175b576200175a620016fc565b5b50919050565b6148e780620017716000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063d547cfb71161006f578063d547cfb7146106de578063d6f15dd314610709578063e927fc5c14610732578063e985e9c51461075d578063eea52d381461079a576101ee565b8063a0712d6814610633578063a22cb4651461064f578063b88d4fde14610678578063c87b56dd146106a1576101ee565b8063853828b6116100dc578063853828b61461059b5780638ad5de28146105b25780638d859f3e146105dd57806395d89b4114610608576101ee565b80636352211e146104df5780636f9fb98a1461051c57806370a08231146105475780638456cb5914610584576101ee565b80633502a7161161018557806355f804b31161015457806355f804b31461043757806359a7715a146104605780635c975abb1461048b5780636223a798146104b6576101ee565b80633502a7161461038f5780633f4ba83a146103ba57806342842e0e146103d15780634f6ccce7146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec57806326a49e37146103155780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f99565b6107c3565b6040516102279190612fe1565b60405180910390f35b34801561023c57600080fd5b506102456107d5565b6040516102529190613095565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130ed565b610867565b60405161028f919061315b565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906131a2565b6108ec565b005b3480156102cd57600080fd5b506102d6610a04565b6040516102e391906131f1565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e919061320c565b610a11565b005b34801561032157600080fd5b5061033c600480360381019061033791906130ed565b610a71565b60405161034991906131f1565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906131a2565b610a8f565b60405161038691906131f1565b60405180910390f35b34801561039b57600080fd5b506103a4610b34565b6040516103b191906131f1565b60405180910390f35b3480156103c657600080fd5b506103cf610b3a565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061320c565b610bd4565b005b34801561040657600080fd5b50610421600480360381019061041c91906130ed565b610bf4565b60405161042e91906131f1565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613394565b610c65565b005b34801561046c57600080fd5b50610475610d0f565b60405161048291906131f1565b60405180910390f35b34801561049757600080fd5b506104a0610d1e565b6040516104ad9190612fe1565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906130ed565b610d35565b005b3480156104eb57600080fd5b50610506600480360381019061050191906130ed565b610e1f565b604051610513919061315b565b60405180910390f35b34801561052857600080fd5b50610531610ed1565b60405161053e91906131f1565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906133dd565b610ed9565b60405161057b91906131f1565b60405180910390f35b34801561059057600080fd5b50610599610f91565b005b3480156105a757600080fd5b506105b061102b565b005b3480156105be57600080fd5b506105c76110fc565b6040516105d491906131f1565b60405180910390f35b3480156105e957600080fd5b506105f2611102565b6040516105ff91906131f1565b60405180910390f35b34801561061457600080fd5b5061061d611108565b60405161062a9190613095565b60405180910390f35b61064d600480360381019061064891906130ed565b61119a565b005b34801561065b57600080fd5b5061067660048036038101906106719190613436565b61130a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190613517565b61148b565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906130ed565b6114ed565b6040516106d59190613095565b60405180910390f35b3480156106ea57600080fd5b506106f361163f565b6040516107009190613095565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b91906130ed565b6116cd565b005b34801561073e57600080fd5b506107476117ab565b604051610754919061315b565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061359a565b6117d1565b6040516107919190612fe1565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906130ed565b611865565b005b60006107ce82611aa7565b9050919050565b6060600080546107e490613609565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613609565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b21565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906136ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061373f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b8d565b6117d1565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906137d1565b60405180910390fd5b6109ff8383611b95565b505050565b6000600a80549050905090565b610a22610a1c611b8d565b82611c4e565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613863565b60405180910390fd5b610a6c838383611d2c565b505050565b6000610a8882600e54611f8890919063ffffffff16565b9050919050565b6000610a9a83610ed9565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906138f5565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613987565b60405180910390fd5b610bd2611f9e565b565b610bef8383836040518060200160405280600081525061148b565b505050565b6000610bfe610a04565b8210610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613a19565b60405180910390fd5b600a8281548110610c5357610c52613a39565b5b90600052602060002001549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613987565b60405180910390fd5b8060119080519060200190610d0b929190612e8a565b5050565b6000610d19612040565b905090565b6000600760009054906101000a900460ff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90613987565b60405180910390fd5b60038111158015610dd65750600081115b610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613ada565b60405180910390fd5b80600f8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b6c565b60405180910390fd5b80915050919050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613bfe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613987565b60405180910390fd5b611029612051565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613987565b60405180910390fd5b6000479050600081116110cd57600080fd5b6110f9601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120f4565b50565b600f5481565b600e5481565b60606001805461111790613609565b80601f016020809104026020016040519081016040528092919081815260200182805461114390613609565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b60006111a4612040565b9050600d5482826111b59190613c4d565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613cef565b60405180910390fd5b600f548261120333610ed9565b61120d9190613c4d565b111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613d81565b60405180910390fd5b600d54811115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613ded565b60405180910390fd5b61129c82610a71565b3410156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613e59565b60405180910390fd5b60005b82811015611305576112f2336121a5565b80806112fd90613e79565b9150506112e1565b505050565b611312611b8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790613f0e565b60405180910390fd5b806005600061138d611b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143a611b8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147f9190612fe1565b60405180910390a35050565b61149c611496611b8d565b83611c4e565b6114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290613863565b60405180910390fd5b6114e784848484612202565b50505050565b60606114f882611b21565b611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613fa0565b60405180910390fd5b600060126000848152602001908152602001600020805461155790613609565b80601f016020809104026020016040519081016040528092919081815260200182805461158390613609565b80156115d05780601f106115a5576101008083540402835291602001916115d0565b820191906000526020600020905b8154815290600101906020018083116115b357829003601f168201915b5050505050905060006115e161225e565b90506000815114156115f757819250505061163a565b60008251111561162c578082604051602001611614929190613ffc565b6040516020818303038152906040529250505061163a565b611635846122f0565b925050505b919050565b6011805461164c90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461167890613609565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613987565b60405180910390fd5b611a0b81106117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614092565b60405180910390fd5b80600d8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90613987565b60405180910390fd5b80600e8190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b611941838383611a4a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119845761197f81612442565b6119c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119c2576119c1838261248b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0657611a01816125f8565b611a45565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611a4457611a4382826126c9565b5b5b505050565b611a55838383611aa2565b611a5d610d1e565b15611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614124565b60405180910390fd5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b1a5750611b1982612748565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0883610e1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c5982611b21565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906141b6565b60405180910390fd5b6000611ca383610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1257508373ffffffffffffffffffffffffffffffffffffffff16611cfa84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d235750611d2281856117d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d4c82610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990614248565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906142da565b60405180910390fd5b611e1d83838361282a565b611e28600082611b95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7891906142fa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecf9190613c4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611f96919061432e565b905092915050565b611fa6610d1e565b611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc906143d4565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612029611b8d565b604051612036919061315b565b60405180910390a1565b600061204c600c611915565b905090565b612059610d1e565b15612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090614440565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120dd611b8d565b6040516120ea919061315b565b60405180910390a1565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161211a90614491565b60006040518083038185875af1925050503d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50509050806121a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612197906144f2565b60405180910390fd5b505050565b600060016121b1612040565b6121bb9190613c4d565b90506121c7600c6118ff565b6121d1828261283a565b807f501d1050284d7655f55019fa7a674247a9c93768080b570064ba491f1bbee0fa60405160405180910390a25050565b61220d848484611d2c565b61221984848484612858565b612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90614584565b60405180910390fd5b50505050565b60606011805461226d90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461229990613609565b80156122e65780601f106122bb576101008083540402835291602001916122e6565b820191906000526020600020905b8154815290600101906020018083116122c957829003601f168201915b5050505050905090565b60606122fb82611b21565b61233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190613fa0565b60405180910390fd5b600060066000848152602001908152602001600020805461235a90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461238690613609565b80156123d35780601f106123a8576101008083540402835291602001916123d3565b820191906000526020600020905b8154815290600101906020018083116123b657829003601f168201915b5050505050905060006123e461225e565b90506000815114156123fa57819250505061243d565b60008251111561242f578082604051602001612417929190613ffc565b6040516020818303038152906040529250505061243d565b612438846129ef565b925050505b919050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249884610ed9565b6124a291906142fa565b9050600060096000848152602001908152602001600020549050818114612587576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061260c91906142fa565b90506000600b60008481526020019081526020016000205490506000600a838154811061263c5761263b613a39565b5b9060005260206000200154905080600a838154811061265e5761265d613a39565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a8054806126ad576126ac6145a4565b5b6001900381819060005260206000200160009055905550505050565b60006126d483610ed9565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061281357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612823575061282282612a96565b5b9050919050565b612835838383611936565b505050565b612854828260405180602001604052806000815250612b00565b5050565b60006128798473ffffffffffffffffffffffffffffffffffffffff16611923565b156129e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a2611b8d565b8786866040518563ffffffff1660e01b81526004016128c49493929190614628565b602060405180830381600087803b1580156128de57600080fd5b505af192505050801561290f57506040513d601f19601f8201168201806040525081019061290c9190614689565b60015b612992573d806000811461293f576040519150601f19603f3d011682016040523d82523d6000602084013e612944565b606091505b5060008151141561298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190614584565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129e7565b600190505b949350505050565b60606129fa82611b21565b612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090614728565b60405180910390fd5b6000612a4361225e565b90506000815111612a635760405180602001604052806000815250612a8e565b80612a6d84612b5b565b604051602001612a7e929190613ffc565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b0a8383612cbc565b612b176000848484612858565b612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90614584565b60405180910390fd5b505050565b60606000821415612ba3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cb7565b600082905060005b60008214612bd5578080612bbe90613e79565b915050600a82612bce9190614777565b9150612bab565b60008167ffffffffffffffff811115612bf157612bf0613269565b5b6040519080825280601f01601f191660200182016040528015612c235781602001600182028036833780820191505090505b5090505b60008514612cb057600182612c3c91906142fa565b9150600a85612c4b91906147a8565b6030612c579190613c4d565b60f81b818381518110612c6d57612c6c613a39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ca99190614777565b9450612c27565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2390614825565b60405180910390fd5b612d3581611b21565b15612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c90614891565b60405180910390fd5b612d816000838361282a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd19190613c4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e9690613609565b90600052602060002090601f016020900481019282612eb85760008555612eff565b82601f10612ed157805160ff1916838001178555612eff565b82800160010185558215612eff579182015b82811115612efe578251825591602001919060010190612ee3565b5b509050612f0c9190612f10565b5090565b5b80821115612f29576000816000905550600101612f11565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f7681612f41565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b600060208284031215612faf57612fae612f37565b5b6000612fbd84828501612f84565b91505092915050565b60008115159050919050565b612fdb81612fc6565b82525050565b6000602082019050612ff66000830184612fd2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561303657808201518184015260208101905061301b565b83811115613045576000848401525b50505050565b6000601f19601f8301169050919050565b600061306782612ffc565b6130718185613007565b9350613081818560208601613018565b61308a8161304b565b840191505092915050565b600060208201905081810360008301526130af818461305c565b905092915050565b6000819050919050565b6130ca816130b7565b81146130d557600080fd5b50565b6000813590506130e7816130c1565b92915050565b60006020828403121561310357613102612f37565b5b6000613111848285016130d8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131458261311a565b9050919050565b6131558161313a565b82525050565b6000602082019050613170600083018461314c565b92915050565b61317f8161313a565b811461318a57600080fd5b50565b60008135905061319c81613176565b92915050565b600080604083850312156131b9576131b8612f37565b5b60006131c78582860161318d565b92505060206131d8858286016130d8565b9150509250929050565b6131eb816130b7565b82525050565b600060208201905061320660008301846131e2565b92915050565b60008060006060848603121561322557613224612f37565b5b60006132338682870161318d565b93505060206132448682870161318d565b9250506040613255868287016130d8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132a18261304b565b810181811067ffffffffffffffff821117156132c0576132bf613269565b5b80604052505050565b60006132d3612f2d565b90506132df8282613298565b919050565b600067ffffffffffffffff8211156132ff576132fe613269565b5b6133088261304b565b9050602081019050919050565b82818337600083830152505050565b6000613337613332846132e4565b6132c9565b90508281526020810184848401111561335357613352613264565b5b61335e848285613315565b509392505050565b600082601f83011261337b5761337a61325f565b5b813561338b848260208601613324565b91505092915050565b6000602082840312156133aa576133a9612f37565b5b600082013567ffffffffffffffff8111156133c8576133c7612f3c565b5b6133d484828501613366565b91505092915050565b6000602082840312156133f3576133f2612f37565b5b60006134018482850161318d565b91505092915050565b61341381612fc6565b811461341e57600080fd5b50565b6000813590506134308161340a565b92915050565b6000806040838503121561344d5761344c612f37565b5b600061345b8582860161318d565b925050602061346c85828601613421565b9150509250929050565b600067ffffffffffffffff82111561349157613490613269565b5b61349a8261304b565b9050602081019050919050565b60006134ba6134b584613476565b6132c9565b9050828152602081018484840111156134d6576134d5613264565b5b6134e1848285613315565b509392505050565b600082601f8301126134fe576134fd61325f565b5b813561350e8482602086016134a7565b91505092915050565b6000806000806080858703121561353157613530612f37565b5b600061353f8782880161318d565b94505060206135508782880161318d565b9350506040613561878288016130d8565b925050606085013567ffffffffffffffff81111561358257613581612f3c565b5b61358e878288016134e9565b91505092959194509250565b600080604083850312156135b1576135b0612f37565b5b60006135bf8582860161318d565b92505060206135d08582860161318d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b60208210811415613635576136346135da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613697602c83613007565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613729602183613007565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137bb603883613007565b91506137c68261375f565b604082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061384d603183613007565b9150613858826137f1565b604082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138df602b83613007565b91506138ea82613883565b604082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b7f4f6e6c79206f776e65722063616e20706572666f726d2074686973206163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613971602283613007565b915061397c82613915565b604082019050919050565b600060208201905081810360008301526139a081613964565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a03602c83613007565b9150613a0e826139a7565b604082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e27742073657420746865204d4158204259204d494e5420746f60008201527f206265206f766572204d41585f42595f4d494e542e0000000000000000000000602082015250565b6000613ac4603583613007565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613b56602983613007565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613be8602a83613007565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c58826130b7565b9150613c63836130b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9857613c97613c1e565b5b828201905092915050565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b6000613cd9600983613007565b9150613ce482613ca3565b602082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f43616e2774206d696e74206d6f7265207468616e204d41585f42595f4d494e5460008201527f204e46547320746f207468697320616464726573730000000000000000000000602082015250565b6000613d6b603583613007565b9150613d7682613d0f565b604082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f546869732073616c652068617320656e64656400000000000000000000000000600082015250565b6000613dd7601383613007565b9150613de282613da1565b602082019050919050565b60006020820190508181036000830152613e0681613dca565b9050919050565b7f56616c756520706169642069732062656c6f7720707269636500000000000000600082015250565b6000613e43601983613007565b9150613e4e82613e0d565b602082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b6000613e84826130b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb757613eb6613c1e565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ef8601983613007565b9150613f0382613ec2565b602082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000613f8a603183613007565b9150613f9582613f2e565b604082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b600081905092915050565b6000613fd682612ffc565b613fe08185613fc0565b9350613ff0818560208601613018565b80840191505092915050565b60006140088285613fcb565b91506140148284613fcb565b91508190509392505050565b7f596f752063616e27742073657420746865204d415820454c454d454e5453207460008201527f6f206265206f76657220363636362e0000000000000000000000000000000000602082015250565b600061407c602f83613007565b915061408782614020565b604082019050919050565b600060208201905081810360008301526140ab8161406f565b9050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b600061410e602b83613007565b9150614119826140b2565b604082019050919050565b6000602082019050818103600083015261413d81614101565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141a0602c83613007565b91506141ab82614144565b604082019050919050565b600060208201905081810360008301526141cf81614193565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614232602983613007565b915061423d826141d6565b604082019050919050565b6000602082019050818103600083015261426181614225565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c4602483613007565b91506142cf82614268565b604082019050919050565b600060208201905081810360008301526142f3816142b7565b9050919050565b6000614305826130b7565b9150614310836130b7565b92508282101561432357614322613c1e565b5b828203905092915050565b6000614339826130b7565b9150614344836130b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437d5761437c613c1e565b5b828202905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006143be601483613007565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061442a601083613007565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b600081905092915050565b50565b600061447b600083614460565b91506144868261446b565b600082019050919050565b600061449c8261446e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006144dc601083613007565b91506144e7826144a6565b602082019050919050565b6000602082019050818103600083015261450b816144cf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061456e603283613007565b915061457982614512565b604082019050919050565b6000602082019050818103600083015261459d81614561565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006145fa826145d3565b61460481856145de565b9350614614818560208601613018565b61461d8161304b565b840191505092915050565b600060808201905061463d600083018761314c565b61464a602083018661314c565b61465760408301856131e2565b818103606083015261466981846145ef565b905095945050505050565b60008151905061468381612f6d565b92915050565b60006020828403121561469f5761469e612f37565b5b60006146ad84828501614674565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614712602f83613007565b915061471d826146b6565b604082019050919050565b6000602082019050818103600083015261474181614705565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614782826130b7565b915061478d836130b7565b92508261479d5761479c614748565b5b828204905092915050565b60006147b3826130b7565b91506147be836130b7565b9250826147ce576147cd614748565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061480f602083613007565b915061481a826147d9565b602082019050919050565b6000602082019050818103600083015261483e81614802565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061487b601c83613007565b915061488682614845565b602082019050919050565b600060208201905081810360008301526148aa8161486e565b905091905056fea2646970667358221220814bb4cfe16752e96b6ee6498fac3ed0befa2e61b5d93a29df634a17c644981864736f6c634300080900330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000279f7364049b22bb8a456532250c473e7b491619000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6f6e6973717561642e67672f6170692f6f6e692f00000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063d547cfb71161006f578063d547cfb7146106de578063d6f15dd314610709578063e927fc5c14610732578063e985e9c51461075d578063eea52d381461079a576101ee565b8063a0712d6814610633578063a22cb4651461064f578063b88d4fde14610678578063c87b56dd146106a1576101ee565b8063853828b6116100dc578063853828b61461059b5780638ad5de28146105b25780638d859f3e146105dd57806395d89b4114610608576101ee565b80636352211e146104df5780636f9fb98a1461051c57806370a08231146105475780638456cb5914610584576101ee565b80633502a7161161018557806355f804b31161015457806355f804b31461043757806359a7715a146104605780635c975abb1461048b5780636223a798146104b6576101ee565b80633502a7161461038f5780633f4ba83a146103ba57806342842e0e146103d15780634f6ccce7146103fa576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec57806326a49e37146103155780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f99565b6107c3565b6040516102279190612fe1565b60405180910390f35b34801561023c57600080fd5b506102456107d5565b6040516102529190613095565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130ed565b610867565b60405161028f919061315b565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906131a2565b6108ec565b005b3480156102cd57600080fd5b506102d6610a04565b6040516102e391906131f1565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e919061320c565b610a11565b005b34801561032157600080fd5b5061033c600480360381019061033791906130ed565b610a71565b60405161034991906131f1565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906131a2565b610a8f565b60405161038691906131f1565b60405180910390f35b34801561039b57600080fd5b506103a4610b34565b6040516103b191906131f1565b60405180910390f35b3480156103c657600080fd5b506103cf610b3a565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061320c565b610bd4565b005b34801561040657600080fd5b50610421600480360381019061041c91906130ed565b610bf4565b60405161042e91906131f1565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190613394565b610c65565b005b34801561046c57600080fd5b50610475610d0f565b60405161048291906131f1565b60405180910390f35b34801561049757600080fd5b506104a0610d1e565b6040516104ad9190612fe1565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906130ed565b610d35565b005b3480156104eb57600080fd5b50610506600480360381019061050191906130ed565b610e1f565b604051610513919061315b565b60405180910390f35b34801561052857600080fd5b50610531610ed1565b60405161053e91906131f1565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906133dd565b610ed9565b60405161057b91906131f1565b60405180910390f35b34801561059057600080fd5b50610599610f91565b005b3480156105a757600080fd5b506105b061102b565b005b3480156105be57600080fd5b506105c76110fc565b6040516105d491906131f1565b60405180910390f35b3480156105e957600080fd5b506105f2611102565b6040516105ff91906131f1565b60405180910390f35b34801561061457600080fd5b5061061d611108565b60405161062a9190613095565b60405180910390f35b61064d600480360381019061064891906130ed565b61119a565b005b34801561065b57600080fd5b5061067660048036038101906106719190613436565b61130a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190613517565b61148b565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906130ed565b6114ed565b6040516106d59190613095565b60405180910390f35b3480156106ea57600080fd5b506106f361163f565b6040516107009190613095565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b91906130ed565b6116cd565b005b34801561073e57600080fd5b506107476117ab565b604051610754919061315b565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061359a565b6117d1565b6040516107919190612fe1565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906130ed565b611865565b005b60006107ce82611aa7565b9050919050565b6060600080546107e490613609565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613609565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b21565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906136ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061373f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b8d565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b8d565b6117d1565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906137d1565b60405180910390fd5b6109ff8383611b95565b505050565b6000600a80549050905090565b610a22610a1c611b8d565b82611c4e565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613863565b60405180910390fd5b610a6c838383611d2c565b505050565b6000610a8882600e54611f8890919063ffffffff16565b9050919050565b6000610a9a83610ed9565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906138f5565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613987565b60405180910390fd5b610bd2611f9e565b565b610bef8383836040518060200160405280600081525061148b565b505050565b6000610bfe610a04565b8210610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613a19565b60405180910390fd5b600a8281548110610c5357610c52613a39565b5b90600052602060002001549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613987565b60405180910390fd5b8060119080519060200190610d0b929190612e8a565b5050565b6000610d19612040565b905090565b6000600760009054906101000a900460ff16905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90613987565b60405180910390fd5b60038111158015610dd65750600081115b610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613ada565b60405180910390fd5b80600f8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b6c565b60405180910390fd5b80915050919050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613bfe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613987565b60405180910390fd5b611029612051565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613987565b60405180910390fd5b6000479050600081116110cd57600080fd5b6110f9601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826120f4565b50565b600f5481565b600e5481565b60606001805461111790613609565b80601f016020809104026020016040519081016040528092919081815260200182805461114390613609565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b60006111a4612040565b9050600d5482826111b59190613c4d565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613cef565b60405180910390fd5b600f548261120333610ed9565b61120d9190613c4d565b111561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590613d81565b60405180910390fd5b600d54811115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613ded565b60405180910390fd5b61129c82610a71565b3410156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613e59565b60405180910390fd5b60005b82811015611305576112f2336121a5565b80806112fd90613e79565b9150506112e1565b505050565b611312611b8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790613f0e565b60405180910390fd5b806005600061138d611b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143a611b8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147f9190612fe1565b60405180910390a35050565b61149c611496611b8d565b83611c4e565b6114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290613863565b60405180910390fd5b6114e784848484612202565b50505050565b60606114f882611b21565b611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613fa0565b60405180910390fd5b600060126000848152602001908152602001600020805461155790613609565b80601f016020809104026020016040519081016040528092919081815260200182805461158390613609565b80156115d05780601f106115a5576101008083540402835291602001916115d0565b820191906000526020600020905b8154815290600101906020018083116115b357829003601f168201915b5050505050905060006115e161225e565b90506000815114156115f757819250505061163a565b60008251111561162c578082604051602001611614929190613ffc565b6040516020818303038152906040529250505061163a565b611635846122f0565b925050505b919050565b6011805461164c90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461167890613609565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613987565b60405180910390fd5b611a0b81106117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614092565b60405180910390fd5b80600d8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90613987565b60405180910390fd5b80600e8190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b611941838383611a4a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119845761197f81612442565b6119c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119c2576119c1838261248b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0657611a01816125f8565b611a45565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611a4457611a4382826126c9565b5b5b505050565b611a55838383611aa2565b611a5d610d1e565b15611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614124565b60405180910390fd5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b1a5750611b1982612748565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0883610e1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c5982611b21565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906141b6565b60405180910390fd5b6000611ca383610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1257508373ffffffffffffffffffffffffffffffffffffffff16611cfa84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d235750611d2281856117d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d4c82610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990614248565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906142da565b60405180910390fd5b611e1d83838361282a565b611e28600082611b95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7891906142fa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecf9190613c4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611f96919061432e565b905092915050565b611fa6610d1e565b611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc906143d4565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612029611b8d565b604051612036919061315b565b60405180910390a1565b600061204c600c611915565b905090565b612059610d1e565b15612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090614440565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120dd611b8d565b6040516120ea919061315b565b60405180910390a1565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161211a90614491565b60006040518083038185875af1925050503d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50509050806121a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612197906144f2565b60405180910390fd5b505050565b600060016121b1612040565b6121bb9190613c4d565b90506121c7600c6118ff565b6121d1828261283a565b807f501d1050284d7655f55019fa7a674247a9c93768080b570064ba491f1bbee0fa60405160405180910390a25050565b61220d848484611d2c565b61221984848484612858565b612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90614584565b60405180910390fd5b50505050565b60606011805461226d90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461229990613609565b80156122e65780601f106122bb576101008083540402835291602001916122e6565b820191906000526020600020905b8154815290600101906020018083116122c957829003601f168201915b5050505050905090565b60606122fb82611b21565b61233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190613fa0565b60405180910390fd5b600060066000848152602001908152602001600020805461235a90613609565b80601f016020809104026020016040519081016040528092919081815260200182805461238690613609565b80156123d35780601f106123a8576101008083540402835291602001916123d3565b820191906000526020600020905b8154815290600101906020018083116123b657829003601f168201915b5050505050905060006123e461225e565b90506000815114156123fa57819250505061243d565b60008251111561242f578082604051602001612417929190613ffc565b6040516020818303038152906040529250505061243d565b612438846129ef565b925050505b919050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249884610ed9565b6124a291906142fa565b9050600060096000848152602001908152602001600020549050818114612587576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061260c91906142fa565b90506000600b60008481526020019081526020016000205490506000600a838154811061263c5761263b613a39565b5b9060005260206000200154905080600a838154811061265e5761265d613a39565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a8054806126ad576126ac6145a4565b5b6001900381819060005260206000200160009055905550505050565b60006126d483610ed9565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061281357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612823575061282282612a96565b5b9050919050565b612835838383611936565b505050565b612854828260405180602001604052806000815250612b00565b5050565b60006128798473ffffffffffffffffffffffffffffffffffffffff16611923565b156129e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a2611b8d565b8786866040518563ffffffff1660e01b81526004016128c49493929190614628565b602060405180830381600087803b1580156128de57600080fd5b505af192505050801561290f57506040513d601f19601f8201168201806040525081019061290c9190614689565b60015b612992573d806000811461293f576040519150601f19603f3d011682016040523d82523d6000602084013e612944565b606091505b5060008151141561298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190614584565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129e7565b600190505b949350505050565b60606129fa82611b21565b612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090614728565b60405180910390fd5b6000612a4361225e565b90506000815111612a635760405180602001604052806000815250612a8e565b80612a6d84612b5b565b604051602001612a7e929190613ffc565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b0a8383612cbc565b612b176000848484612858565b612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d90614584565b60405180910390fd5b505050565b60606000821415612ba3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cb7565b600082905060005b60008214612bd5578080612bbe90613e79565b915050600a82612bce9190614777565b9150612bab565b60008167ffffffffffffffff811115612bf157612bf0613269565b5b6040519080825280601f01601f191660200182016040528015612c235781602001600182028036833780820191505090505b5090505b60008514612cb057600182612c3c91906142fa565b9150600a85612c4b91906147a8565b6030612c579190613c4d565b60f81b818381518110612c6d57612c6c613a39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ca99190614777565b9450612c27565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2390614825565b60405180910390fd5b612d3581611b21565b15612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c90614891565b60405180910390fd5b612d816000838361282a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd19190613c4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e9690613609565b90600052602060002090601f016020900481019282612eb85760008555612eff565b82601f10612ed157805160ff1916838001178555612eff565b82800160010185558215612eff579182015b82811115612efe578251825591602001919060010190612ee3565b5b509050612f0c9190612f10565b5090565b5b80821115612f29576000816000905550600101612f11565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f7681612f41565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b600060208284031215612faf57612fae612f37565b5b6000612fbd84828501612f84565b91505092915050565b60008115159050919050565b612fdb81612fc6565b82525050565b6000602082019050612ff66000830184612fd2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561303657808201518184015260208101905061301b565b83811115613045576000848401525b50505050565b6000601f19601f8301169050919050565b600061306782612ffc565b6130718185613007565b9350613081818560208601613018565b61308a8161304b565b840191505092915050565b600060208201905081810360008301526130af818461305c565b905092915050565b6000819050919050565b6130ca816130b7565b81146130d557600080fd5b50565b6000813590506130e7816130c1565b92915050565b60006020828403121561310357613102612f37565b5b6000613111848285016130d8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131458261311a565b9050919050565b6131558161313a565b82525050565b6000602082019050613170600083018461314c565b92915050565b61317f8161313a565b811461318a57600080fd5b50565b60008135905061319c81613176565b92915050565b600080604083850312156131b9576131b8612f37565b5b60006131c78582860161318d565b92505060206131d8858286016130d8565b9150509250929050565b6131eb816130b7565b82525050565b600060208201905061320660008301846131e2565b92915050565b60008060006060848603121561322557613224612f37565b5b60006132338682870161318d565b93505060206132448682870161318d565b9250506040613255868287016130d8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132a18261304b565b810181811067ffffffffffffffff821117156132c0576132bf613269565b5b80604052505050565b60006132d3612f2d565b90506132df8282613298565b919050565b600067ffffffffffffffff8211156132ff576132fe613269565b5b6133088261304b565b9050602081019050919050565b82818337600083830152505050565b6000613337613332846132e4565b6132c9565b90508281526020810184848401111561335357613352613264565b5b61335e848285613315565b509392505050565b600082601f83011261337b5761337a61325f565b5b813561338b848260208601613324565b91505092915050565b6000602082840312156133aa576133a9612f37565b5b600082013567ffffffffffffffff8111156133c8576133c7612f3c565b5b6133d484828501613366565b91505092915050565b6000602082840312156133f3576133f2612f37565b5b60006134018482850161318d565b91505092915050565b61341381612fc6565b811461341e57600080fd5b50565b6000813590506134308161340a565b92915050565b6000806040838503121561344d5761344c612f37565b5b600061345b8582860161318d565b925050602061346c85828601613421565b9150509250929050565b600067ffffffffffffffff82111561349157613490613269565b5b61349a8261304b565b9050602081019050919050565b60006134ba6134b584613476565b6132c9565b9050828152602081018484840111156134d6576134d5613264565b5b6134e1848285613315565b509392505050565b600082601f8301126134fe576134fd61325f565b5b813561350e8482602086016134a7565b91505092915050565b6000806000806080858703121561353157613530612f37565b5b600061353f8782880161318d565b94505060206135508782880161318d565b9350506040613561878288016130d8565b925050606085013567ffffffffffffffff81111561358257613581612f3c565b5b61358e878288016134e9565b91505092959194509250565b600080604083850312156135b1576135b0612f37565b5b60006135bf8582860161318d565b92505060206135d08582860161318d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b60208210811415613635576136346135da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613697602c83613007565b91506136a28261363b565b604082019050919050565b600060208201905081810360008301526136c68161368a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613729602183613007565b9150613734826136cd565b604082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137bb603883613007565b91506137c68261375f565b604082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061384d603183613007565b9150613858826137f1565b604082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138df602b83613007565b91506138ea82613883565b604082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b7f4f6e6c79206f776e65722063616e20706572666f726d2074686973206163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613971602283613007565b915061397c82613915565b604082019050919050565b600060208201905081810360008301526139a081613964565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a03602c83613007565b9150613a0e826139a7565b604082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e27742073657420746865204d4158204259204d494e5420746f60008201527f206265206f766572204d41585f42595f4d494e542e0000000000000000000000602082015250565b6000613ac4603583613007565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613b56602983613007565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613be8602a83613007565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c58826130b7565b9150613c63836130b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9857613c97613c1e565b5b828201905092915050565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b6000613cd9600983613007565b9150613ce482613ca3565b602082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f43616e2774206d696e74206d6f7265207468616e204d41585f42595f4d494e5460008201527f204e46547320746f207468697320616464726573730000000000000000000000602082015250565b6000613d6b603583613007565b9150613d7682613d0f565b604082019050919050565b60006020820190508181036000830152613d9a81613d5e565b9050919050565b7f546869732073616c652068617320656e64656400000000000000000000000000600082015250565b6000613dd7601383613007565b9150613de282613da1565b602082019050919050565b60006020820190508181036000830152613e0681613dca565b9050919050565b7f56616c756520706169642069732062656c6f7720707269636500000000000000600082015250565b6000613e43601983613007565b9150613e4e82613e0d565b602082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b6000613e84826130b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb757613eb6613c1e565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ef8601983613007565b9150613f0382613ec2565b602082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000613f8a603183613007565b9150613f9582613f2e565b604082019050919050565b60006020820190508181036000830152613fb981613f7d565b9050919050565b600081905092915050565b6000613fd682612ffc565b613fe08185613fc0565b9350613ff0818560208601613018565b80840191505092915050565b60006140088285613fcb565b91506140148284613fcb565b91508190509392505050565b7f596f752063616e27742073657420746865204d415820454c454d454e5453207460008201527f6f206265206f76657220363636362e0000000000000000000000000000000000602082015250565b600061407c602f83613007565b915061408782614020565b604082019050919050565b600060208201905081810360008301526140ab8161406f565b9050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b600061410e602b83613007565b9150614119826140b2565b604082019050919050565b6000602082019050818103600083015261413d81614101565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141a0602c83613007565b91506141ab82614144565b604082019050919050565b600060208201905081810360008301526141cf81614193565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614232602983613007565b915061423d826141d6565b604082019050919050565b6000602082019050818103600083015261426181614225565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c4602483613007565b91506142cf82614268565b604082019050919050565b600060208201905081810360008301526142f3816142b7565b9050919050565b6000614305826130b7565b9150614310836130b7565b92508282101561432357614322613c1e565b5b828203905092915050565b6000614339826130b7565b9150614344836130b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437d5761437c613c1e565b5b828202905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006143be601483613007565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061442a601083613007565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b600081905092915050565b50565b600061447b600083614460565b91506144868261446b565b600082019050919050565b600061449c8261446e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006144dc601083613007565b91506144e7826144a6565b602082019050919050565b6000602082019050818103600083015261450b816144cf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061456e603283613007565b915061457982614512565b604082019050919050565b6000602082019050818103600083015261459d81614561565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006145fa826145d3565b61460481856145de565b9350614614818560208601613018565b61461d8161304b565b840191505092915050565b600060808201905061463d600083018761314c565b61464a602083018661314c565b61465760408301856131e2565b818103606083015261466981846145ef565b905095945050505050565b60008151905061468381612f6d565b92915050565b60006020828403121561469f5761469e612f37565b5b60006146ad84828501614674565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614712602f83613007565b915061471d826146b6565b604082019050919050565b6000602082019050818103600083015261474181614705565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614782826130b7565b915061478d836130b7565b92508261479d5761479c614748565b5b828204905092915050565b60006147b3826130b7565b91506147be836130b7565b9250826147ce576147cd614748565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061480f602083613007565b915061481a826147d9565b602082019050919050565b6000602082019050818103600083015261483e81614802565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061487b601c83613007565b915061488682614845565b602082019050919050565b600060208201905081810360008301526148aa8161486e565b905091905056fea2646970667358221220814bb4cfe16752e96b6ee6498fac3ed0befa2e61b5d93a29df634a17c644981864736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000279f7364049b22bb8a456532250c473e7b491619000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6f6e6973717561642e67672f6170692f6f6e692f00000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://onisquad.gg/api/oni/
Arg [1] : _creatorAddress (address): 0x279f7364049B22Bb8A456532250c473e7b491619
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000279f7364049b22bb8a456532250c473e7b491619
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [3] : 68747470733a2f2f6f6e6973717561642e67672f6170692f6f6e692f00000000
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.