ERC-721
Overview
Max Total Supply
531 DzW
Holders
214
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DzWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DROIDzCONTRACT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-26 */ // SPDX-License-Identifier: MIT /* ____ ____ ____ ________ _ ______ ____ __ ____ / __ \/ __ \/ __ \/ _/ __ \___| | / / __ \/ __ \/ / / __ \ / / / / /_/ / / / // // / / /_ / | /| / / / / / /_/ / / / / / / / /_/ / _, _/ /_/ // // /_/ / / /| |/ |/ / /_/ / _, _/ /___/ /_/ / /_____/_/ |_|\____/___/_____/ /___/__/|__/\____/_/ |_/_____/_____/ .... ... ... .. °°. .° *° .*. *° ° *° . . . . .°°***°°... °**°°. .°°°°°.... ..°°°°°. *#Oo**°°°°°° . .. .°°°°°**ooO* ......o. .o .°°°. .°°°. °. *°....... #o .o *ooo* *ooo* °. .# o@* . ..° . . . @@o °° * * #@O °@*#° *°@* @@# °@@Oo .#o@* *@@# o@@ O@O @°@# . #. o .# #@ . ** .* .# #@ . °oo. o@ *o .. Oo. oo* °# O@ . o@@@@ *#°.°.#@ . ...#O O@@@# *O O@ . *@#*O@@. .**. @@#*o@O °o°Oo **° .@@o *..° .oo. o °@@° °*Ooo** . °OO@. OO° .@# *oO@° .oo #O°.**. .. .°.° .*° *°.° . . ...°°°° . .°o@@@oo*° .*.°. .. .. .o* O@@* . . ..°° .. O@@@@@####o°. °. .. .*#o°*O@o ## . . °.o#@O. *#* °. */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @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()); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721APausable.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ContractPaused(); /** * @dev ERC721A token with pausable token transfers, minting and burning. * * Based off of OpenZeppelin's ERC721Pausable extension. * * 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 ERC721APausable is ERC721A, Pausable { /** * @dev See {ERC721A-_beforeTokenTransfers}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { super._beforeTokenTransfers(from, to, startTokenId, quantity); if (paused()) revert ContractPaused(); } } // File: contracts/DROIDzWORLD.sol pragma solidity >=0.8.0 <0.9.0; contract DROIDzCONTRACT is ERC721APausable, Ownable, ReentrancyGuard { uint256 public price = 0.18 ether; uint256 public maxSupply = 6670; uint256 public maxMintAmount = 1; bool public publicSaleActive = false; bool public preSaleActive = false; bool public reveal = false; uint256 private totalSupplyForTeam; uint256 private maxSupplyForTeam = 100; string private baseTokenURI = "https://droidzworld.mypinata.cloud/ipfs/QmRRQ8fYaCAgatUgFhHmavEtCAEE8MnMcR2nyxHp6qstKQ"; string private baseExtension = ".json"; bytes32 private merkleRoot = 0xb1a5fae8a4a1eb0d750bfb9d78434ad81a050a0d3266c09ed179c610c4101a95; mapping(address => uint256) private NFTMinters; mapping(address => uint256) private PreSaleMinters; constructor( string memory _name, string memory _symbol, string memory _baseTokenURI ) ERC721A(_name, _symbol) { baseTokenURI = _baseTokenURI; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } modifier publicSaleIsOpen { require(publicSaleActive, "Public Sale is not open"); _; } modifier preSaleIsOpen { require(preSaleActive, "Pre-Sale minting is not open"); _; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier isValidRequest(uint256 _mintAmount) { require((totalSupply() + _mintAmount) <= maxSupply, "Not Enough Left"); require((NFTMinters[msg.sender] + _mintAmount) <= maxMintAmount, "Over Max Mint Limit"); require(msg.value >= price * _mintAmount, "Amount of ether sent not correct."); _; } function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { require(_exists(tokenId),"URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); if(reveal == false) { return currentBaseURI; } return string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)); } // Used by web app for display function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } // Internal for marketing, devs, etc function internalMint(uint256 _mintAmount, address _to) external onlyOwner nonReentrant { require(totalSupplyForTeam + _mintAmount <= maxSupplyForTeam, "Exceeded max supply for team"); require(totalSupply() + _mintAmount <= maxSupply, "Exceeded max supply"); _safeMint(_to, _mintAmount); totalSupplyForTeam += _mintAmount; } // public mint function publicMint(uint256 _mintAmount) external payable publicSaleIsOpen callerIsUser isValidRequest(_mintAmount) nonReentrant { _safeMint(msg.sender, _mintAmount); NFTMinters[msg.sender] = NFTMinters[msg.sender] + _mintAmount; } // pre mint, merkle proofed function preSaleMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) external payable preSaleIsOpen isValidRequest(_mintAmount) nonReentrant { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof."); require((PreSaleMinters[msg.sender] + _mintAmount) <= maxMintAmount, "Over Max PreSale Limit"); _safeMint(msg.sender, _mintAmount); PreSaleMinters[msg.sender] = PreSaleMinters[msg.sender] + _mintAmount; } function preSaleBalance(address owner) external view returns (uint256) { return PreSaleMinters[owner]; } function publicSaleBalance(address owner) external view returns (uint256) { return NFTMinters[owner]; } // used by web app function verifyWLUser(bytes32[] calldata _merkleProof) public view returns(bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setMaxSupply(uint256 _newSupply) external onlyOwner { maxSupply = _newSupply; } function setMaxSupplyForTeam(uint256 _newSupply) external onlyOwner { maxSupplyForTeam = _newSupply; } function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner { maxMintAmount = _newMaxMintAmount; } function setBaseURI(string memory _newBaseURI, bool setRevealTrue) external onlyOwner { baseTokenURI = _newBaseURI; if (setRevealTrue) { reveal = setRevealTrue; } } function setPublicSaleActiveState(bool _state) external onlyOwner { publicSaleActive = _state; } function setPreSaleActiveState(bool _state) external onlyOwner { preSaleActive = _state; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No ether left to withdraw"); payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"preSaleBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicSaleBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"},{"internalType":"bool","name":"setRevealTrue","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupplyForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreSaleActiveState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleActiveState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyWLUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
67027f7d0bdb920000600a55611a0e600b556001600c55600d805462ffffff191690556064600f55610100604052605660808181529062002cf360a039805162000052916010916020909101906200019f565b5060408051808201909152600580825264173539b7b760d91b602090920191825262000081916011916200019f565b507fb1a5fae8a4a1eb0d750bfb9d78434ad81a050a0d3266c09ed179c610c4101a95601255348015620000b357600080fd5b5060405162002d4938038062002d49833981016040819052620000d69162000312565b825183908390620000ef9060029060208501906200019f565b508051620001059060039060208401906200019f565b506000805550506008805460ff19169055620001213362000145565b600160095580516200013b9060109060208401906200019f565b50505050620003df565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ad90620003a3565b90600052602060002090601f016020900481019282620001d157600085556200021c565b82601f10620001ec57805160ff19168380011785556200021c565b828001600101855582156200021c579182015b828111156200021c578251825591602001919060010190620001ff565b506200022a9291506200022e565b5090565b5b808211156200022a57600081556001016200022f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026d57600080fd5b81516001600160401b03808211156200028a576200028a62000245565b604051601f8301601f19908116603f01168101908282118183101715620002b557620002b562000245565b81604052838152602092508683858801011115620002d257600080fd5b600091505b83821015620002f65785820183015181830184015290820190620002d7565b83821115620003085760008385830101525b9695505050505050565b6000806000606084860312156200032857600080fd5b83516001600160401b03808211156200034057600080fd5b6200034e878388016200025b565b945060208601519150808211156200036557600080fd5b62000373878388016200025b565b935060408601519150808211156200038a57600080fd5b5062000399868287016200025b565b9150509250925092565b600181811c90821680620003b857607f821691505b602082108103620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b61290480620003ef6000396000f3fe6080604052600436106102515760003560e01c80638449470811610139578063b64b21ca116100b6578063d5abeb011161007a578063d5abeb01146106bc578063e32cb6d8146106d2578063e619bf63146106f2578063e985e9c514610712578063f2fde38b1461075b578063f9ef0f9d1461077b57600080fd5b8063b64b21ca14610622578063b88d4fde14610642578063bc75b75914610662578063bc8893b414610682578063c87b56dd1461069c57600080fd5b806395d89b41116100fd57806395d89b4114610597578063a035b1fe146105ac578063a22cb465146105c2578063a475b5dd146105e2578063a866a8a01461060257600080fd5b806384494708146104f35780638456cb59146105125780638462151c146105275780638da5cb5b1461055457806391b7f5ed1461057757600080fd5b80633f4ba83a116101d25780636b009da3116101965780636b009da3146104355780636f8b44b01461046b57806370a082311461048b578063715018a6146104ab57806378179976146104c05780637cb64759146104d357600080fd5b80633f4ba83a146103a857806342842e0e146103bd5780635c975abb146103dd5780636352211e146103f5578063689ae8d01461041557600080fd5b806318160ddd1161021957806318160ddd14610327578063239c70ae1461034a57806323b872dd146103605780632db11544146103805780633ccfd60b1461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063088a4ed0146102e5578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461219c565b6107b1565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610803565b6040516102829190612218565b3480156102b957600080fd5b506102cd6102c836600461222b565b610895565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461222b565b6108d9565b005b34801561031357600080fd5b50610305610322366004612260565b610917565b34801561033357600080fd5b50600154600054035b604051908152602001610282565b34801561035657600080fd5b5061033c600c5481565b34801561036c57600080fd5b5061030561037b36600461228a565b6109a4565b61030561038e36600461222b565b6109af565b34801561039f57600080fd5b50610305610ba0565b3480156103b457600080fd5b50610305610c4f565b3480156103c957600080fd5b506103056103d836600461228a565b610c89565b3480156103e957600080fd5b5060085460ff16610276565b34801561040157600080fd5b506102cd61041036600461222b565b610ca4565b34801561042157600080fd5b506103056104303660046122d6565b610cb6565b34801561044157600080fd5b5061033c6104503660046122f1565b6001600160a01b031660009081526014602052604090205490565b34801561047757600080fd5b5061030561048636600461222b565b610cf9565b34801561049757600080fd5b5061033c6104a63660046122f1565b610d2e565b3480156104b757600080fd5b50610305610d7c565b6103056104ce366004612357565b610db6565b3480156104df57600080fd5b506103056104ee36600461222b565b61107c565b3480156104ff57600080fd5b50600d5461027690610100900460ff1681565b34801561051e57600080fd5b506103056110b1565b34801561053357600080fd5b506105476105423660046122f1565b6110e9565b60405161028291906123a2565b34801561056057600080fd5b5060085461010090046001600160a01b03166102cd565b34801561058357600080fd5b5061030561059236600461222b565b61122e565b3480156105a357600080fd5b506102a0611263565b3480156105b857600080fd5b5061033c600a5481565b3480156105ce57600080fd5b506103056105dd3660046123da565b611272565b3480156105ee57600080fd5b50600d546102769062010000900460ff1681565b34801561060e57600080fd5b5061030561061d3660046122d6565b611307565b34801561062e57600080fd5b5061030561063d366004612498565b611351565b34801561064e57600080fd5b5061030561065d3660046124f0565b6113b6565b34801561066e57600080fd5b5061027661067d36600461256b565b611407565b34801561068e57600080fd5b50600d546102769060ff1681565b3480156106a857600080fd5b506102a06106b736600461222b565b61148b565b3480156106c857600080fd5b5061033c600b5481565b3480156106de57600080fd5b506103056106ed3660046125ac565b61153f565b3480156106fe57600080fd5b5061030561070d36600461222b565b61167e565b34801561071e57600080fd5b5061027661072d3660046125cf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076757600080fd5b506103056107763660046122f1565b6116b3565b34801561078757600080fd5b5061033c6107963660046122f1565b6001600160a01b031660009081526013602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107e257506001600160e01b03198216635b5e139f60e01b145b806107fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610812906125f9565b80601f016020809104026020016040519081016040528092919081815260200182805461083e906125f9565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611754565b6108bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b036101009091041633146109125760405162461bcd60e51b815260040161090990612633565b60405180910390fd5b600c55565b600061092282610ca4565b9050806001600160a01b0316836001600160a01b0316036109565760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109765750610974813361072d565b155b15610994576040516367d9dca160e11b815260040160405180910390fd5b61099f83838361177f565b505050565b61099f8383836117db565b600d5460ff16610a015760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65206973206e6f74206f70656e0000000000000000006044820152606401610909565b323314610a505760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610909565b80600b5481610a626001546000540390565b610a6c919061267e565b1115610aac5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610909565b600c5433600090815260136020526040902054610aca90839061267e565b1115610b0e5760405162461bcd60e51b815260206004820152601360248201527213dd995c8813585e08135a5b9d08131a5b5a5d606a1b6044820152606401610909565b80600a54610b1c9190612696565b341015610b3b5760405162461bcd60e51b8152600401610909906126b5565b600260095403610b5d5760405162461bcd60e51b8152600401610909906126f6565b6002600955610b6c33836119d5565b33600090815260136020526040902054610b8790839061267e565b3360009081526013602052604090205550506001600955565b6008546001600160a01b03610100909104163314610bd05760405162461bcd60e51b815260040161090990612633565b4780610c1e5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610909565b604051339082156108fc029083906000818181858888f19350505050158015610c4b573d6000803e3d6000fd5b5050565b6008546001600160a01b03610100909104163314610c7f5760405162461bcd60e51b815260040161090990612633565b610c876119ef565b565b61099f838383604051806020016040528060008152506113b6565b6000610caf82611a82565b5192915050565b6008546001600160a01b03610100909104163314610ce65760405162461bcd60e51b815260040161090990612633565b600d805460ff1916911515919091179055565b6008546001600160a01b03610100909104163314610d295760405162461bcd60e51b815260040161090990612633565b600b55565b60006001600160a01b038216610d57576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03610100909104163314610dac5760405162461bcd60e51b815260040161090990612633565b610c876000611b9c565b600d54610100900460ff16610e0d5760405162461bcd60e51b815260206004820152601c60248201527f5072652d53616c65206d696e74696e67206973206e6f74206f70656e000000006044820152606401610909565b80600b5481610e1f6001546000540390565b610e29919061267e565b1115610e695760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610909565b600c5433600090815260136020526040902054610e8790839061267e565b1115610ecb5760405162461bcd60e51b815260206004820152601360248201527213dd995c8813585e08135a5b9d08131a5b5a5d606a1b6044820152606401610909565b80600a54610ed99190612696565b341015610ef85760405162461bcd60e51b8152600401610909906126b5565b600260095403610f1a5760405162461bcd60e51b8152600401610909906126f6565b60026009556040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f99858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bf6565b610fd65760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610909565b600c5433600090815260146020526040902054610ff490859061267e565b111561103b5760405162461bcd60e51b815260206004820152601660248201527513dd995c8813585e08141c9954d85b1948131a5b5a5d60521b6044820152606401610909565b61104533846119d5565b3360009081526014602052604090205461106090849061267e565b3360009081526014602052604090205550506001600955505050565b6008546001600160a01b036101009091041633146110ac5760405162461bcd60e51b815260040161090990612633565b601255565b6008546001600160a01b036101009091041633146110e15760405162461bcd60e51b815260040161090990612633565b610c87611c0c565b606060008060006110f985610d2e565b90506000816001600160401b038111156111155761111561240d565b60405190808252806020026020018201604052801561113e578160200160208202803683370190505b509050611164604080516060810182526000808252602082018190529181019190915290565b60005b83861461122257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052925061121a5781516001600160a01b0316156111db57815194505b876001600160a01b0316856001600160a01b03160361121a578083878060010198508151811061120d5761120d61272d565b6020026020010181815250505b600101611167565b50909695505050505050565b6008546001600160a01b0361010090910416331461125e5760405162461bcd60e51b815260040161090990612633565b600a55565b606060038054610812906125f9565b336001600160a01b0383160361129b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b036101009091041633146113375760405162461bcd60e51b815260040161090990612633565b600d80549115156101000261ff0019909216919091179055565b6008546001600160a01b036101009091041633146113815760405162461bcd60e51b815260040161090990612633565b81516113949060109060208501906120ed565b508015610c4b57600d8054821515620100000262ff0000199091161790555050565b6113c18484846117db565b6001600160a01b0383163b151580156113e357506113e184848484611c87565b155b15611401576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611483848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bf6565b949350505050565b606061149682611754565b6114e25760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610909565b60006114ec611d72565b600d5490915062010000900460ff16151560000361150a5792915050565b8061151484611d81565b601160405160200161152893929190612743565b604051602081830303815290604052915050919050565b6008546001600160a01b0361010090910416331461156f5760405162461bcd60e51b815260040161090990612633565b6002600954036115915760405162461bcd60e51b8152600401610909906126f6565b6002600955600f54600e546115a790849061267e565b11156115f55760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d617820737570706c7920666f72207465616d000000006044820152606401610909565b600b54826116066001546000540390565b611610919061267e565b11156116545760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b6044820152606401610909565b61165e81836119d5565b81600e6000828254611670919061267e565b909155505060016009555050565b6008546001600160a01b036101009091041633146116ae5760405162461bcd60e51b815260040161090990612633565b600f55565b6008546001600160a01b036101009091041633146116e35760405162461bcd60e51b815260040161090990612633565b6001600160a01b0381166117485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610909565b61175181611b9c565b50565b60008054821080156107fd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117e682611a82565b9050836001600160a01b031681600001516001600160a01b03161461181d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061183b575061183b853361072d565b8061185657503361184b84610895565b6001600160a01b0316145b90508061187657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661189d57604051633a954ecd60e21b815260040160405180910390fd5b6118aa8585856001611e81565b6118b66000848761177f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661198a57600054821461198a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c4b828260405180602001604052806000815250611ea5565b60085460ff16611a385760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610909565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281600054811015611b8357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b815780516001600160a01b031615611b18579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b7c579392505050565b611b18565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611c038584612079565b14949350505050565b60085460ff1615611c525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610909565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a653390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cbc903390899088908890600401612806565b6020604051808303816000875af1925050508015611cf7575060408051601f3d908101601f19168201909252611cf491810190612843565b60015b611d55573d808015611d25576040519150601f19603f3d011682016040523d82523d6000602084013e611d2a565b606091505b508051600003611d4d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060108054610812906125f9565b606081600003611da85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd25780611dbc81612860565b9150611dcb9050600a8361288f565b9150611dac565b6000816001600160401b03811115611dec57611dec61240d565b6040519080825280601f01601f191660200182016040528015611e16576020820181803683370190505b5090505b841561148357611e2b6001836128a3565b9150611e38600a866128ba565b611e4390603061267e565b60f81b818381518110611e5857611e5861272d565b60200101906001600160f81b031916908160001a905350611e7a600a8661288f565b9450611e1a565b60085460ff16156114015760405163ab35696f60e01b815260040160405180910390fd5b6000546001600160a01b038416611ece57604051622e076360e81b815260040160405180910390fd5b82600003611eef5760405163b562e8dd60e01b815260040160405180910390fd5b611efc6000858386611e81565b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612024575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fed6000878480600101955087611c87565b61200a576040516368d2bf6b60e11b815260040160405180910390fd5b808203611fa257826000541461201f57600080fd5b612069565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612025575b5060009081556114019085838684565b600081815b84518110156120e557600085828151811061209b5761209b61272d565b602002602001015190508083116120c157600083815260208290526040902092506120d2565b600081815260208490526040902092505b50806120dd81612860565b91505061207e565b509392505050565b8280546120f9906125f9565b90600052602060002090601f01602090048101928261211b5760008555612161565b82601f1061213457805160ff1916838001178555612161565b82800160010185558215612161579182015b82811115612161578251825591602001919060010190612146565b5061216d929150612171565b5090565b5b8082111561216d5760008155600101612172565b6001600160e01b03198116811461175157600080fd5b6000602082840312156121ae57600080fd5b81356121b981612186565b9392505050565b60005b838110156121db5781810151838201526020016121c3565b838111156114015750506000910152565b600081518084526122048160208601602086016121c0565b601f01601f19169290920160200192915050565b6020815260006121b960208301846121ec565b60006020828403121561223d57600080fd5b5035919050565b80356001600160a01b038116811461225b57600080fd5b919050565b6000806040838503121561227357600080fd5b61227c83612244565b946020939093013593505050565b60008060006060848603121561229f57600080fd5b6122a884612244565b92506122b660208501612244565b9150604084013590509250925092565b8035801515811461225b57600080fd5b6000602082840312156122e857600080fd5b6121b9826122c6565b60006020828403121561230357600080fd5b6121b982612244565b60008083601f84011261231e57600080fd5b5081356001600160401b0381111561233557600080fd5b6020830191508360208260051b850101111561235057600080fd5b9250929050565b60008060006040848603121561236c57600080fd5b83356001600160401b0381111561238257600080fd5b61238e8682870161230c565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015611222578351835292840192918401916001016123be565b600080604083850312156123ed57600080fd5b6123f683612244565b9150612404602084016122c6565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561243d5761243d61240d565b604051601f8501601f19908116603f011681019082821181831017156124655761246561240d565b8160405280935085815286868601111561247e57600080fd5b858560208301376000602087830101525050509392505050565b600080604083850312156124ab57600080fd5b82356001600160401b038111156124c157600080fd5b8301601f810185136124d257600080fd5b6124e185823560208401612423565b925050612404602084016122c6565b6000806000806080858703121561250657600080fd5b61250f85612244565b935061251d60208601612244565b92506040850135915060608501356001600160401b0381111561253f57600080fd5b8501601f8101871361255057600080fd5b61255f87823560208401612423565b91505092959194509250565b6000806020838503121561257e57600080fd5b82356001600160401b0381111561259457600080fd5b6125a08582860161230c565b90969095509350505050565b600080604083850312156125bf57600080fd5b8235915061240460208401612244565b600080604083850312156125e257600080fd5b6125eb83612244565b915061240460208401612244565b600181811c9082168061260d57607f821691505b60208210810361262d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561269157612691612668565b500190565b60008160001904831182151516156126b0576126b0612668565b500290565b60208082526021908201527f416d6f756e74206f662065746865722073656e74206e6f7420636f72726563746040820152601760f91b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000845160206127568285838a016121c0565b8551918401916127698184848a016121c0565b8554920191600090600181811c908083168061278657607f831692505b85831081036127a357634e487b7160e01b85526022600452602485fd5b8080156127b757600181146127c8576127f5565b60ff198516885283880195506127f5565b60008b81526020902060005b858110156127ed5781548a8201529084019088016127d4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612839908301846121ec565b9695505050505050565b60006020828403121561285557600080fd5b81516121b981612186565b60006001820161287257612872612668565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261289e5761289e612879565b500490565b6000828210156128b5576128b5612668565b500390565b6000826128c9576128c9612879565b50069056fea26469706673582212201a25937d0754c04d98820b31606d30c839a3523d41057222a5abc89b3808ff7a64736f6c634300080d003368747470733a2f2f64726f69647a776f726c642e6d7970696e6174612e636c6f75642f697066732f516d52525138665961434167617455674668486d6176457443414545384d6e4d6352326e79784870367173744b51000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001444524f49447a574f524c442d4f4646494349414c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003447a570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f64726f69647a776f726c642e6d7970696e6174612e636c6f75642f697066732f516d52525138665961434167617455674668486d6176457443414545384d6e4d6352326e79784870367173744b5100000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80638449470811610139578063b64b21ca116100b6578063d5abeb011161007a578063d5abeb01146106bc578063e32cb6d8146106d2578063e619bf63146106f2578063e985e9c514610712578063f2fde38b1461075b578063f9ef0f9d1461077b57600080fd5b8063b64b21ca14610622578063b88d4fde14610642578063bc75b75914610662578063bc8893b414610682578063c87b56dd1461069c57600080fd5b806395d89b41116100fd57806395d89b4114610597578063a035b1fe146105ac578063a22cb465146105c2578063a475b5dd146105e2578063a866a8a01461060257600080fd5b806384494708146104f35780638456cb59146105125780638462151c146105275780638da5cb5b1461055457806391b7f5ed1461057757600080fd5b80633f4ba83a116101d25780636b009da3116101965780636b009da3146104355780636f8b44b01461046b57806370a082311461048b578063715018a6146104ab57806378179976146104c05780637cb64759146104d357600080fd5b80633f4ba83a146103a857806342842e0e146103bd5780635c975abb146103dd5780636352211e146103f5578063689ae8d01461041557600080fd5b806318160ddd1161021957806318160ddd14610327578063239c70ae1461034a57806323b872dd146103605780632db11544146103805780633ccfd60b1461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063088a4ed0146102e5578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461219c565b6107b1565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610803565b6040516102829190612218565b3480156102b957600080fd5b506102cd6102c836600461222b565b610895565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461222b565b6108d9565b005b34801561031357600080fd5b50610305610322366004612260565b610917565b34801561033357600080fd5b50600154600054035b604051908152602001610282565b34801561035657600080fd5b5061033c600c5481565b34801561036c57600080fd5b5061030561037b36600461228a565b6109a4565b61030561038e36600461222b565b6109af565b34801561039f57600080fd5b50610305610ba0565b3480156103b457600080fd5b50610305610c4f565b3480156103c957600080fd5b506103056103d836600461228a565b610c89565b3480156103e957600080fd5b5060085460ff16610276565b34801561040157600080fd5b506102cd61041036600461222b565b610ca4565b34801561042157600080fd5b506103056104303660046122d6565b610cb6565b34801561044157600080fd5b5061033c6104503660046122f1565b6001600160a01b031660009081526014602052604090205490565b34801561047757600080fd5b5061030561048636600461222b565b610cf9565b34801561049757600080fd5b5061033c6104a63660046122f1565b610d2e565b3480156104b757600080fd5b50610305610d7c565b6103056104ce366004612357565b610db6565b3480156104df57600080fd5b506103056104ee36600461222b565b61107c565b3480156104ff57600080fd5b50600d5461027690610100900460ff1681565b34801561051e57600080fd5b506103056110b1565b34801561053357600080fd5b506105476105423660046122f1565b6110e9565b60405161028291906123a2565b34801561056057600080fd5b5060085461010090046001600160a01b03166102cd565b34801561058357600080fd5b5061030561059236600461222b565b61122e565b3480156105a357600080fd5b506102a0611263565b3480156105b857600080fd5b5061033c600a5481565b3480156105ce57600080fd5b506103056105dd3660046123da565b611272565b3480156105ee57600080fd5b50600d546102769062010000900460ff1681565b34801561060e57600080fd5b5061030561061d3660046122d6565b611307565b34801561062e57600080fd5b5061030561063d366004612498565b611351565b34801561064e57600080fd5b5061030561065d3660046124f0565b6113b6565b34801561066e57600080fd5b5061027661067d36600461256b565b611407565b34801561068e57600080fd5b50600d546102769060ff1681565b3480156106a857600080fd5b506102a06106b736600461222b565b61148b565b3480156106c857600080fd5b5061033c600b5481565b3480156106de57600080fd5b506103056106ed3660046125ac565b61153f565b3480156106fe57600080fd5b5061030561070d36600461222b565b61167e565b34801561071e57600080fd5b5061027661072d3660046125cf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076757600080fd5b506103056107763660046122f1565b6116b3565b34801561078757600080fd5b5061033c6107963660046122f1565b6001600160a01b031660009081526013602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107e257506001600160e01b03198216635b5e139f60e01b145b806107fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610812906125f9565b80601f016020809104026020016040519081016040528092919081815260200182805461083e906125f9565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a082611754565b6108bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b036101009091041633146109125760405162461bcd60e51b815260040161090990612633565b60405180910390fd5b600c55565b600061092282610ca4565b9050806001600160a01b0316836001600160a01b0316036109565760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109765750610974813361072d565b155b15610994576040516367d9dca160e11b815260040160405180910390fd5b61099f83838361177f565b505050565b61099f8383836117db565b600d5460ff16610a015760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65206973206e6f74206f70656e0000000000000000006044820152606401610909565b323314610a505760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610909565b80600b5481610a626001546000540390565b610a6c919061267e565b1115610aac5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610909565b600c5433600090815260136020526040902054610aca90839061267e565b1115610b0e5760405162461bcd60e51b815260206004820152601360248201527213dd995c8813585e08135a5b9d08131a5b5a5d606a1b6044820152606401610909565b80600a54610b1c9190612696565b341015610b3b5760405162461bcd60e51b8152600401610909906126b5565b600260095403610b5d5760405162461bcd60e51b8152600401610909906126f6565b6002600955610b6c33836119d5565b33600090815260136020526040902054610b8790839061267e565b3360009081526013602052604090205550506001600955565b6008546001600160a01b03610100909104163314610bd05760405162461bcd60e51b815260040161090990612633565b4780610c1e5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610909565b604051339082156108fc029083906000818181858888f19350505050158015610c4b573d6000803e3d6000fd5b5050565b6008546001600160a01b03610100909104163314610c7f5760405162461bcd60e51b815260040161090990612633565b610c876119ef565b565b61099f838383604051806020016040528060008152506113b6565b6000610caf82611a82565b5192915050565b6008546001600160a01b03610100909104163314610ce65760405162461bcd60e51b815260040161090990612633565b600d805460ff1916911515919091179055565b6008546001600160a01b03610100909104163314610d295760405162461bcd60e51b815260040161090990612633565b600b55565b60006001600160a01b038216610d57576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03610100909104163314610dac5760405162461bcd60e51b815260040161090990612633565b610c876000611b9c565b600d54610100900460ff16610e0d5760405162461bcd60e51b815260206004820152601c60248201527f5072652d53616c65206d696e74696e67206973206e6f74206f70656e000000006044820152606401610909565b80600b5481610e1f6001546000540390565b610e29919061267e565b1115610e695760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610909565b600c5433600090815260136020526040902054610e8790839061267e565b1115610ecb5760405162461bcd60e51b815260206004820152601360248201527213dd995c8813585e08135a5b9d08131a5b5a5d606a1b6044820152606401610909565b80600a54610ed99190612696565b341015610ef85760405162461bcd60e51b8152600401610909906126b5565b600260095403610f1a5760405162461bcd60e51b8152600401610909906126f6565b60026009556040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f99858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bf6565b610fd65760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610909565b600c5433600090815260146020526040902054610ff490859061267e565b111561103b5760405162461bcd60e51b815260206004820152601660248201527513dd995c8813585e08141c9954d85b1948131a5b5a5d60521b6044820152606401610909565b61104533846119d5565b3360009081526014602052604090205461106090849061267e565b3360009081526014602052604090205550506001600955505050565b6008546001600160a01b036101009091041633146110ac5760405162461bcd60e51b815260040161090990612633565b601255565b6008546001600160a01b036101009091041633146110e15760405162461bcd60e51b815260040161090990612633565b610c87611c0c565b606060008060006110f985610d2e565b90506000816001600160401b038111156111155761111561240d565b60405190808252806020026020018201604052801561113e578160200160208202803683370190505b509050611164604080516060810182526000808252602082018190529181019190915290565b60005b83861461122257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052925061121a5781516001600160a01b0316156111db57815194505b876001600160a01b0316856001600160a01b03160361121a578083878060010198508151811061120d5761120d61272d565b6020026020010181815250505b600101611167565b50909695505050505050565b6008546001600160a01b0361010090910416331461125e5760405162461bcd60e51b815260040161090990612633565b600a55565b606060038054610812906125f9565b336001600160a01b0383160361129b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b036101009091041633146113375760405162461bcd60e51b815260040161090990612633565b600d80549115156101000261ff0019909216919091179055565b6008546001600160a01b036101009091041633146113815760405162461bcd60e51b815260040161090990612633565b81516113949060109060208501906120ed565b508015610c4b57600d8054821515620100000262ff0000199091161790555050565b6113c18484846117db565b6001600160a01b0383163b151580156113e357506113e184848484611c87565b155b15611401576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611483848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bf6565b949350505050565b606061149682611754565b6114e25760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610909565b60006114ec611d72565b600d5490915062010000900460ff16151560000361150a5792915050565b8061151484611d81565b601160405160200161152893929190612743565b604051602081830303815290604052915050919050565b6008546001600160a01b0361010090910416331461156f5760405162461bcd60e51b815260040161090990612633565b6002600954036115915760405162461bcd60e51b8152600401610909906126f6565b6002600955600f54600e546115a790849061267e565b11156115f55760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d617820737570706c7920666f72207465616d000000006044820152606401610909565b600b54826116066001546000540390565b611610919061267e565b11156116545760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b6044820152606401610909565b61165e81836119d5565b81600e6000828254611670919061267e565b909155505060016009555050565b6008546001600160a01b036101009091041633146116ae5760405162461bcd60e51b815260040161090990612633565b600f55565b6008546001600160a01b036101009091041633146116e35760405162461bcd60e51b815260040161090990612633565b6001600160a01b0381166117485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610909565b61175181611b9c565b50565b60008054821080156107fd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117e682611a82565b9050836001600160a01b031681600001516001600160a01b03161461181d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061183b575061183b853361072d565b8061185657503361184b84610895565b6001600160a01b0316145b90508061187657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661189d57604051633a954ecd60e21b815260040160405180910390fd5b6118aa8585856001611e81565b6118b66000848761177f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661198a57600054821461198a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c4b828260405180602001604052806000815250611ea5565b60085460ff16611a385760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610909565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281600054811015611b8357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b815780516001600160a01b031615611b18579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b7c579392505050565b611b18565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611c038584612079565b14949350505050565b60085460ff1615611c525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610909565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a653390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cbc903390899088908890600401612806565b6020604051808303816000875af1925050508015611cf7575060408051601f3d908101601f19168201909252611cf491810190612843565b60015b611d55573d808015611d25576040519150601f19603f3d011682016040523d82523d6000602084013e611d2a565b606091505b508051600003611d4d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060108054610812906125f9565b606081600003611da85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd25780611dbc81612860565b9150611dcb9050600a8361288f565b9150611dac565b6000816001600160401b03811115611dec57611dec61240d565b6040519080825280601f01601f191660200182016040528015611e16576020820181803683370190505b5090505b841561148357611e2b6001836128a3565b9150611e38600a866128ba565b611e4390603061267e565b60f81b818381518110611e5857611e5861272d565b60200101906001600160f81b031916908160001a905350611e7a600a8661288f565b9450611e1a565b60085460ff16156114015760405163ab35696f60e01b815260040160405180910390fd5b6000546001600160a01b038416611ece57604051622e076360e81b815260040160405180910390fd5b82600003611eef5760405163b562e8dd60e01b815260040160405180910390fd5b611efc6000858386611e81565b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612024575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fed6000878480600101955087611c87565b61200a576040516368d2bf6b60e11b815260040160405180910390fd5b808203611fa257826000541461201f57600080fd5b612069565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612025575b5060009081556114019085838684565b600081815b84518110156120e557600085828151811061209b5761209b61272d565b602002602001015190508083116120c157600083815260208290526040902092506120d2565b600081815260208490526040902092505b50806120dd81612860565b91505061207e565b509392505050565b8280546120f9906125f9565b90600052602060002090601f01602090048101928261211b5760008555612161565b82601f1061213457805160ff1916838001178555612161565b82800160010185558215612161579182015b82811115612161578251825591602001919060010190612146565b5061216d929150612171565b5090565b5b8082111561216d5760008155600101612172565b6001600160e01b03198116811461175157600080fd5b6000602082840312156121ae57600080fd5b81356121b981612186565b9392505050565b60005b838110156121db5781810151838201526020016121c3565b838111156114015750506000910152565b600081518084526122048160208601602086016121c0565b601f01601f19169290920160200192915050565b6020815260006121b960208301846121ec565b60006020828403121561223d57600080fd5b5035919050565b80356001600160a01b038116811461225b57600080fd5b919050565b6000806040838503121561227357600080fd5b61227c83612244565b946020939093013593505050565b60008060006060848603121561229f57600080fd5b6122a884612244565b92506122b660208501612244565b9150604084013590509250925092565b8035801515811461225b57600080fd5b6000602082840312156122e857600080fd5b6121b9826122c6565b60006020828403121561230357600080fd5b6121b982612244565b60008083601f84011261231e57600080fd5b5081356001600160401b0381111561233557600080fd5b6020830191508360208260051b850101111561235057600080fd5b9250929050565b60008060006040848603121561236c57600080fd5b83356001600160401b0381111561238257600080fd5b61238e8682870161230c565b909790965060209590950135949350505050565b6020808252825182820181905260009190848201906040850190845b81811015611222578351835292840192918401916001016123be565b600080604083850312156123ed57600080fd5b6123f683612244565b9150612404602084016122c6565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561243d5761243d61240d565b604051601f8501601f19908116603f011681019082821181831017156124655761246561240d565b8160405280935085815286868601111561247e57600080fd5b858560208301376000602087830101525050509392505050565b600080604083850312156124ab57600080fd5b82356001600160401b038111156124c157600080fd5b8301601f810185136124d257600080fd5b6124e185823560208401612423565b925050612404602084016122c6565b6000806000806080858703121561250657600080fd5b61250f85612244565b935061251d60208601612244565b92506040850135915060608501356001600160401b0381111561253f57600080fd5b8501601f8101871361255057600080fd5b61255f87823560208401612423565b91505092959194509250565b6000806020838503121561257e57600080fd5b82356001600160401b0381111561259457600080fd5b6125a08582860161230c565b90969095509350505050565b600080604083850312156125bf57600080fd5b8235915061240460208401612244565b600080604083850312156125e257600080fd5b6125eb83612244565b915061240460208401612244565b600181811c9082168061260d57607f821691505b60208210810361262d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561269157612691612668565b500190565b60008160001904831182151516156126b0576126b0612668565b500290565b60208082526021908201527f416d6f756e74206f662065746865722073656e74206e6f7420636f72726563746040820152601760f91b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000845160206127568285838a016121c0565b8551918401916127698184848a016121c0565b8554920191600090600181811c908083168061278657607f831692505b85831081036127a357634e487b7160e01b85526022600452602485fd5b8080156127b757600181146127c8576127f5565b60ff198516885283880195506127f5565b60008b81526020902060005b858110156127ed5781548a8201529084019088016127d4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612839908301846121ec565b9695505050505050565b60006020828403121561285557600080fd5b81516121b981612186565b60006001820161287257612872612668565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261289e5761289e612879565b500490565b6000828210156128b5576128b5612668565b500390565b6000826128c9576128c9612879565b50069056fea26469706673582212201a25937d0754c04d98820b31606d30c839a3523d41057222a5abc89b3808ff7a64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001444524f49447a574f524c442d4f4646494349414c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003447a570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f64726f69647a776f726c642e6d7970696e6174612e636c6f75642f697066732f516d52525138665961434167617455674668486d6176457443414545384d6e4d6352326e79784870367173744b5100000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DROIDzWORLD-OFFICIAL
Arg [1] : _symbol (string): DzW
Arg [2] : _baseTokenURI (string): https://droidzworld.mypinata.cloud/ipfs/QmRRQ8fYaCAgatUgFhHmavEtCAEE8MnMcR2nyxHp6qstKQ
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 44524f49447a574f524c442d4f4646494349414c000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 447a570000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [8] : 68747470733a2f2f64726f69647a776f726c642e6d7970696e6174612e636c6f
Arg [9] : 75642f697066732f516d52525138665961434167617455674668486d61764574
Arg [10] : 43414545384d6e4d6352326e79784870367173744b5100000000000000000000
Deployed Bytecode Sourcemap
57698:5957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37767:305;;;;;;;;;;-1:-1:-1;37767:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37767:305:0;;;;;;;;40880:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42383:204::-;;;;;;;;;;-1:-1:-1;42383:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;42383:204:0;1528:203:1;62686:118:0;;;;;;;;;;-1:-1:-1;62686:118:0;;;;;:::i;:::-;;:::i;:::-;;41946:371;;;;;;;;;;-1:-1:-1;41946:371:0;;;;;:::i;:::-;;:::i;37016:303::-;;;;;;;;;;-1:-1:-1;37270:12:0;;37060:7;37254:13;:28;37016:303;;;2319:25:1;;;2307:2;2292:18;37016:303:0;2173:177:1;57848:32:0;;;;;;;;;;;;;;;;43248:170;;;;;;;;;;-1:-1:-1;43248:170:0;;;;;:::i;:::-;;:::i;61085:248::-;;;;;;:::i;:::-;;:::i;63461:191::-;;;;;;;;;;;;;:::i;63392:61::-;;;;;;;;;;;;;:::i;43489:185::-;;;;;;;;;;-1:-1:-1;43489:185:0;;;;;:::i;:::-;;:::i;15116:86::-;;;;;;;;;;-1:-1:-1;15187:7:0;;;;15116:86;;40688:125;;;;;;;;;;-1:-1:-1;40688:125:0;;;;;:::i;:::-;;:::i;63005:104::-;;;;;;;;;;-1:-1:-1;63005:104:0;;;;;:::i;:::-;;:::i;61898:112::-;;;;;;;;;;-1:-1:-1;61898:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;61983:21:0;61960:7;61983:21;;;:14;:21;;;;;;;61898:112;62468:96;;;;;;;;;;-1:-1:-1;62468:96:0;;;;;:::i;:::-;;:::i;38136:206::-;;;;;;;;;;-1:-1:-1;38136:206:0;;;;;:::i;:::-;;:::i;13167:103::-;;;;;;;;;;;;;:::i;61370:522::-;;;;;;:::i;:::-;;:::i;63221:100::-;;;;;;;;;;-1:-1:-1;63221:100:0;;;;;:::i;:::-;;:::i;57928:33::-;;;;;;;;;;-1:-1:-1;57928:33:0;;;;;;;;;;;63327:57;;;;;;;;;;;;;:::i;59818:842::-;;;;;;;;;;-1:-1:-1;59818:842:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12516:87::-;;;;;;;;;;-1:-1:-1;12589:6:0;;;;;-1:-1:-1;;;;;12589:6:0;12516:87;;62375:86;;;;;;;;;;-1:-1:-1;62375:86:0;;;;;:::i;:::-;;:::i;41049:104::-;;;;;;;;;;;;;:::i;57774:33::-;;;;;;;;;;;;;;;;42659:287;;;;;;;;;;-1:-1:-1;42659:287:0;;;;;:::i;:::-;;:::i;57966:26::-;;;;;;;;;;-1:-1:-1;57966:26:0;;;;;;;;;;;63117:98;;;;;;;;;;-1:-1:-1;63117:98:0;;;;;:::i;:::-;;:::i;62810:189::-;;;;;;;;;;-1:-1:-1;62810:189:0;;;;;:::i;:::-;;:::i;43745:369::-;;;;;;;;;;-1:-1:-1;43745:369:0;;;;;:::i;:::-;;:::i;62157:212::-;;;;;;;;;;-1:-1:-1;62157:212:0;;;;;:::i;:::-;;:::i;57887:36::-;;;;;;;;;;-1:-1:-1;57887:36:0;;;;;;;;59397:381;;;;;;;;;;-1:-1:-1;59397:381:0;;;;;:::i;:::-;;:::i;57812:31::-;;;;;;;;;;;;;;;;60706:355;;;;;;;;;;-1:-1:-1;60706:355:0;;;;;:::i;:::-;;:::i;62570:110::-;;;;;;;;;;-1:-1:-1;62570:110:0;;;;;:::i;:::-;;:::i;43017:164::-;;;;;;;;;;-1:-1:-1;43017:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43138:25:0;;;43114:4;43138:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43017:164;13425:201;;;;;;;;;;-1:-1:-1;13425:201:0;;;;;:::i;:::-;;:::i;62018:111::-;;;;;;;;;;-1:-1:-1;62018:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;62106:17:0;62083:7;62106:17;;;:10;:17;;;;;;;62018:111;37767:305;37869:4;-1:-1:-1;;;;;;37906:40:0;;-1:-1:-1;;;37906:40:0;;:105;;-1:-1:-1;;;;;;;37963:48:0;;-1:-1:-1;;;37963:48:0;37906:105;:158;;;-1:-1:-1;;;;;;;;;;27727:40:0;;;38028:36;37886:178;37767:305;-1:-1:-1;;37767:305:0:o;40880:100::-;40934:13;40967:5;40960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40880:100;:::o;42383:204::-;42451:7;42476:16;42484:7;42476;:16::i;:::-;42471:64;;42501:34;;-1:-1:-1;;;42501:34:0;;;;;;;;;;;42471:64;-1:-1:-1;42555:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42555:24:0;;42383:204::o;62686:118::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;;;;;;;;;62765:13:::1;:33:::0;62686:118::o;41946:371::-;42019:13;42035:24;42051:7;42035:15;:24::i;:::-;42019:40;;42080:5;-1:-1:-1;;;;;42074:11:0;:2;-1:-1:-1;;;;;42074:11:0;;42070:48;;42094:24;;-1:-1:-1;;;42094:24:0;;;;;;;;;;;42070:48;11320:10;-1:-1:-1;;;;;42135:21:0;;;;;;:63;;-1:-1:-1;42161:37:0;42178:5;11320:10;43017:164;:::i;42161:37::-;42160:38;42135:63;42131:138;;;42222:35;;-1:-1:-1;;;42222:35:0;;;;;;;;;;;42131:138;42281:28;42290:2;42294:7;42303:5;42281:8;:28::i;:::-;42008:309;41946:371;;:::o;43248:170::-;43382:28;43392:4;43398:2;43402:7;43382:9;:28::i;61085:248::-;58789:16;;;;58781:52;;;;-1:-1:-1;;;58781:52:0;;9075:2:1;58781:52:0;;;9057:21:1;9114:2;9094:18;;;9087:30;9153:25;9133:18;;;9126:53;9196:18;;58781:52:0;8873:347:1;58781:52:0;58996:9:::1;59009:10;58996:23;58988:66;;;::::0;-1:-1:-1;;;58988:66:0;;9427:2:1;58988:66:0::1;::::0;::::1;9409:21:1::0;9466:2;9446:18;;;9439:30;9505:32;9485:18;;;9478:60;9555:18;;58988:66:0::1;9225:354:1::0;58988:66:0::1;61188:11:::2;59169:9;;59153:11;59137:13;37270:12:::0;;37060:7;37254:13;:28;;37016:303;59137:13:::2;:27;;;;:::i;:::-;59136:42;;59128:70;;;::::0;-1:-1:-1;;;59128:70:0;;10051:2:1;59128:70:0::2;::::0;::::2;10033:21:1::0;10090:2;10070:18;;;10063:30;-1:-1:-1;;;10109:18:1;;;10102:45;10164:18;;59128:70:0::2;9849:339:1::0;59128:70:0::2;59255:13;::::0;59225:10:::2;59214:22;::::0;;;:10:::2;:22;::::0;;;;;:36:::2;::::0;59239:11;;59214:36:::2;:::i;:::-;59213:55;;59205:87;;;::::0;-1:-1:-1;;;59205:87:0;;10395:2:1;59205:87:0::2;::::0;::::2;10377:21:1::0;10434:2;10414:18;;;10407:30;-1:-1:-1;;;10453:18:1;;;10446:49;10512:18;;59205:87:0::2;10193:343:1::0;59205:87:0::2;59328:11;59320:5;;:19;;;;:::i;:::-;59307:9;:32;;59299:78;;;;-1:-1:-1::0;;;59299:78:0::2;;;;;;;:::i;:::-;7490:1:::3;8088:7;;:19:::0;8080:63:::3;;;;-1:-1:-1::0;;;8080:63:0::3;;;;;;;:::i;:::-;7490:1;8221:7;:18:::0;61223:34:::4;61233:10;61245:11:::0;61223:9:::4;:34::i;:::-;61302:10;61291:22;::::0;;;:10:::4;:22;::::0;;;;;:36:::4;::::0;61316:11;;61291:36:::4;:::i;:::-;61277:10;61266:22;::::0;;;:10:::4;:22;::::0;;;;:61;-1:-1:-1;;7446:1:0::3;8400:7;:22:::0;61085:248::o;63461:191::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63525:21:::1;63561:11:::0;63553:49:::1;;;::::0;-1:-1:-1;;;63553:49:0;;11678:2:1;63553:49:0::1;::::0;::::1;11660:21:1::0;11717:2;11697:18;;;11690:30;11756:27;11736:18;;;11729:55;11801:18;;63553:49:0::1;11476:349:1::0;63553:49:0::1;63609:37;::::0;63617:10:::1;::::0;63609:37;::::1;;;::::0;63638:7;;63609:37:::1;::::0;;;63638:7;63617:10;63609:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;63500:152;63461:191::o:0;63392:61::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63437:10:::1;:8;:10::i;:::-;63392:61::o:0;43489:185::-;43627:39;43644:4;43650:2;43654:7;43627:39;;;;;;;;;;;;:16;:39::i;40688:125::-;40752:7;40779:21;40792:7;40779:12;:21::i;:::-;:26;;40688:125;-1:-1:-1;;40688:125:0:o;63005:104::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63078:16:::1;:25:::0;;-1:-1:-1;;63078:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63005:104::o;62468:96::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;62536:9:::1;:22:::0;62468:96::o;38136:206::-;38200:7;-1:-1:-1;;;;;38224:19:0;;38220:60;;38252:28;;-1:-1:-1;;;38252:28:0;;;;;;;;;;;38220:60;-1:-1:-1;;;;;;38306:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38306:27:0;;38136:206::o;13167:103::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;13232:30:::1;13259:1;13232:18;:30::i;61370:522::-:0;58891:13;;;;;;;58883:54;;;;-1:-1:-1;;;58883:54:0;;12032:2:1;58883:54:0;;;12014:21:1;12071:2;12051:18;;;12044:30;12110;12090:18;;;12083:58;12158:18;;58883:54:0;11830:352:1;58883:54:0;61491:11:::1;59169:9;;59153:11;59137:13;37270:12:::0;;37060:7;37254:13;:28;;37016:303;59137:13:::1;:27;;;;:::i;:::-;59136:42;;59128:70;;;::::0;-1:-1:-1;;;59128:70:0;;10051:2:1;59128:70:0::1;::::0;::::1;10033:21:1::0;10090:2;10070:18;;;10063:30;-1:-1:-1;;;10109:18:1;;;10102:45;10164:18;;59128:70:0::1;9849:339:1::0;59128:70:0::1;59255:13;::::0;59225:10:::1;59214:22;::::0;;;:10:::1;:22;::::0;;;;;:36:::1;::::0;59239:11;;59214:36:::1;:::i;:::-;59213:55;;59205:87;;;::::0;-1:-1:-1;;;59205:87:0;;10395:2:1;59205:87:0::1;::::0;::::1;10377:21:1::0;10434:2;10414:18;;;10407:30;-1:-1:-1;;;10453:18:1;;;10446:49;10512:18;;59205:87:0::1;10193:343:1::0;59205:87:0::1;59328:11;59320:5;;:19;;;;:::i;:::-;59307:9;:32;;59299:78;;;;-1:-1:-1::0;;;59299:78:0::1;;;;;;;:::i;:::-;7490:1:::2;8088:7;;:19:::0;8080:63:::2;;;;-1:-1:-1::0;;;8080:63:0::2;;;;;;;:::i;:::-;7490:1;8221:7;:18:::0;61549:28:::3;::::0;-1:-1:-1;;61566:10:0::3;12336:2:1::0;12332:15;12328:53;61549:28:0::3;::::0;::::3;12316:66:1::0;61524:12:0::3;::::0;12398::1;;61549:28:0::3;;;;;;;;;;;;61539:39;;;;;;61524:54;;61595:50;61614:12;;61595:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;61628:10:0::3;::::0;;-1:-1:-1;61640:4:0;;-1:-1:-1;61595:18:0::3;:50::i;:::-;61587:77;;;::::0;-1:-1:-1;;;61587:77:0;;12623:2:1;61587:77:0::3;::::0;::::3;12605:21:1::0;12662:2;12642:18;;;12635:30;-1:-1:-1;;;12681:18:1;;;12674:44;12735:18;;61587:77:0::3;12421:338:1::0;61587:77:0::3;61725:13;::::0;61695:10:::3;61680:26;::::0;;;:14:::3;:26;::::0;;;;;:40:::3;::::0;61709:11;;61680:40:::3;:::i;:::-;61679:59;;61671:94;;;::::0;-1:-1:-1;;;61671:94:0;;12966:2:1;61671:94:0::3;::::0;::::3;12948:21:1::0;13005:2;12985:18;;;12978:30;-1:-1:-1;;;13024:18:1;;;13017:52;13086:18;;61671:94:0::3;12764:346:1::0;61671:94:0::3;61774:34;61784:10;61796:11;61774:9;:34::i;:::-;61861:10;61846:26;::::0;;;:14:::3;:26;::::0;;;;;:40:::3;::::0;61875:11;;61846:40:::3;:::i;:::-;61832:10;61817:26;::::0;;;:14:::3;:26;::::0;;;;:69;-1:-1:-1;;7446:1:0::2;8400:7;:22:::0;-1:-1:-1;;;61370:522:0:o;63221:100::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63291:10:::1;:24:::0;63221:100::o;63327:57::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63370:8:::1;:6;:8::i;59818:842::-:0;59879:16;59929:19;59961:25;59999:22;60024:16;60034:5;60024:9;:16::i;:::-;59999:41;;60053:25;60095:14;-1:-1:-1;;;;;60081:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60081:29:0;;60053:57;;60123:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;60123:31:0;60172:9;60167:449;60216:14;60201:11;:29;60167:449;;60266:14;;;;:11;:14;;;;;;;;;60254:26;;;;;;;;;-1:-1:-1;;;;;60254:26:0;;;;-1:-1:-1;;;60254:26:0;;-1:-1:-1;;;;;60254:26:0;;;;;;;;-1:-1:-1;;;60254:26:0;;;;;;;;;;;;;;-1:-1:-1;60340:8:0;60297:69;60386:14;;-1:-1:-1;;;;;60386:28:0;;60382:107;;60457:14;;;-1:-1:-1;60382:107:0;60530:5;-1:-1:-1;;;;;60509:26:0;:17;-1:-1:-1;;;;;60509:26:0;;60505:98;;60584:1;60558:8;60567:13;;;;;;60558:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;60505:98;60232:3;;60167:449;;;-1:-1:-1;60635:8:0;;59818:842;-1:-1:-1;;;;;;59818:842:0:o;62375:86::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;62438:5:::1;:17:::0;62375:86::o;41049:104::-;41105:13;41138:7;41131:14;;;;;:::i;42659:287::-;11320:10;-1:-1:-1;;;;;42758:24:0;;;42754:54;;42791:17;;-1:-1:-1;;;42791:17:0;;;;;;;;;;;42754:54;11320:10;42821:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42821:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42821:53:0;;;;;;;;;;42890:48;;540:41:1;;;42821:42:0;;11320:10;42890:48;;513:18:1;42890:48:0;;;;;;;42659:287;;:::o;63117:98::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;63187:13:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;63187:22:0;;::::1;::::0;;;::::1;::::0;;63117:98::o;62810:189::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;62903:26;;::::1;::::0;:12:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62940:13;62936:58;;;62964:6;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;62964:22:0;;::::1;;::::0;;62810:189;;:::o;43745:369::-;43912:28;43922:4;43928:2;43932:7;43912:9;:28::i;:::-;-1:-1:-1;;;;;43955:13:0;;17830:19;:23;;43955:76;;;;;43975:56;44006:4;44012:2;44016:7;44025:5;43975:30;:56::i;:::-;43974:57;43955:76;43951:156;;;44055:40;;-1:-1:-1;;;44055:40:0;;;;;;;;;;;43951:156;43745:369;;;;:::o;62157:212::-;62270:28;;-1:-1:-1;;62287:10:0;12336:2:1;12332:15;12328:53;62270:28:0;;;12316:66:1;62232:4:0;;;;12398:12:1;;62270:28:0;;;;;;;;;;;;62260:39;;;;;;62245:54;;62313:50;62332:12;;62313:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62346:10:0;;;-1:-1:-1;62358:4:0;;-1:-1:-1;62313:18:0;:50::i;:::-;62306:57;62157:212;-1:-1:-1;;;;62157:212:0:o;59397:381::-;59471:13;59501:16;59509:7;59501;:16::i;:::-;59493:59;;;;-1:-1:-1;;;59493:59:0;;13449:2:1;59493:59:0;;;13431:21:1;13488:2;13468:18;;;13461:30;13527:33;13507:18;;;13500:61;13578:18;;59493:59:0;13247:355:1;59493:59:0;59565:28;59596:10;:8;:10::i;:::-;59618:6;;59565:41;;-1:-1:-1;59618:6:0;;;;;:15;;59628:5;59618:15;59615:60;;59653:14;59397:381;-1:-1:-1;;59397:381:0:o;59615:60::-;59714:14;59730:25;59747:7;59730:16;:25::i;:::-;59757:13;59697:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59683:89;;;59397:381;;;:::o;60706:355::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;7490:1:::1;8088:7;;:19:::0;8080:63:::1;;;;-1:-1:-1::0;;;8080:63:0::1;;;;;;;:::i;:::-;7490:1;8221:7;:18:::0;60845:16:::2;::::0;60809:18:::2;::::0;:32:::2;::::0;60830:11;;60809:32:::2;:::i;:::-;:52;;60801:93;;;::::0;-1:-1:-1;;;60801:93:0;;15467:2:1;60801:93:0::2;::::0;::::2;15449:21:1::0;15506:2;15486:18;;;15479:30;15545;15525:18;;;15518:58;15593:18;;60801:93:0::2;15265:352:1::0;60801:93:0::2;60940:9;;60925:11;60909:13;37270:12:::0;;37060:7;37254:13;:28;;37016:303;60909:13:::2;:27;;;;:::i;:::-;:40;;60901:72;;;::::0;-1:-1:-1;;;60901:72:0;;15824:2:1;60901:72:0::2;::::0;::::2;15806:21:1::0;15863:2;15843:18;;;15836:30;-1:-1:-1;;;15882:18:1;;;15875:49;15941:18;;60901:72:0::2;15622:343:1::0;60901:72:0::2;60982:27;60992:3;60997:11;60982:9;:27::i;:::-;61044:11;61022:18;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;7446:1:0::1;8400:7;:22:::0;-1:-1:-1;;60706:355:0:o;62570:110::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;62645:16:::1;:29:::0;62570:110::o;13425:201::-;12589:6;;-1:-1:-1;;;;;12589:6:0;;;;;11320:10;12736:23;12728:68;;;;-1:-1:-1;;;12728:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13514:22:0;::::1;13506:73;;;::::0;-1:-1:-1;;;13506:73:0;;16172:2:1;13506:73:0::1;::::0;::::1;16154:21:1::0;16211:2;16191:18;;;16184:30;16250:34;16230:18;;;16223:62;-1:-1:-1;;;16301:18:1;;;16294:36;16347:19;;13506:73:0::1;15970:402:1::0;13506:73:0::1;13590:28;13609:8;13590:18;:28::i;:::-;13425:201:::0;:::o;44369:174::-;44426:4;44490:13;;44480:7;:23;44450:85;;;;-1:-1:-1;;44508:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44508:27:0;;;;44507:28;;44369:174::o;53595:196::-;53710:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53710:29:0;-1:-1:-1;;;;;53710:29:0;;;;;;;;;53755:28;;53710:24;;53755:28;;;;;;;53595:196;;;:::o;48543:2130::-;48658:35;48696:21;48709:7;48696:12;:21::i;:::-;48658:59;;48756:4;-1:-1:-1;;;;;48734:26:0;:13;:18;;;-1:-1:-1;;;;;48734:26:0;;48730:67;;48769:28;;-1:-1:-1;;;48769:28:0;;;;;;;;;;;48730:67;48810:22;11320:10;-1:-1:-1;;;;;48836:20:0;;;;:73;;-1:-1:-1;48873:36:0;48890:4;11320:10;43017:164;:::i;48873:36::-;48836:126;;;-1:-1:-1;11320:10:0;48926:20;48938:7;48926:11;:20::i;:::-;-1:-1:-1;;;;;48926:36:0;;48836:126;48810:153;;48981:17;48976:66;;49007:35;;-1:-1:-1;;;49007:35:0;;;;;;;;;;;48976:66;-1:-1:-1;;;;;49057:16:0;;49053:52;;49082:23;;-1:-1:-1;;;49082:23:0;;;;;;;;;;;49053:52;49118:43;49140:4;49146:2;49150:7;49159:1;49118:21;:43::i;:::-;49226:35;49243:1;49247:7;49256:4;49226:8;:35::i;:::-;-1:-1:-1;;;;;49557:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49557:31:0;;;-1:-1:-1;;;;;49557:31:0;;;-1:-1:-1;;49557:31:0;;;;;;;49603:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49603:29:0;;;;;;;;;;;49683:20;;;:11;:20;;;;;;49718:18;;-1:-1:-1;;;;;;49751:49:0;;;;-1:-1:-1;;;49784:15:0;49751:49;;;;;;;;;;50074:11;;50134:24;;;;;50177:13;;49683:20;;50134:24;;50177:13;50173:384;;50387:13;;50372:11;:28;50368:174;;50425:20;;50494:28;;;;-1:-1:-1;;;;;50468:54:0;-1:-1:-1;;;50468:54:0;-1:-1:-1;;;;;;50468:54:0;;;-1:-1:-1;;;;;50425:20:0;;50468:54;;;;50368:174;49532:1036;;;50604:7;50600:2;-1:-1:-1;;;;;50585:27:0;50594:4;-1:-1:-1;;;;;50585:27:0;;;;;;;;;;;48647:2026;;48543:2130;;;:::o;44627:104::-;44696:27;44706:2;44710:8;44696:27;;;;;;;;;;;;:9;:27::i;16175:120::-;15187:7;;;;15711:41;;;;-1:-1:-1;;;15711:41:0;;16579:2:1;15711:41:0;;;16561:21:1;16618:2;16598:18;;;16591:30;-1:-1:-1;;;16637:18:1;;;16630:50;16697:18;;15711:41:0;16377:344:1;15711:41:0;16234:7:::1;:15:::0;;-1:-1:-1;;16234:15:0::1;::::0;;16265:22:::1;11320:10:::0;16274:12:::1;16265:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;16265:22:0::1;;;;;;;16175:120::o:0;39517:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39628:7:0;39711:13;;39704:4;:20;39673:886;;;39745:31;39779:17;;;:11;:17;;;;;;;;;39745:51;;;;;;;;;-1:-1:-1;;;;;39745:51:0;;;;-1:-1:-1;;;39745:51:0;;-1:-1:-1;;;;;39745:51:0;;;;;;;;-1:-1:-1;;;39745:51:0;;;;;;;;;;;;;;39815:729;;39865:14;;-1:-1:-1;;;;;39865:28:0;;39861:101;;39929:9;39517:1109;-1:-1:-1;;;39517:1109:0:o;39861:101::-;-1:-1:-1;;;40304:6:0;40349:17;;;;:11;:17;;;;;;;;;40337:29;;;;;;;;;-1:-1:-1;;;;;40337:29:0;;;;;-1:-1:-1;;;40337:29:0;;-1:-1:-1;;;;;40337:29:0;;;;;;;;-1:-1:-1;;;40337:29:0;;;;;;;;;;;;;40397:28;40393:109;;40465:9;39517:1109;-1:-1:-1;;;39517:1109:0:o;40393:109::-;40264:261;;;39726:833;39673:886;40587:31;;-1:-1:-1;;;40587:31:0;;;;;;;;;;;13786:191;13879:6;;;-1:-1:-1;;;;;13896:17:0;;;13879:6;13896:17;;;-1:-1:-1;;;;;;13896:17:0;;;;;;13929:40;;13879:6;;;;;;;;13929:40;;13860:16;;13929:40;13849:128;13786:191;:::o;4212:190::-;4337:4;4390;4361:25;4374:5;4381:4;4361:12;:25::i;:::-;:33;;4212:190;-1:-1:-1;;;;4212:190:0:o;15916:118::-;15187:7;;;;15441:9;15433:38;;;;-1:-1:-1;;;15433:38:0;;16928:2:1;15433:38:0;;;16910:21:1;16967:2;16947:18;;;16940:30;-1:-1:-1;;;16986:18:1;;;16979:46;17042:18;;15433:38:0;16726:340:1;15433:38:0;15976:7:::1;:14:::0;;-1:-1:-1;;15976:14:0::1;15986:4;15976:14;::::0;;16006:20:::1;16013:12;11320:10:::0;;11240:98;54283:667;54467:72;;-1:-1:-1;;;54467:72:0;;54446:4;;-1:-1:-1;;;;;54467:36:0;;;;;:72;;11320:10;;54518:4;;54524:7;;54533:5;;54467:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54467:72:0;;;;;;;;-1:-1:-1;;54467:72:0;;;;;;;;;;;;:::i;:::-;;;54463:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54701:6;:13;54718:1;54701:18;54697:235;;54747:40;;-1:-1:-1;;;54747:40:0;;;;;;;;;;;54697:235;54890:6;54884:13;54875:6;54871:2;54867:15;54860:38;54463:480;-1:-1:-1;;;;;;54586:55:0;-1:-1:-1;;;54586:55:0;;-1:-1:-1;54283:667:0;;;;;;:::o;58633:107::-;58693:13;58722:12;58715:19;;;;;:::i;8802:723::-;8858:13;9079:5;9088:1;9079:10;9075:53;;-1:-1:-1;;9106:10:0;;;;;;;;;;;;-1:-1:-1;;;9106:10:0;;;;;8802:723::o;9075:53::-;9153:5;9138:12;9194:78;9201:9;;9194:78;;9227:8;;;;:::i;:::-;;-1:-1:-1;9250:10:0;;-1:-1:-1;9258:2:0;9250:10;;:::i;:::-;;;9194:78;;;9282:19;9314:6;-1:-1:-1;;;;;9304:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9304:17:0;;9282:39;;9332:154;9339:10;;9332:154;;9366:11;9376:1;9366:11;;:::i;:::-;;-1:-1:-1;9435:10:0;9443:2;9435:5;:10;:::i;:::-;9422:24;;:2;:24;:::i;:::-;9409:39;;9392:6;9399;9392:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9392:56:0;;;;;;;;-1:-1:-1;9463:11:0;9472:2;9463:11;;:::i;:::-;;;9332:154;;57320:294;15187:7;;;;57569:37;;;57590:16;;-1:-1:-1;;;57590:16:0;;;;;;;;;;;45105:1751;45228:20;45251:13;-1:-1:-1;;;;;45279:16:0;;45275:48;;45304:19;;-1:-1:-1;;;45304:19:0;;;;;;;;;;;45275:48;45338:8;45350:1;45338:13;45334:44;;45360:18;;-1:-1:-1;;;45360:18:0;;;;;;;;;;;45334:44;45391:61;45421:1;45425:2;45429:12;45443:8;45391:21;:61::i;:::-;-1:-1:-1;;;;;45729:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45788:49:0;;-1:-1:-1;;;;;45729:44:0;;;;;;;45788:49;;;;-1:-1:-1;;45729:44:0;;;;;;45788:49;;;;;;;;;;;;;;;;45854:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45904:66:0;;;-1:-1:-1;;;45954:15:0;45904:66;;;;;;;;;;;;;45854:25;;46051:23;;;;17830:19;:23;46091:633;;46131:314;46162:38;;46187:12;;-1:-1:-1;;;;;46162:38:0;;;46179:1;;46162:38;;46179:1;;46162:38;46228:69;46267:1;46271:2;46275:14;;;;;;46291:5;46228:30;:69::i;:::-;46223:174;;46333:40;;-1:-1:-1;;;46333:40:0;;;;;;;;;;;46223:174;46440:3;46424:12;:19;46131:314;;46526:12;46509:13;;:29;46505:43;;46540:8;;;46505:43;46091:633;;;46589:120;46620:40;;46645:14;;;;;-1:-1:-1;;;;;46620:40:0;;;46637:1;;46620:40;;46637:1;;46620:40;46704:3;46688:12;:19;46589:120;;46091:633;-1:-1:-1;46738:13:0;:28;;;46788:60;;46821:2;46825:12;46839:8;46788:60;:::i;4764:675::-;4847:7;4890:4;4847:7;4905:497;4929:5;:12;4925:1;:16;4905:497;;;4963:20;4986:5;4992:1;4986:8;;;;;;;;:::i;:::-;;;;;;;4963:31;;5029:12;5013;:28;5009:382;;5515:13;5565:15;;;5601:4;5594:15;;;5648:4;5632:21;;5141:57;;5009:382;;;5515:13;5565:15;;;5601:4;5594:15;;;5648:4;5632:21;;5318:57;;5009:382;-1:-1:-1;4943:3:0;;;;:::i;:::-;;;;4905:497;;;-1:-1:-1;5419:12:0;4764:675;-1:-1:-1;;;4764:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:160::-;2753:20;;2809:13;;2802:21;2792:32;;2782:60;;2838:1;2835;2828:12;2853:180;2909:6;2962:2;2950:9;2941:7;2937:23;2933:32;2930:52;;;2978:1;2975;2968:12;2930:52;3001:26;3017:9;3001:26;:::i;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:367::-;3292:8;3302:6;3356:3;3349:4;3341:6;3337:17;3333:27;3323:55;;3374:1;3371;3364:12;3323:55;-1:-1:-1;3397:20:1;;-1:-1:-1;;;;;3429:30:1;;3426:50;;;3472:1;3469;3462:12;3426:50;3509:4;3501:6;3497:17;3485:29;;3569:3;3562:4;3552:6;3549:1;3545:14;3537:6;3533:27;3529:38;3526:47;3523:67;;;3586:1;3583;3576:12;3523:67;3229:367;;;;;:::o;3601:505::-;3696:6;3704;3712;3765:2;3753:9;3744:7;3740:23;3736:32;3733:52;;;3781:1;3778;3771:12;3733:52;3821:9;3808:23;-1:-1:-1;;;;;3846:6:1;3843:30;3840:50;;;3886:1;3883;3876:12;3840:50;3925:70;3987:7;3978:6;3967:9;3963:22;3925:70;:::i;:::-;4014:8;;3899:96;;-1:-1:-1;4096:2:1;4081:18;;;;4068:32;;3601:505;-1:-1:-1;;;;3601:505:1:o;4296:632::-;4467:2;4519:21;;;4589:13;;4492:18;;;4611:22;;;4438:4;;4467:2;4690:15;;;;4664:2;4649:18;;;4438:4;4733:169;4747:6;4744:1;4741:13;4733:169;;;4808:13;;4796:26;;4877:15;;;;4842:12;;;;4769:1;4762:9;4733:169;;4933:254;4998:6;5006;5059:2;5047:9;5038:7;5034:23;5030:32;5027:52;;;5075:1;5072;5065:12;5027:52;5098:29;5117:9;5098:29;:::i;:::-;5088:39;;5146:35;5177:2;5166:9;5162:18;5146:35;:::i;:::-;5136:45;;4933:254;;;;;:::o;5192:127::-;5253:10;5248:3;5244:20;5241:1;5234:31;5284:4;5281:1;5274:15;5308:4;5305:1;5298:15;5324:632;5389:5;-1:-1:-1;;;;;5460:2:1;5452:6;5449:14;5446:40;;;5466:18;;:::i;:::-;5541:2;5535:9;5509:2;5595:15;;-1:-1:-1;;5591:24:1;;;5617:2;5587:33;5583:42;5571:55;;;5641:18;;;5661:22;;;5638:46;5635:72;;;5687:18;;:::i;:::-;5727:10;5723:2;5716:22;5756:6;5747:15;;5786:6;5778;5771:22;5826:3;5817:6;5812:3;5808:16;5805:25;5802:45;;;5843:1;5840;5833:12;5802:45;5893:6;5888:3;5881:4;5873:6;5869:17;5856:44;5948:1;5941:4;5932:6;5924;5920:19;5916:30;5909:41;;;;5324:632;;;;;:::o;5961:523::-;6036:6;6044;6097:2;6085:9;6076:7;6072:23;6068:32;6065:52;;;6113:1;6110;6103:12;6065:52;6153:9;6140:23;-1:-1:-1;;;;;6178:6:1;6175:30;6172:50;;;6218:1;6215;6208:12;6172:50;6241:22;;6294:4;6286:13;;6282:27;-1:-1:-1;6272:55:1;;6323:1;6320;6313:12;6272:55;6346:76;6414:7;6409:2;6396:16;6389:4;6385:2;6381:13;6346:76;:::i;:::-;6336:86;;;6441:37;6472:4;6461:9;6457:20;6441:37;:::i;6489:667::-;6584:6;6592;6600;6608;6661:3;6649:9;6640:7;6636:23;6632:33;6629:53;;;6678:1;6675;6668:12;6629:53;6701:29;6720:9;6701:29;:::i;:::-;6691:39;;6749:38;6783:2;6772:9;6768:18;6749:38;:::i;:::-;6739:48;;6834:2;6823:9;6819:18;6806:32;6796:42;;6889:2;6878:9;6874:18;6861:32;-1:-1:-1;;;;;6908:6:1;6905:30;6902:50;;;6948:1;6945;6938:12;6902:50;6971:22;;7024:4;7016:13;;7012:27;-1:-1:-1;7002:55:1;;7053:1;7050;7043:12;7002:55;7076:74;7142:7;7137:2;7124:16;7119:2;7115;7111:11;7076:74;:::i;:::-;7066:84;;;6489:667;;;;;;;:::o;7161:437::-;7247:6;7255;7308:2;7296:9;7287:7;7283:23;7279:32;7276:52;;;7324:1;7321;7314:12;7276:52;7364:9;7351:23;-1:-1:-1;;;;;7389:6:1;7386:30;7383:50;;;7429:1;7426;7419:12;7383:50;7468:70;7530:7;7521:6;7510:9;7506:22;7468:70;:::i;:::-;7557:8;;7442:96;;-1:-1:-1;7161:437:1;-1:-1:-1;;;;7161:437:1:o;7603:254::-;7671:6;7679;7732:2;7720:9;7711:7;7707:23;7703:32;7700:52;;;7748:1;7745;7738:12;7700:52;7784:9;7771:23;7761:33;;7813:38;7847:2;7836:9;7832:18;7813:38;:::i;7862:260::-;7930:6;7938;7991:2;7979:9;7970:7;7966:23;7962:32;7959:52;;;8007:1;8004;7997:12;7959:52;8030:29;8049:9;8030:29;:::i;:::-;8020:39;;8078:38;8112:2;8101:9;8097:18;8078:38;:::i;8127:380::-;8206:1;8202:12;;;;8249;;;8270:61;;8324:4;8316:6;8312:17;8302:27;;8270:61;8377:2;8369:6;8366:14;8346:18;8343:38;8340:161;;8423:10;8418:3;8414:20;8411:1;8404:31;8458:4;8455:1;8448:15;8486:4;8483:1;8476:15;8340:161;;8127:380;;;:::o;8512:356::-;8714:2;8696:21;;;8733:18;;;8726:30;8792:34;8787:2;8772:18;;8765:62;8859:2;8844:18;;8512:356::o;9584:127::-;9645:10;9640:3;9636:20;9633:1;9626:31;9676:4;9673:1;9666:15;9700:4;9697:1;9690:15;9716:128;9756:3;9787:1;9783:6;9780:1;9777:13;9774:39;;;9793:18;;:::i;:::-;-1:-1:-1;9829:9:1;;9716:128::o;10541:168::-;10581:7;10647:1;10643;10639:6;10635:14;10632:1;10629:21;10624:1;10617:9;10610:17;10606:45;10603:71;;;10654:18;;:::i;:::-;-1:-1:-1;10694:9:1;;10541:168::o;10714:397::-;10916:2;10898:21;;;10955:2;10935:18;;;10928:30;10994:34;10989:2;10974:18;;10967:62;-1:-1:-1;;;11060:2:1;11045:18;;11038:31;11101:3;11086:19;;10714:397::o;11116:355::-;11318:2;11300:21;;;11357:2;11337:18;;;11330:30;11396:33;11391:2;11376:18;;11369:61;11462:2;11447:18;;11116:355::o;13115:127::-;13176:10;13171:3;13167:20;13164:1;13157:31;13207:4;13204:1;13197:15;13231:4;13228:1;13221:15;13733:1527;13957:3;13995:6;13989:13;14021:4;14034:51;14078:6;14073:3;14068:2;14060:6;14056:15;14034:51;:::i;:::-;14148:13;;14107:16;;;;14170:55;14148:13;14107:16;14192:15;;;14170:55;:::i;:::-;14314:13;;14247:20;;;14287:1;;14374;14396:18;;;;14449;;;;14476:93;;14554:4;14544:8;14540:19;14528:31;;14476:93;14617:2;14607:8;14604:16;14584:18;14581:40;14578:167;;-1:-1:-1;;;14644:33:1;;14700:4;14697:1;14690:15;14730:4;14651:3;14718:17;14578:167;14761:18;14788:110;;;;14912:1;14907:328;;;;14754:481;;14788:110;-1:-1:-1;;14823:24:1;;14809:39;;14868:20;;;;-1:-1:-1;14788:110:1;;14907:328;13680:1;13673:14;;;13717:4;13704:18;;15002:1;15016:169;15030:8;15027:1;15024:15;15016:169;;;15112:14;;15097:13;;;15090:37;15155:16;;;;15047:10;;15016:169;;;15020:3;;15216:8;15209:5;15205:20;15198:27;;14754:481;-1:-1:-1;15251:3:1;;13733:1527;-1:-1:-1;;;;;;;;;;;13733:1527:1:o;17071:489::-;-1:-1:-1;;;;;17340:15:1;;;17322:34;;17392:15;;17387:2;17372:18;;17365:43;17439:2;17424:18;;17417:34;;;17487:3;17482:2;17467:18;;17460:31;;;17265:4;;17508:46;;17534:19;;17526:6;17508:46;:::i;:::-;17500:54;17071:489;-1:-1:-1;;;;;;17071:489:1:o;17565:249::-;17634:6;17687:2;17675:9;17666:7;17662:23;17658:32;17655:52;;;17703:1;17700;17693:12;17655:52;17735:9;17729:16;17754:30;17778:5;17754:30;:::i;17819:135::-;17858:3;17879:17;;;17876:43;;17899:18;;:::i;:::-;-1:-1:-1;17946:1:1;17935:13;;17819:135::o;17959:127::-;18020:10;18015:3;18011:20;18008:1;18001:31;18051:4;18048:1;18041:15;18075:4;18072:1;18065:15;18091:120;18131:1;18157;18147:35;;18162:18;;:::i;:::-;-1:-1:-1;18196:9:1;;18091:120::o;18216:125::-;18256:4;18284:1;18281;18278:8;18275:34;;;18289:18;;:::i;:::-;-1:-1:-1;18326:9:1;;18216:125::o;18346:112::-;18378:1;18404;18394:35;;18409:18;;:::i;:::-;-1:-1:-1;18443:9:1;;18346:112::o
Swarm Source
ipfs://1a25937d0754c04d98820b31606d30c839a3523d41057222a5abc89b3808ff7a
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.