Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
1373
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DawsWorld
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-03 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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/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/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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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 (last updated v4.6.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @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 || interfaceId == type(IERC721Enumerable).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); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * 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) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @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 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 override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(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 tokenId < _currentIndex; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/DawsWorld.sol pragma solidity ^0.8.0; contract DawsWorld is ERC721A, Ownable{ using Strings for uint256; uint256 public constant Maximum_Supply = 5555; uint256 public constant OG_Mint_Price = .00 ether; uint256 public constant Maximum_OG_Mint = 2; uint256 public constant Whitelist_Mint_Price = .012 ether; uint256 public constant Maximum_Whitelist_Mint = 5; uint256 public constant Public_Mint_Price = .02 ether; uint256 public constant Maximum_Public_Mint = 10; string private baseTokenUri; string public placeholderTokenUri; //Deploy the smart contract, toggle OG, toggle WL and finally toggle PublicSale //toggle reveal after project has completed minting phases. bool public isRevealed; bool public PublicSale; bool public WhitelistSale; bool public OGSale; bool public pause; bool public teamMinted; bytes32 private merkleRoot; mapping(address => uint256) public totalPublicMint; mapping(address => uint256) public totalWhitelistMint; mapping(address => uint256) public totalOGMint; constructor() ERC721A("Daws World", "DAWS"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "Daws World :: Cannot be called by a contract"); _; } function mint(uint256 _quantity) external payable callerIsUser{ require(PublicSale, "Daws World :: Not Yet Active."); require((totalSupply() + _quantity) <= Maximum_Supply, "Daws World :: Cannot mint beyond Max Supply"); require((totalPublicMint[msg.sender] +_quantity) <= Maximum_Public_Mint, "Daws World :: Already minted 10 times!"); require(msg.value >= (Public_Mint_Price * _quantity), "Daws World :: You do not have sufficient funds "); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{ require(WhitelistSale, "Daws World :: Minting is on Pause"); require((totalSupply() + _quantity) <= Maximum_Supply, "Daws World :: Cannot mint beyond max supply"); require((totalWhitelistMint[msg.sender] + _quantity) <= Maximum_Whitelist_Mint, "Daws World :: Cannot mint beyond Whitelist max mint!"); require(msg.value >= (Whitelist_Mint_Price * _quantity), "Daws World :: You do not have sufficient funds"); //create leaf node bytes32 sender = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "Daws World :: You are not whitelisted"); totalWhitelistMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function ogMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{ require(OGSale, "Daws World :: Minting is on Pause"); require((totalSupply() + _quantity) <= Maximum_Supply, "Daws World :: Cannot mint beyond max supply"); require((totalOGMint[msg.sender] + _quantity) <= Maximum_OG_Mint, "Daws World :: Cannot mint beyond OG max mint!"); require(msg.value >= (OG_Mint_Price * _quantity), "Daws World :: You do not have sufficient funds"); //create leaf node bytes32 sender = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "Daws World :: You don't have the OG role"); totalOGMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } //200 DAWS tokens reserved for team, airdrops and giveaways function teamMint() external onlyOwner{ require(!teamMinted, "Daws World :: Team already minted"); teamMinted = true; _safeMint(msg.sender, 200); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } //return uri for a DAWS token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; if(!isRevealed){ return placeholderTokenUri; } //string memory baseURI = _baseURI(); return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } /// walletOf() function should not be called on-chain due to gas consumption function walletOf() external view returns(uint256[] memory){ address _owner = msg.sender; uint256 numberOfOwnedNFT = balanceOf(_owner); uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT); for(uint256 index = 0; index < numberOfOwnedNFT; index++){ ownerIds[index] = tokenOfOwnerByIndex(_owner, index); } return ownerIds; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{ placeholderTokenUri = _placeholderTokenUri; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{ merkleRoot = _merkleRoot; } function getMerkleRoot() external view returns (bytes32){ return merkleRoot; } function togglePause() external onlyOwner{ pause = !pause; } function toggleOGSale() external onlyOwner{ OGSale = !OGSale; } function toggleWhitelistSale() external onlyOwner{ WhitelistSale = !WhitelistSale; } function togglePublicSale() external onlyOwner{ PublicSale = !PublicSale; } function toggleReveal() external onlyOwner{ isRevealed = !isRevealed; } function withdraw() external onlyOwner{ //60% to the community wallet for implementation of utility uint256 communityWallet = address(this).balance * 60/100; //40% to the team for artwork, development, community building, & marketing uint256 teamWallet = (address(this).balance - communityWallet) * 40/100; payable(0x0faC938e94aE618ee348B00CD31a52fE48cBAC35).transfer(communityWallet); payable(0x654bb439d0f881C3CA969AA33C131301D51E3BFB).transfer(teamWallet); payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Maximum_OG_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Maximum_Public_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Maximum_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Maximum_Whitelist_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_Mint_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Public_Mint_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Whitelist_Mint_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"ogMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOGSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalOGMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","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":"","type":"address"}],"name":"totalWhitelistMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600a81526911185ddcc815dbdc9b1960b21b6020808301918252835180850190945260048452634441575360e01b9084015281519192916200006091600191620000ef565b50805162000076906002906020840190620000ef565b505050620000936200008d6200009960201b60201c565b6200009d565b620001d2565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b60208210811415620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b612a5580620001e26000396000f3fe6080604052600436106102e45760003560e01c80637116abf911610190578063b87e291a116100dc578063d648d0d511610095578063e985e9c51161006f578063e985e9c51461084d578063ec14e9e414610896578063f2fde38b146108ac578063ffcdd8cf146108cc57600080fd5b8063d648d0d514610800578063e222c7f914610815578063e8b5498d1461082a57600080fd5b8063b87e291a1461075a578063b88d4fde14610775578063ba7a86b814610795578063c1bde404146107aa578063c4ae3168146107cb578063c87b56dd146107e057600080fd5b806395d89b4111610149578063a07b0eb011610123578063a07b0eb0146106f0578063a22cb46514610705578063afe4a19714610725578063b0962c531461073a57600080fd5b806395d89b41146106b357806399800185146106c8578063a0712d68146106dd57600080fd5b80637116abf914610609578063715018a61461061c5780637cb647591461063157806383a974a2146106515780638456cb59146106735780638da5cb5b1461069557600080fd5b80632904e6d91161024f5780634f6ccce7116102085780635b8ad429116101e25780635b8ad4291461059f5780636352211e146105b45780636f0fb96a146105d457806370a08231146105e957600080fd5b80634f6ccce71461055057806354214f691461057057806359eda1b51461058a57600080fd5b80632904e6d9146104be5780632f745c59146104d15780633ccfd60b146104f157806342842e0e1461050657806349590657146105265780634cf5f7a41461053b57600080fd5b80630f59c6eb116102a15780630f59c6eb146103f55780631305b59c1461041457806318160ddd146104415780631c16521c1461045657806320badd321461048357806323b872dd1461049e57600080fd5b806301ffc9a7146102e95780630345e3cb1461031e5780630675b7c61461035957806306fdde031461037b578063081812fc1461039d578063095ea7b3146103d5575b600080fd5b3480156102f557600080fd5b506103096103043660046124ef565b6108ec565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061034b6103393660046122b7565b600d6020526000908152604090205481565b604051908152602001610315565b34801561036557600080fd5b50610379610374366004612529565b610959565b005b34801561038757600080fd5b506103906109a3565b60405161031591906126f6565b3480156103a957600080fd5b506103bd6103b83660046124d6565b610a35565b6040516001600160a01b039091168152602001610315565b3480156103e157600080fd5b506103796103f03660046123f9565b610a7b565b34801561040157600080fd5b50600a5461030990610100900460ff1681565b34801561042057600080fd5b5061034b61042f3660046122b7565b600e6020526000908152604090205481565b34801561044d57600080fd5b5060005461034b565b34801561046257600080fd5b5061034b6104713660046122b7565b600c6020526000908152604090205481565b34801561048f57600080fd5b5061034b662aa1efb94e000081565b3480156104aa57600080fd5b506103796104b9366004612305565b610b09565b6103796104cc366004612423565b610b14565b3480156104dd57600080fd5b5061034b6104ec3660046123f9565b610d06565b3480156104fd57600080fd5b50610379610ddb565b34801561051257600080fd5b50610379610521366004612305565b610ef6565b34801561053257600080fd5b50600b5461034b565b34801561054757600080fd5b50610390610f11565b34801561055c57600080fd5b5061034b61056b3660046124d6565b610f9f565b34801561057c57600080fd5b50600a546103099060ff1681565b34801561059657600080fd5b50610379610fc6565b3480156105ab57600080fd5b5061037961100f565b3480156105c057600080fd5b506103bd6105cf3660046124d6565b61104d565b3480156105e057600080fd5b5061034b600081565b3480156105f557600080fd5b5061034b6106043660046122b7565b61105f565b610379610617366004612423565b6110ad565b34801561062857600080fd5b50610379611286565b34801561063d57600080fd5b5061037961064c3660046124d6565b6112bc565b34801561065d57600080fd5b506106666112eb565b60405161031591906126b2565b34801561067f57600080fd5b50600a5461030990640100000000900460ff1681565b3480156106a157600080fd5b506007546001600160a01b03166103bd565b3480156106bf57600080fd5b5061039061138e565b3480156106d457600080fd5b5061037961139d565b6103796106eb3660046124d6565b6113e8565b3480156106fc57600080fd5b5061034b600581565b34801561071157600080fd5b506103796107203660046123bd565b6115ea565b34801561073157600080fd5b5061034b600281565b34801561074657600080fd5b50610379610755366004612529565b611680565b34801561076657600080fd5b5061034b66470de4df82000081565b34801561078157600080fd5b50610379610790366004612341565b6116bd565b3480156107a157600080fd5b506103796116f7565b3480156107b657600080fd5b50600a54610309906301000000900460ff1681565b3480156107d757600080fd5b506103796117a9565b3480156107ec57600080fd5b506103906107fb3660046124d6565b6117f6565b34801561080c57600080fd5b5061034b600a81565b34801561082157600080fd5b50610379611972565b34801561083657600080fd5b50600a546103099065010000000000900460ff1681565b34801561085957600080fd5b506103096108683660046122d2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108a257600080fd5b5061034b6115b381565b3480156108b857600080fd5b506103796108c73660046122b7565b6119b9565b3480156108d857600080fd5b50600a546103099062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061091d57506001600160e01b03198216635b5e139f60e01b145b8061093857506001600160e01b0319821663780e9d6360e01b145b8061095357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461098c5760405162461bcd60e51b8152600401610983906127d1565b60405180910390fd5b805161099f9060089060208401906121b3565b5050565b6060600180546109b290612911565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90612911565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a42826000541190565b610a5f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a868261104d565b9050806001600160a01b0316836001600160a01b03161415610abb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610adb5750610ad98133610868565b155b15610af9576040516367d9dca160e11b815260040160405180910390fd5b610b04838383611a51565b505050565b610b04838383611aad565b323314610b335760405162461bcd60e51b815260040161098390612806565b600a5462010000900460ff16610b5b5760405162461bcd60e51b815260040161098390612790565b6115b381610b6860005490565b610b729190612883565b1115610b905760405162461bcd60e51b815260040161098390612709565b336000908152600d6020526040902054600590610bae908390612883565b1115610c075760405162461bcd60e51b81526020600482015260346024820152600080516020612a008339815191526044820152732057686974656c697374206d6178206d696e742160601b6064820152608401610983565b610c1881662aa1efb94e00006128af565b341015610c375760405162461bcd60e51b815260040161098390612742565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c7d83600b5483611ccc565b610cd75760405162461bcd60e51b815260206004820152602560248201527f4461777320576f726c64203a3a20596f7520617265206e6f742077686974656c6044820152641a5cdd195960da1b6064820152608401610983565b336000908152600d602052604081208054849290610cf6908490612883565b90915550610b0490503383611ce2565b6000610d118361105f565b8210610d30576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610dc9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d8b57805192505b876001600160a01b0316836001600160a01b03161415610dc05786841415610db95750935061095392505050565b6001909301925b50600101610d38565b50610dd261297b565b50505092915050565b6007546001600160a01b03163314610e055760405162461bcd60e51b8152600401610983906127d1565b60006064610e1447603c6128af565b610e1e919061289b565b905060006064610e2e83476128ce565b610e399060286128af565b610e43919061289b565b604051909150730fac938e94ae618ee348b00cd31a52fe48cbac359083156108fc029084906000818181858888f19350505050158015610e87573d6000803e3d6000fd5b5060405173654bb439d0f881c3ca969aa33c131301d51e3bfb9082156108fc029083906000818181858888f19350505050158015610ec9573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610b04573d6000803e3d6000fd5b610b04838383604051806020016040528060008152506116bd565b60098054610f1e90612911565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612911565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b600080548210610fc2576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ff05760405162461bcd60e51b8152600401610983906127d1565b600a805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b031633146110395760405162461bcd60e51b8152600401610983906127d1565b600a805460ff19811660ff90911615179055565b600061105882611cfc565b5192915050565b60006001600160a01b038216611088576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b3233146110cc5760405162461bcd60e51b815260040161098390612806565b600a546301000000900460ff166110f55760405162461bcd60e51b815260040161098390612790565b6115b38161110260005490565b61110c9190612883565b111561112a5760405162461bcd60e51b815260040161098390612709565b336000908152600e6020526040902054600290611148908390612883565b111561119a5760405162461bcd60e51b815260206004820152602d6024820152600080516020612a0083398151915260448201526c204f47206d6178206d696e742160981b6064820152608401610983565b6111a58160006128af565b3410156111c45760405162461bcd60e51b815260040161098390612742565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061120a83600b5483611ccc565b6112675760405162461bcd60e51b815260206004820152602860248201527f4461777320576f726c64203a3a20596f7520646f6e2774206861766520746865604482015267204f4720726f6c6560c01b6064820152608401610983565b336000908152600e602052604081208054849290610cf6908490612883565b6007546001600160a01b031633146112b05760405162461bcd60e51b8152600401610983906127d1565b6112ba6000611d91565b565b6007546001600160a01b031633146112e65760405162461bcd60e51b8152600401610983906127d1565b600b55565b60603360006112f98261105f565b905060008167ffffffffffffffff811115611316576113166129d3565b60405190808252806020026020018201604052801561133f578160200160208202803683370190505b50905060005b82811015611386576113578482610d06565b828281518110611369576113696129bd565b60209081029190910101528061137e8161294c565b915050611345565b509392505050565b6060600280546109b290612911565b6007546001600160a01b031633146113c75760405162461bcd60e51b8152600401610983906127d1565b600a805463ff00000019811663010000009182900460ff1615909102179055565b3233146114075760405162461bcd60e51b815260040161098390612806565b600a54610100900460ff1661145e5760405162461bcd60e51b815260206004820152601d60248201527f4461777320576f726c64203a3a204e6f7420596574204163746976652e0000006044820152606401610983565b6115b38161146b60005490565b6114759190612883565b11156114c55760405162461bcd60e51b815260206004820152602b6024820152600080516020612a0083398151915260448201526a204d617820537570706c7960a81b6064820152608401610983565b336000908152600c6020526040902054600a906114e3908390612883565b11156115405760405162461bcd60e51b815260206004820152602660248201527f4461777320576f726c64203a3a20416c7265616479206d696e7465642031302060448201526574696d65732160d01b6064820152608401610983565b6115518166470de4df8200006128af565b3410156115b85760405162461bcd60e51b815260206004820152602f60248201527f4461777320576f726c64203a3a20596f7520646f206e6f74206861766520737560448201526e0333334b1b4b2b73a10333ab732399608d1b6064820152608401610983565b336000908152600c6020526040812080548392906115d7908490612883565b909155506115e790503382611ce2565b50565b6001600160a01b0382163314156116145760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146116aa5760405162461bcd60e51b8152600401610983906127d1565b805161099f9060099060208401906121b3565b6116c8848484611aad565b6116d484848484611de3565b6116f1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146117215760405162461bcd60e51b8152600401610983906127d1565b600a5465010000000000900460ff16156117875760405162461bcd60e51b815260206004820152602160248201527f4461777320576f726c64203a3a205465616d20616c7265616479206d696e74656044820152601960fa1b6064820152608401610983565b600a805465ff00000000001916650100000000001790556112ba3360c8611ce2565b6007546001600160a01b031633146117d35760405162461bcd60e51b8152600401610983906127d1565b600a805464ff000000001981166401000000009182900460ff1615909102179055565b6060611803826000541190565b6118675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610983565b6000611874836001612883565b600a5490915060ff16611914576009805461188e90612911565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba90612911565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050915050919050565b60006008805461192390612911565b90501161193f576040518060200160405280600081525061196b565b600861194a82611ef2565b60405160200161195b9291906125ba565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461199c5760405162461bcd60e51b8152600401610983906127d1565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146119e35760405162461bcd60e51b8152600401610983906127d1565b6001600160a01b038116611a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610983565b6115e781611d91565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ab882611cfc565b80519091506000906001600160a01b0316336001600160a01b03161480611aef575033611ae484610a35565b6001600160a01b0316145b80611b0157508151611b019033610868565b905080611b2157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611b565760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b7d57604051633a954ecd60e21b815260040160405180910390fd5b611b8d6000848460000151611a51565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611c8257611c35816000541190565b15611c82578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611cd98584611ff0565b14949350505050565b61099f82826040518060200160405280600081525061205c565b6040805180820190915260008082526020820152611d1b826000541190565b611d3857604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d87579392505050565b5060001901611d3a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ee657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e27903390899088908890600401612675565b602060405180830381600087803b158015611e4157600080fd5b505af1925050508015611e71575060408051601f3d908101601f19168201909252611e6e9181019061250c565b60015b611ecc573d808015611e9f576040519150601f19603f3d011682016040523d82523d6000602084013e611ea4565b606091505b508051611ec4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611eea565b5060015b949350505050565b606081611f165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f405780611f2a8161294c565b9150611f399050600a8361289b565b9150611f1a565b60008167ffffffffffffffff811115611f5b57611f5b6129d3565b6040519080825280601f01601f191660200182016040528015611f85576020820181803683370190505b5090505b8415611eea57611f9a6001836128ce565b9150611fa7600a86612967565b611fb2906030612883565b60f81b818381518110611fc757611fc76129bd565b60200101906001600160f81b031916908160001a905350611fe9600a8661289b565b9450611f89565b600081815b8451811015611386576000858281518110612012576120126129bd565b602002602001015190508083116120385760008381526020829052604090209250612049565b600081815260208490526040902092505b50806120548161294c565b915050611ff5565b610b0483838360016000546001600160a01b03851661208d57604051622e076360e81b815260040160405180910390fd5b836120ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121aa5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612180575061217e6000888488611de3565b155b1561219e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612129565b50600055611cc5565b8280546121bf90612911565b90600052602060002090601f0160209004810192826121e15760008555612227565b82601f106121fa57805160ff1916838001178555612227565b82800160010185558215612227579182015b8281111561222757825182559160200191906001019061220c565b50610fc29291505b80821115610fc2576000815560010161222f565b600067ffffffffffffffff83111561225d5761225d6129d3565b612270601f8401601f1916602001612852565b905082815283838301111561228457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b257600080fd5b919050565b6000602082840312156122c957600080fd5b61196b8261229b565b600080604083850312156122e557600080fd5b6122ee8361229b565b91506122fc6020840161229b565b90509250929050565b60008060006060848603121561231a57600080fd5b6123238461229b565b92506123316020850161229b565b9150604084013590509250925092565b6000806000806080858703121561235757600080fd5b6123608561229b565b935061236e6020860161229b565b925060408501359150606085013567ffffffffffffffff81111561239157600080fd5b8501601f810187136123a257600080fd5b6123b187823560208401612243565b91505092959194509250565b600080604083850312156123d057600080fd5b6123d98361229b565b9150602083013580151581146123ee57600080fd5b809150509250929050565b6000806040838503121561240c57600080fd5b6124158361229b565b946020939093013593505050565b6000806040838503121561243657600080fd5b823567ffffffffffffffff8082111561244e57600080fd5b818501915085601f83011261246257600080fd5b8135602082821115612476576124766129d3565b8160051b9250612487818401612852565b8281528181019085830185870184018b10156124a257600080fd5b600096505b848710156124c55780358352600196909601959183019183016124a7565b509997909101359750505050505050565b6000602082840312156124e857600080fd5b5035919050565b60006020828403121561250157600080fd5b813561196b816129e9565b60006020828403121561251e57600080fd5b815161196b816129e9565b60006020828403121561253b57600080fd5b813567ffffffffffffffff81111561255257600080fd5b8201601f8101841361256357600080fd5b611eea84823560208401612243565b6000815180845261258a8160208601602086016128e5565b601f01601f19169290920160200192915050565b600081516125b08185602086016128e5565b9290920192915050565b600080845481600182811c9150808316806125d657607f831692505b60208084108214156125f657634e487b7160e01b86526022600452602486fd5b81801561260a576001811461261b57612648565b60ff19861689528489019650612648565b60008b81526020902060005b868110156126405781548b820152908501908301612627565b505084890196505b50505050505061266c61265b828661259e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a890830184612572565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ea578351835292840192918401916001016126ce565b50909695505050505050565b60208152600061196b6020830184612572565b6020808252602b90820152600080516020612a0083398151915260408201526a206d617820737570706c7960a81b606082015260800190565b6020808252602e908201527f4461777320576f726c64203a3a20596f7520646f206e6f74206861766520737560408201526d6666696369656e742066756e647360901b606082015260800190565b60208082526021908201527f4461777320576f726c64203a3a204d696e74696e67206973206f6e20506175736040820152606560f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f4461777320576f726c64203a3a2043616e6e6f742062652063616c6c6564206260408201526b1e48184818dbdb9d1c9858dd60a21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561287b5761287b6129d3565b604052919050565b6000821982111561289657612896612991565b500190565b6000826128aa576128aa6129a7565b500490565b60008160001904831182151516156128c9576128c9612991565b500290565b6000828210156128e0576128e0612991565b500390565b60005b838110156129005781810151838201526020016128e8565b838111156116f15750506000910152565b600181811c9082168061292557607f821691505b6020821081141561294657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561296057612960612991565b5060010190565b600082612976576129766129a7565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115e757600080fdfe4461777320576f726c64203a3a2043616e6e6f74206d696e74206265796f6e64a2646970667358221220460831f8b8931bfb3e8380c211e6ffa05021d7f82480b37cb85648de3011d50d64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80637116abf911610190578063b87e291a116100dc578063d648d0d511610095578063e985e9c51161006f578063e985e9c51461084d578063ec14e9e414610896578063f2fde38b146108ac578063ffcdd8cf146108cc57600080fd5b8063d648d0d514610800578063e222c7f914610815578063e8b5498d1461082a57600080fd5b8063b87e291a1461075a578063b88d4fde14610775578063ba7a86b814610795578063c1bde404146107aa578063c4ae3168146107cb578063c87b56dd146107e057600080fd5b806395d89b4111610149578063a07b0eb011610123578063a07b0eb0146106f0578063a22cb46514610705578063afe4a19714610725578063b0962c531461073a57600080fd5b806395d89b41146106b357806399800185146106c8578063a0712d68146106dd57600080fd5b80637116abf914610609578063715018a61461061c5780637cb647591461063157806383a974a2146106515780638456cb59146106735780638da5cb5b1461069557600080fd5b80632904e6d91161024f5780634f6ccce7116102085780635b8ad429116101e25780635b8ad4291461059f5780636352211e146105b45780636f0fb96a146105d457806370a08231146105e957600080fd5b80634f6ccce71461055057806354214f691461057057806359eda1b51461058a57600080fd5b80632904e6d9146104be5780632f745c59146104d15780633ccfd60b146104f157806342842e0e1461050657806349590657146105265780634cf5f7a41461053b57600080fd5b80630f59c6eb116102a15780630f59c6eb146103f55780631305b59c1461041457806318160ddd146104415780631c16521c1461045657806320badd321461048357806323b872dd1461049e57600080fd5b806301ffc9a7146102e95780630345e3cb1461031e5780630675b7c61461035957806306fdde031461037b578063081812fc1461039d578063095ea7b3146103d5575b600080fd5b3480156102f557600080fd5b506103096103043660046124ef565b6108ec565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061034b6103393660046122b7565b600d6020526000908152604090205481565b604051908152602001610315565b34801561036557600080fd5b50610379610374366004612529565b610959565b005b34801561038757600080fd5b506103906109a3565b60405161031591906126f6565b3480156103a957600080fd5b506103bd6103b83660046124d6565b610a35565b6040516001600160a01b039091168152602001610315565b3480156103e157600080fd5b506103796103f03660046123f9565b610a7b565b34801561040157600080fd5b50600a5461030990610100900460ff1681565b34801561042057600080fd5b5061034b61042f3660046122b7565b600e6020526000908152604090205481565b34801561044d57600080fd5b5060005461034b565b34801561046257600080fd5b5061034b6104713660046122b7565b600c6020526000908152604090205481565b34801561048f57600080fd5b5061034b662aa1efb94e000081565b3480156104aa57600080fd5b506103796104b9366004612305565b610b09565b6103796104cc366004612423565b610b14565b3480156104dd57600080fd5b5061034b6104ec3660046123f9565b610d06565b3480156104fd57600080fd5b50610379610ddb565b34801561051257600080fd5b50610379610521366004612305565b610ef6565b34801561053257600080fd5b50600b5461034b565b34801561054757600080fd5b50610390610f11565b34801561055c57600080fd5b5061034b61056b3660046124d6565b610f9f565b34801561057c57600080fd5b50600a546103099060ff1681565b34801561059657600080fd5b50610379610fc6565b3480156105ab57600080fd5b5061037961100f565b3480156105c057600080fd5b506103bd6105cf3660046124d6565b61104d565b3480156105e057600080fd5b5061034b600081565b3480156105f557600080fd5b5061034b6106043660046122b7565b61105f565b610379610617366004612423565b6110ad565b34801561062857600080fd5b50610379611286565b34801561063d57600080fd5b5061037961064c3660046124d6565b6112bc565b34801561065d57600080fd5b506106666112eb565b60405161031591906126b2565b34801561067f57600080fd5b50600a5461030990640100000000900460ff1681565b3480156106a157600080fd5b506007546001600160a01b03166103bd565b3480156106bf57600080fd5b5061039061138e565b3480156106d457600080fd5b5061037961139d565b6103796106eb3660046124d6565b6113e8565b3480156106fc57600080fd5b5061034b600581565b34801561071157600080fd5b506103796107203660046123bd565b6115ea565b34801561073157600080fd5b5061034b600281565b34801561074657600080fd5b50610379610755366004612529565b611680565b34801561076657600080fd5b5061034b66470de4df82000081565b34801561078157600080fd5b50610379610790366004612341565b6116bd565b3480156107a157600080fd5b506103796116f7565b3480156107b657600080fd5b50600a54610309906301000000900460ff1681565b3480156107d757600080fd5b506103796117a9565b3480156107ec57600080fd5b506103906107fb3660046124d6565b6117f6565b34801561080c57600080fd5b5061034b600a81565b34801561082157600080fd5b50610379611972565b34801561083657600080fd5b50600a546103099065010000000000900460ff1681565b34801561085957600080fd5b506103096108683660046122d2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108a257600080fd5b5061034b6115b381565b3480156108b857600080fd5b506103796108c73660046122b7565b6119b9565b3480156108d857600080fd5b50600a546103099062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061091d57506001600160e01b03198216635b5e139f60e01b145b8061093857506001600160e01b0319821663780e9d6360e01b145b8061095357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461098c5760405162461bcd60e51b8152600401610983906127d1565b60405180910390fd5b805161099f9060089060208401906121b3565b5050565b6060600180546109b290612911565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90612911565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a42826000541190565b610a5f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a868261104d565b9050806001600160a01b0316836001600160a01b03161415610abb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610adb5750610ad98133610868565b155b15610af9576040516367d9dca160e11b815260040160405180910390fd5b610b04838383611a51565b505050565b610b04838383611aad565b323314610b335760405162461bcd60e51b815260040161098390612806565b600a5462010000900460ff16610b5b5760405162461bcd60e51b815260040161098390612790565b6115b381610b6860005490565b610b729190612883565b1115610b905760405162461bcd60e51b815260040161098390612709565b336000908152600d6020526040902054600590610bae908390612883565b1115610c075760405162461bcd60e51b81526020600482015260346024820152600080516020612a008339815191526044820152732057686974656c697374206d6178206d696e742160601b6064820152608401610983565b610c1881662aa1efb94e00006128af565b341015610c375760405162461bcd60e51b815260040161098390612742565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c7d83600b5483611ccc565b610cd75760405162461bcd60e51b815260206004820152602560248201527f4461777320576f726c64203a3a20596f7520617265206e6f742077686974656c6044820152641a5cdd195960da1b6064820152608401610983565b336000908152600d602052604081208054849290610cf6908490612883565b90915550610b0490503383611ce2565b6000610d118361105f565b8210610d30576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610dc9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d8b57805192505b876001600160a01b0316836001600160a01b03161415610dc05786841415610db95750935061095392505050565b6001909301925b50600101610d38565b50610dd261297b565b50505092915050565b6007546001600160a01b03163314610e055760405162461bcd60e51b8152600401610983906127d1565b60006064610e1447603c6128af565b610e1e919061289b565b905060006064610e2e83476128ce565b610e399060286128af565b610e43919061289b565b604051909150730fac938e94ae618ee348b00cd31a52fe48cbac359083156108fc029084906000818181858888f19350505050158015610e87573d6000803e3d6000fd5b5060405173654bb439d0f881c3ca969aa33c131301d51e3bfb9082156108fc029083906000818181858888f19350505050158015610ec9573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610b04573d6000803e3d6000fd5b610b04838383604051806020016040528060008152506116bd565b60098054610f1e90612911565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612911565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b600080548210610fc2576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610ff05760405162461bcd60e51b8152600401610983906127d1565b600a805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b031633146110395760405162461bcd60e51b8152600401610983906127d1565b600a805460ff19811660ff90911615179055565b600061105882611cfc565b5192915050565b60006001600160a01b038216611088576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b3233146110cc5760405162461bcd60e51b815260040161098390612806565b600a546301000000900460ff166110f55760405162461bcd60e51b815260040161098390612790565b6115b38161110260005490565b61110c9190612883565b111561112a5760405162461bcd60e51b815260040161098390612709565b336000908152600e6020526040902054600290611148908390612883565b111561119a5760405162461bcd60e51b815260206004820152602d6024820152600080516020612a0083398151915260448201526c204f47206d6178206d696e742160981b6064820152608401610983565b6111a58160006128af565b3410156111c45760405162461bcd60e51b815260040161098390612742565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061120a83600b5483611ccc565b6112675760405162461bcd60e51b815260206004820152602860248201527f4461777320576f726c64203a3a20596f7520646f6e2774206861766520746865604482015267204f4720726f6c6560c01b6064820152608401610983565b336000908152600e602052604081208054849290610cf6908490612883565b6007546001600160a01b031633146112b05760405162461bcd60e51b8152600401610983906127d1565b6112ba6000611d91565b565b6007546001600160a01b031633146112e65760405162461bcd60e51b8152600401610983906127d1565b600b55565b60603360006112f98261105f565b905060008167ffffffffffffffff811115611316576113166129d3565b60405190808252806020026020018201604052801561133f578160200160208202803683370190505b50905060005b82811015611386576113578482610d06565b828281518110611369576113696129bd565b60209081029190910101528061137e8161294c565b915050611345565b509392505050565b6060600280546109b290612911565b6007546001600160a01b031633146113c75760405162461bcd60e51b8152600401610983906127d1565b600a805463ff00000019811663010000009182900460ff1615909102179055565b3233146114075760405162461bcd60e51b815260040161098390612806565b600a54610100900460ff1661145e5760405162461bcd60e51b815260206004820152601d60248201527f4461777320576f726c64203a3a204e6f7420596574204163746976652e0000006044820152606401610983565b6115b38161146b60005490565b6114759190612883565b11156114c55760405162461bcd60e51b815260206004820152602b6024820152600080516020612a0083398151915260448201526a204d617820537570706c7960a81b6064820152608401610983565b336000908152600c6020526040902054600a906114e3908390612883565b11156115405760405162461bcd60e51b815260206004820152602660248201527f4461777320576f726c64203a3a20416c7265616479206d696e7465642031302060448201526574696d65732160d01b6064820152608401610983565b6115518166470de4df8200006128af565b3410156115b85760405162461bcd60e51b815260206004820152602f60248201527f4461777320576f726c64203a3a20596f7520646f206e6f74206861766520737560448201526e0333334b1b4b2b73a10333ab732399608d1b6064820152608401610983565b336000908152600c6020526040812080548392906115d7908490612883565b909155506115e790503382611ce2565b50565b6001600160a01b0382163314156116145760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146116aa5760405162461bcd60e51b8152600401610983906127d1565b805161099f9060099060208401906121b3565b6116c8848484611aad565b6116d484848484611de3565b6116f1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146117215760405162461bcd60e51b8152600401610983906127d1565b600a5465010000000000900460ff16156117875760405162461bcd60e51b815260206004820152602160248201527f4461777320576f726c64203a3a205465616d20616c7265616479206d696e74656044820152601960fa1b6064820152608401610983565b600a805465ff00000000001916650100000000001790556112ba3360c8611ce2565b6007546001600160a01b031633146117d35760405162461bcd60e51b8152600401610983906127d1565b600a805464ff000000001981166401000000009182900460ff1615909102179055565b6060611803826000541190565b6118675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610983565b6000611874836001612883565b600a5490915060ff16611914576009805461188e90612911565b80601f01602080910402602001604051908101604052809291908181526020018280546118ba90612911565b80156119075780601f106118dc57610100808354040283529160200191611907565b820191906000526020600020905b8154815290600101906020018083116118ea57829003601f168201915b5050505050915050919050565b60006008805461192390612911565b90501161193f576040518060200160405280600081525061196b565b600861194a82611ef2565b60405160200161195b9291906125ba565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461199c5760405162461bcd60e51b8152600401610983906127d1565b600a805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146119e35760405162461bcd60e51b8152600401610983906127d1565b6001600160a01b038116611a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610983565b6115e781611d91565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ab882611cfc565b80519091506000906001600160a01b0316336001600160a01b03161480611aef575033611ae484610a35565b6001600160a01b0316145b80611b0157508151611b019033610868565b905080611b2157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611b565760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b7d57604051633a954ecd60e21b815260040160405180910390fd5b611b8d6000848460000151611a51565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611c8257611c35816000541190565b15611c82578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600082611cd98584611ff0565b14949350505050565b61099f82826040518060200160405280600081525061205c565b6040805180820190915260008082526020820152611d1b826000541190565b611d3857604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d87579392505050565b5060001901611d3a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ee657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e27903390899088908890600401612675565b602060405180830381600087803b158015611e4157600080fd5b505af1925050508015611e71575060408051601f3d908101601f19168201909252611e6e9181019061250c565b60015b611ecc573d808015611e9f576040519150601f19603f3d011682016040523d82523d6000602084013e611ea4565b606091505b508051611ec4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611eea565b5060015b949350505050565b606081611f165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f405780611f2a8161294c565b9150611f399050600a8361289b565b9150611f1a565b60008167ffffffffffffffff811115611f5b57611f5b6129d3565b6040519080825280601f01601f191660200182016040528015611f85576020820181803683370190505b5090505b8415611eea57611f9a6001836128ce565b9150611fa7600a86612967565b611fb2906030612883565b60f81b818381518110611fc757611fc76129bd565b60200101906001600160f81b031916908160001a905350611fe9600a8661289b565b9450611f89565b600081815b8451811015611386576000858281518110612012576120126129bd565b602002602001015190508083116120385760008381526020829052604090209250612049565b600081815260208490526040902092505b50806120548161294c565b915050611ff5565b610b0483838360016000546001600160a01b03851661208d57604051622e076360e81b815260040160405180910390fd5b836120ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121aa5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612180575061217e6000888488611de3565b155b1561219e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612129565b50600055611cc5565b8280546121bf90612911565b90600052602060002090601f0160209004810192826121e15760008555612227565b82601f106121fa57805160ff1916838001178555612227565b82800160010185558215612227579182015b8281111561222757825182559160200191906001019061220c565b50610fc29291505b80821115610fc2576000815560010161222f565b600067ffffffffffffffff83111561225d5761225d6129d3565b612270601f8401601f1916602001612852565b905082815283838301111561228457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b257600080fd5b919050565b6000602082840312156122c957600080fd5b61196b8261229b565b600080604083850312156122e557600080fd5b6122ee8361229b565b91506122fc6020840161229b565b90509250929050565b60008060006060848603121561231a57600080fd5b6123238461229b565b92506123316020850161229b565b9150604084013590509250925092565b6000806000806080858703121561235757600080fd5b6123608561229b565b935061236e6020860161229b565b925060408501359150606085013567ffffffffffffffff81111561239157600080fd5b8501601f810187136123a257600080fd5b6123b187823560208401612243565b91505092959194509250565b600080604083850312156123d057600080fd5b6123d98361229b565b9150602083013580151581146123ee57600080fd5b809150509250929050565b6000806040838503121561240c57600080fd5b6124158361229b565b946020939093013593505050565b6000806040838503121561243657600080fd5b823567ffffffffffffffff8082111561244e57600080fd5b818501915085601f83011261246257600080fd5b8135602082821115612476576124766129d3565b8160051b9250612487818401612852565b8281528181019085830185870184018b10156124a257600080fd5b600096505b848710156124c55780358352600196909601959183019183016124a7565b509997909101359750505050505050565b6000602082840312156124e857600080fd5b5035919050565b60006020828403121561250157600080fd5b813561196b816129e9565b60006020828403121561251e57600080fd5b815161196b816129e9565b60006020828403121561253b57600080fd5b813567ffffffffffffffff81111561255257600080fd5b8201601f8101841361256357600080fd5b611eea84823560208401612243565b6000815180845261258a8160208601602086016128e5565b601f01601f19169290920160200192915050565b600081516125b08185602086016128e5565b9290920192915050565b600080845481600182811c9150808316806125d657607f831692505b60208084108214156125f657634e487b7160e01b86526022600452602486fd5b81801561260a576001811461261b57612648565b60ff19861689528489019650612648565b60008b81526020902060005b868110156126405781548b820152908501908301612627565b505084890196505b50505050505061266c61265b828661259e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a890830184612572565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ea578351835292840192918401916001016126ce565b50909695505050505050565b60208152600061196b6020830184612572565b6020808252602b90820152600080516020612a0083398151915260408201526a206d617820737570706c7960a81b606082015260800190565b6020808252602e908201527f4461777320576f726c64203a3a20596f7520646f206e6f74206861766520737560408201526d6666696369656e742066756e647360901b606082015260800190565b60208082526021908201527f4461777320576f726c64203a3a204d696e74696e67206973206f6e20506175736040820152606560f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f4461777320576f726c64203a3a2043616e6e6f742062652063616c6c6564206260408201526b1e48184818dbdb9d1c9858dd60a21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561287b5761287b6129d3565b604052919050565b6000821982111561289657612896612991565b500190565b6000826128aa576128aa6129a7565b500490565b60008160001904831182151516156128c9576128c9612991565b500290565b6000828210156128e0576128e0612991565b500390565b60005b838110156129005781810151838201526020016128e8565b838111156116f15750506000910152565b600181811c9082168061292557607f821691505b6020821081141561294657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561296057612960612991565b5060010190565b600082612976576129766129a7565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115e757600080fdfe4461777320576f726c64203a3a2043616e6e6f74206d696e74206265796f6e64a2646970667358221220460831f8b8931bfb3e8380c211e6ffa05021d7f82480b37cb85648de3011d50d64736f6c63430008070033
Deployed Bytecode Sourcemap
43460:6510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30668:372;;;;;;;;;;-1:-1:-1;30668:372:0;;;;;:::i;:::-;;:::i;:::-;;;8648:14:1;;8641:22;8623:41;;8611:2;8596:18;30668:372:0;;;;;;;;44439:53;;;;;;;;;;-1:-1:-1;44439:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8821:25:1;;;8809:2;8794:18;44439:53:0;8675:177:1;48428:115:0;;;;;;;;;;-1:-1:-1;48428:115:0;;;;;:::i;:::-;;:::i;:::-;;32484:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33961:204::-;;;;;;;;;;-1:-1:-1;33961:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;33961:204:0;7145:203:1;33550:345:0;;;;;;;;;;-1:-1:-1;33550:345:0;;;;;:::i;:::-;;:::i;44206:22::-;;;;;;;;;;-1:-1:-1;44206:22:0;;;;;;;;;;;44499:46;;;;;;;;;;-1:-1:-1;44499:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;28935:101;;;;;;;;;;-1:-1:-1;28988:7:0;29015:13;28935:101;;44382:50;;;;;;;;;;-1:-1:-1;44382:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;43705:57;;;;;;;;;;;;43752:10;43705:57;;34818:170;;;;;;;;;;-1:-1:-1;34818:170:0;;;;;:::i;:::-;;:::i;45347:863::-;;;;;;:::i;:::-;;:::i;29589:1007::-;;;;;;;;;;-1:-1:-1;29589:1007:0;;;;;:::i;:::-;;:::i;49375:592::-;;;;;;;;;;;;;:::i;35059:185::-;;;;;;;;;;-1:-1:-1;35059:185:0;;;;;:::i;:::-;;:::i;48812:92::-;;;;;;;;;;-1:-1:-1;48886:10:0;;48812:92;;43982:35;;;;;;;;;;;;;:::i;29113:176::-;;;;;;;;;;-1:-1:-1;29113:176:0;;;;;:::i;:::-;;:::i;44177:22::-;;;;;;;;;;-1:-1:-1;44177:22:0;;;;;;;;49079:98;;;;;;;;;;;;;:::i;49282:85::-;;;;;;;;;;;;;:::i;32293:124::-;;;;;;;;;;-1:-1:-1;32293:124:0;;;;;:::i;:::-;;:::i;43597:49::-;;;;;;;;;;;;43637:9;43597:49;;31104:206;;;;;;;;;;-1:-1:-1;31104:206:0;;;;;:::i;:::-;;:::i;46218:817::-;;;;;;:::i;:::-;;:::i;7415:103::-;;;;;;;;;;;;;:::i;48699:105::-;;;;;;;;;;-1:-1:-1;48699:105:0;;;;;:::i;:::-;;:::i;48014:406::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44292:17::-;;;;;;;;;;-1:-1:-1;44292:17:0;;;;;;;;;;;6764:87;;;;;;;;;;-1:-1:-1;6837:6:0;;-1:-1:-1;;;;;6837:6:0;6764:87;;32653:104;;;;;;;;;;;;;:::i;48994:77::-;;;;;;;;;;;;;:::i;44758:581::-;;;;;;:::i;:::-;;:::i;43769:50::-;;;;;;;;;;;;43818:1;43769:50;;34237:279;;;;;;;;;;-1:-1:-1;34237:279:0;;;;;:::i;:::-;;:::i;43653:43::-;;;;;;;;;;;;43695:1;43653:43;;48549:142;;;;;;;;;;-1:-1:-1;48549:142:0;;;;;:::i;:::-;;:::i;43828:53::-;;;;;;;;;;;;43872:9;43828:53;;35315:308;;;;;;;;;;-1:-1:-1;35315:308:0;;;;;:::i;:::-;;:::i;47108:179::-;;;;;;;;;;;;;:::i;44267:18::-;;;;;;;;;;-1:-1:-1;44267:18:0;;;;;;;;;;;48912:74;;;;;;;;;;;;;:::i;47451:473::-;;;;;;;;;;-1:-1:-1;47451:473:0;;;;;:::i;:::-;;:::i;43888:48::-;;;;;;;;;;;;43934:2;43888:48;;49185:89;;;;;;;;;;;;;:::i;44316:22::-;;;;;;;;;;-1:-1:-1;44316:22:0;;;;;;;;;;;34587:164;;;;;;;;;;-1:-1:-1;34587:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34708:25:0;;;34684:4;34708:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34587:164;43539:45;;;;;;;;;;;;43580:4;43539:45;;7673:201;;;;;;;;;;-1:-1:-1;7673:201:0;;;;;:::i;:::-;;:::i;44235:25::-;;;;;;;;;;-1:-1:-1;44235:25:0;;;;;;;;;;;30668:372;30770:4;-1:-1:-1;;;;;;30807:40:0;;-1:-1:-1;;;30807:40:0;;:105;;-1:-1:-1;;;;;;;30864:48:0;;-1:-1:-1;;;30864:48:0;30807:105;:172;;;-1:-1:-1;;;;;;;30929:50:0;;-1:-1:-1;;;30929:50:0;30807:172;:225;;;-1:-1:-1;;;;;;;;;;19680:40:0;;;30996:36;30787:245;30668:372;-1:-1:-1;;30668:372:0:o;48428:115::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;;;;;;;;;48507:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48428:115:::0;:::o;32484:100::-;32538:13;32571:5;32564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32484:100;:::o;33961:204::-;34029:7;34054:16;34062:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;34054:16;34049:64;;34079:34;;-1:-1:-1;;;34079:34:0;;;;;;;;;;;34049:64;-1:-1:-1;34133:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34133:24:0;;33961:204::o;33550:345::-;33623:13;33639:24;33655:7;33639:15;:24::i;:::-;33623:40;;33684:5;-1:-1:-1;;;;;33678:11:0;:2;-1:-1:-1;;;;;33678:11:0;;33674:48;;;33698:24;;-1:-1:-1;;;33698:24:0;;;;;;;;;;;33674:48;5568:10;-1:-1:-1;;;;;33739:21:0;;;;;;:63;;-1:-1:-1;33765:37:0;33782:5;5568:10;34587:164;:::i;33765:37::-;33764:38;33739:63;33735:111;;;33811:35;;-1:-1:-1;;;33811:35:0;;;;;;;;;;;33735:111;33859:28;33868:2;33872:7;33881:5;33859:8;:28::i;:::-;33612:283;33550:345;;:::o;34818:170::-;34952:28;34962:4;34968:2;34972:7;34952:9;:28::i;45347:863::-;44658:9;44671:10;44658:23;44650:80;;;;-1:-1:-1;;;44650:80:0;;;;;;;:::i;:::-;45468:13:::1;::::0;;;::::1;;;45460:59;;;;-1:-1:-1::0;;;45460:59:0::1;;;;;;;:::i;:::-;43580:4;45555:9;45539:13;28988:7:::0;29015:13;;28935:101;45539:13:::1;:25;;;;:::i;:::-;45538:45;;45530:101;;;;-1:-1:-1::0;;;45530:101:0::1;;;;;;;:::i;:::-;45670:10;45651:30;::::0;;;:18:::1;:30;::::0;;;;;43818:1:::1;::::0;45651:42:::1;::::0;45684:9;;45651:42:::1;:::i;:::-;45650:71;;45642:136;;;::::0;-1:-1:-1;;;45642:136:0;;12134:2:1;45642:136:0::1;::::0;::::1;12116:21:1::0;12173:2;12153:18;;;12146:30;-1:-1:-1;;;;;;;;;;;12192:18:1;;;12185:62;-1:-1:-1;;;12263:18:1;;;12256:50;12323:19;;45642:136:0::1;11932:416:1::0;45642:136:0::1;45811:32;45834:9:::0;43752:10:::1;45811:32;:::i;:::-;45797:9;:47;;45789:106;;;;-1:-1:-1::0;;;45789:106:0::1;;;;;;;:::i;:::-;45961:28;::::0;-1:-1:-1;;45978:10:0::1;5754:2:1::0;5750:15;5746:53;45961:28:0::1;::::0;::::1;5734:66:1::0;45934:14:0::1;::::0;5816:12:1;;45961:28:0::1;;;;;;;;;;;;45951:39;;;;;;45934:56;;46009:52;46028:12;46042:10;;46054:6;46009:18;:52::i;:::-;46001:102;;;::::0;-1:-1:-1;;;46001:102:0;;11728:2:1;46001:102:0::1;::::0;::::1;11710:21:1::0;11767:2;11747:18;;;11740:30;11806:34;11786:18;;;11779:62;-1:-1:-1;;;11857:18:1;;;11850:35;11902:19;;46001:102:0::1;11526:401:1::0;46001:102:0::1;46135:10;46116:30;::::0;;;:18:::1;:30;::::0;;;;:43;;46150:9;;46116:30;:43:::1;::::0;46150:9;;46116:43:::1;:::i;:::-;::::0;;;-1:-1:-1;46170:32:0::1;::::0;-1:-1:-1;46180:10:0::1;46192:9:::0;46170::::1;:32::i;29589:1007::-:0;29678:7;29711:16;29721:5;29711:9;:16::i;:::-;29702:5;:25;29698:61;;29736:23;;-1:-1:-1;;;29736:23:0;;;;;;;;;;;29698:61;29770:22;29015:13;;;29770:22;;30033:466;30053:14;30049:1;:18;30033:466;;;30093:31;30127:14;;;:11;:14;;;;;;;;;30093:48;;;;;;;;;-1:-1:-1;;;;;30093:48:0;;;;;-1:-1:-1;;;30093:48:0;;;;;;;;;;;;30164:28;30160:111;;30237:14;;;-1:-1:-1;30160:111:0;30314:5;-1:-1:-1;;;;;30293:26:0;:17;-1:-1:-1;;;;;30293:26:0;;30289:195;;;30363:5;30348:11;:20;30344:85;;;-1:-1:-1;30404:1:0;-1:-1:-1;30397:8:0;;-1:-1:-1;;;30397:8:0;30344:85;30451:13;;;;;30289:195;-1:-1:-1;30069:3:0;;30033:466;;;-1:-1:-1;30575:13:0;;:::i;:::-;29687:909;;;29589:1007;;;;:::o;49375:592::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;49493:23:::1;49546:3;49519:26;:21;49543:2;49519:26;:::i;:::-;:30;;;;:::i;:::-;49493:56:::0;-1:-1:-1;49645:18:0::1;49713:3;49667:39;49493:56:::0;49667:21:::1;:39;:::i;:::-;49666:46;::::0;49710:2:::1;49666:46;:::i;:::-;:50;;;;:::i;:::-;49737:77;::::0;49645:71;;-1:-1:-1;49745:42:0::1;::::0;49737:77;::::1;;;::::0;49798:15;;49737:77:::1;::::0;;;49798:15;49745:42;49737:77;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49825:72:0::1;::::0;49833:42:::1;::::0;49825:72;::::1;;;::::0;49886:10;;49825:72:::1;::::0;;;49886:10;49833:42;49825:72;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49908:51:0::1;::::0;49916:10:::1;::::0;49937:21:::1;49908:51:::0;::::1;;;::::0;::::1;::::0;;;49937:21;49916:10;49908:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;35059:185:::0;35197:39;35214:4;35220:2;35224:7;35197:39;;;;;;;;;;;;:16;:39::i;43982:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29113:176::-;29180:7;29015:13;;29204:5;:22;29200:58;;29235:23;;-1:-1:-1;;;29235:23:0;;;;;;;;;;;29200:58;-1:-1:-1;29276:5:0;29113:176::o;49079:98::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;49156:13:::1;::::0;;-1:-1:-1;;49139:30:0;::::1;49156:13:::0;;;;::::1;;;49155:14;49139:30:::0;;::::1;;::::0;;49079:98::o;49282:85::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;49349:10:::1;::::0;;-1:-1:-1;;49335:24:0;::::1;49349:10;::::0;;::::1;49348:11;49335:24;::::0;;49282:85::o;32293:124::-;32357:7;32384:20;32396:7;32384:11;:20::i;:::-;:25;;32293:124;-1:-1:-1;;32293:124:0:o;31104:206::-;31168:7;-1:-1:-1;;;;;31192:19:0;;31188:60;;31220:28;;-1:-1:-1;;;31220:28:0;;;;;;;;;;;31188:60;-1:-1:-1;;;;;;31274:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31274:27:0;;31104:206::o;46218:817::-;44658:9;44671:10;44658:23;44650:80;;;;-1:-1:-1;;;44650:80:0;;;;;;;:::i;:::-;46332:6:::1;::::0;;;::::1;;;46324:52;;;;-1:-1:-1::0;;;46324:52:0::1;;;;;;;:::i;:::-;43580:4;46412:9;46396:13;28988:7:::0;29015:13;;28935:101;46396:13:::1;:25;;;;:::i;:::-;46395:45;;46387:101;;;;-1:-1:-1::0;;;46387:101:0::1;;;;;;;:::i;:::-;46520:10;46508:23;::::0;;;:11:::1;:23;::::0;;;;;43695:1:::1;::::0;46508:35:::1;::::0;46534:9;;46508:35:::1;:::i;:::-;46507:57;;46499:115;;;::::0;-1:-1:-1;;;46499:115:0;;14569:2:1;46499:115:0::1;::::0;::::1;14551:21:1::0;14608:2;14588:18;;;14581:30;-1:-1:-1;;;;;;;;;;;14627:18:1;;;14620:62;-1:-1:-1;;;14698:18:1;;;14691:43;14751:19;;46499:115:0::1;14367:409:1::0;46499:115:0::1;46647:25;46663:9:::0;43637::::1;46647:25;:::i;:::-;46633:9;:40;;46625:99;;;;-1:-1:-1::0;;;46625:99:0::1;;;;;;;:::i;:::-;46790:28;::::0;-1:-1:-1;;46807:10:0::1;5754:2:1::0;5750:15;5746:53;46790:28:0::1;::::0;::::1;5734:66:1::0;46763:14:0::1;::::0;5816:12:1;;46790:28:0::1;;;;;;;;;;;;46780:39;;;;;;46763:56;;46838:52;46857:12;46871:10;;46883:6;46838:18;:52::i;:::-;46830:105;;;::::0;-1:-1:-1;;;46830:105:0;;14160:2:1;46830:105:0::1;::::0;::::1;14142:21:1::0;14199:2;14179:18;;;14172:30;14238:34;14218:18;;;14211:62;-1:-1:-1;;;14289:18:1;;;14282:38;14337:19;;46830:105:0::1;13958:404:1::0;46830:105:0::1;46960:10;46948:23;::::0;;;:11:::1;:23;::::0;;;;:36;;46975:9;;46948:23;:36:::1;::::0;46975:9;;46948:36:::1;:::i;7415:103::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;7480:30:::1;7507:1;7480:18;:30::i;:::-;7415:103::o:0;48699:105::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48772:10:::1;:24:::0;48699:105::o;48014:406::-;48056:16;48101:10;48084:14;48149:17;48101:10;48149:9;:17::i;:::-;48122:44;;48177:25;48219:16;48205:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48205:31:0;;48177:59;;48253:13;48249:136;48280:16;48272:5;:24;48249:136;;;48339:34;48359:6;48367:5;48339:19;:34::i;:::-;48321:8;48330:5;48321:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;48298:7;;;;:::i;:::-;;;;48249:136;;;-1:-1:-1;48404:8:0;48014:406;-1:-1:-1;;;48014:406:0:o;32653:104::-;32709:13;32742:7;32735:14;;;;;:::i;48994:77::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;49057:6:::1;::::0;;-1:-1:-1;;49047:16:0;::::1;49057:6:::0;;;;::::1;;;49056:7;49047:16:::0;;::::1;;::::0;;48994:77::o;44758:581::-;44658:9;44671:10;44658:23;44650:80;;;;-1:-1:-1;;;44650:80:0;;;;;;;:::i;:::-;44839:10:::1;::::0;::::1;::::0;::::1;;;44831:52;;;::::0;-1:-1:-1;;;44831:52:0;;14983:2:1;44831:52:0::1;::::0;::::1;14965:21:1::0;15022:2;15002:18;;;14995:30;15061:31;15041:18;;;15034:59;15110:18;;44831:52:0::1;14781:353:1::0;44831:52:0::1;43580:4;44919:9;44903:13;28988:7:::0;29015:13;;28935:101;44903:13:::1;:25;;;;:::i;:::-;44902:45;;44894:101;;;::::0;-1:-1:-1;;;44894:101:0;;13748:2:1;44894:101:0::1;::::0;::::1;13730:21:1::0;13787:2;13767:18;;;13760:30;-1:-1:-1;;;;;;;;;;;13806:18:1;;;13799:62;-1:-1:-1;;;13877:18:1;;;13870:41;13928:19;;44894:101:0::1;13546:407:1::0;44894:101:0::1;45031:10;45015:27;::::0;;;:15:::1;:27;::::0;;;;;43934:2:::1;::::0;45015:38:::1;::::0;45044:9;;45015:38:::1;:::i;:::-;45014:63;;45006:114;;;::::0;-1:-1:-1;;;45006:114:0;;10919:2:1;45006:114:0::1;::::0;::::1;10901:21:1::0;10958:2;10938:18;;;10931:30;10997:34;10977:18;;;10970:62;-1:-1:-1;;;11048:18:1;;;11041:36;11094:19;;45006:114:0::1;10717:402:1::0;45006:114:0::1;45153:29;45173:9:::0;43872::::1;45153:29;:::i;:::-;45139:9;:44;;45131:104;;;::::0;-1:-1:-1;;;45131:104:0;;13332:2:1;45131:104:0::1;::::0;::::1;13314:21:1::0;13371:2;13351:18;;;13344:30;13410:34;13390:18;;;13383:62;-1:-1:-1;;;13461:18:1;;;13454:45;13516:19;;45131:104:0::1;13130:411:1::0;45131:104:0::1;45264:10;45248:27;::::0;;;:15:::1;:27;::::0;;;;:40;;45279:9;;45248:27;:40:::1;::::0;45279:9;;45248:40:::1;:::i;:::-;::::0;;;-1:-1:-1;45299:32:0::1;::::0;-1:-1:-1;45309:10:0::1;45321:9:::0;45299::::1;:32::i;:::-;44758:581:::0;:::o;34237:279::-;-1:-1:-1;;;;;34328:24:0;;5568:10;34328:24;34324:54;;;34361:17;;-1:-1:-1;;;34361:17:0;;;;;;;;;;;34324:54;5568:10;34391:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34391:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34391:53:0;;;;;;;;;;34460:48;;8623:41:1;;;34391:42:0;;5568:10;34460:48;;8596:18:1;34460:48:0;;;;;;;34237:279;;:::o;48549:142::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48641:42;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;35315:308::-:0;35474:28;35484:4;35490:2;35494:7;35474:9;:28::i;:::-;35518:48;35541:4;35547:2;35551:7;35560:5;35518:22;:48::i;:::-;35513:102;;35575:40;;-1:-1:-1;;;35575:40:0;;;;;;;;;;;35513:102;35315:308;;;;:::o;47108:179::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;47166:10:::1;::::0;;;::::1;;;47165:11;47157:57;;;::::0;-1:-1:-1;;;47157:57:0;;10517:2:1;47157:57:0::1;::::0;::::1;10499:21:1::0;10556:2;10536:18;;;10529:30;10595:34;10575:18;;;10568:62;-1:-1:-1;;;10646:18:1;;;10639:31;10687:19;;47157:57:0::1;10315:397:1::0;47157:57:0::1;47225:10;:17:::0;;-1:-1:-1;;47225:17:0::1;::::0;::::1;::::0;;47253:26:::1;47263:10;47275:3;47253:9;:26::i;48912:74::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;48973:5:::1;::::0;;-1:-1:-1;;48964:14:0;::::1;48973:5:::0;;;;::::1;;;48972:6;48964:14:::0;;::::1;;::::0;;48912:74::o;47451:473::-;47524:13;47558:16;47566:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;47558:16;47550:76;;;;-1:-1:-1;;;47550:76:0;;12916:2:1;47550:76:0;;;12898:21:1;12955:2;12935:18;;;12928:30;12994:34;12974:18;;;12967:62;-1:-1:-1;;;13045:18:1;;;13038:45;13100:19;;47550:76:0;12714:411:1;47550:76:0;47639:14;47656:11;:7;47666:1;47656:11;:::i;:::-;47684:10;;47639:28;;-1:-1:-1;47684:10:0;;47680:68;;47717:19;47710:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47451:473;;;:::o;47680:68::-;47841:1;47818:12;47812:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;47869:12;47883:17;:6;:15;:17::i;:::-;47852:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47812:104;47805:111;47451:473;-1:-1:-1;;;47451:473:0:o;49185:89::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;49256:10:::1;::::0;;-1:-1:-1;;49242:24:0;::::1;49256:10;::::0;;;::::1;;;49255:11;49242:24:::0;;::::1;;::::0;;49185:89::o;7673:201::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7762:22:0;::::1;7754:73;;;::::0;-1:-1:-1;;;7754:73:0;;10110:2:1;7754:73:0::1;::::0;::::1;10092:21:1::0;10149:2;10129:18;;;10122:30;10188:34;10168:18;;;10161:62;-1:-1:-1;;;10239:18:1;;;10232:36;10285:19;;7754:73:0::1;9908:402:1::0;7754:73:0::1;7838:28;7857:8;7838:18;:28::i;40641:196::-:0;40756:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40756:29:0;-1:-1:-1;;;;;40756:29:0;;;;;;;;;40801:28;;40756:24;;40801:28;;;;;;;40641:196;;;:::o;38561:1962::-;38676:35;38714:20;38726:7;38714:11;:20::i;:::-;38789:18;;38676:58;;-1:-1:-1;38747:22:0;;-1:-1:-1;;;;;38773:34:0;5568:10;-1:-1:-1;;;;;38773:34:0;;:87;;;-1:-1:-1;5568:10:0;38824:20;38836:7;38824:11;:20::i;:::-;-1:-1:-1;;;;;38824:36:0;;38773:87;:154;;;-1:-1:-1;38894:18:0;;38877:50;;5568:10;34587:164;:::i;38877:50::-;38747:181;;38946:17;38941:66;;38972:35;;-1:-1:-1;;;38972:35:0;;;;;;;;;;;38941:66;39044:4;-1:-1:-1;;;;;39022:26:0;:13;:18;;;-1:-1:-1;;;;;39022:26:0;;39018:67;;39057:28;;-1:-1:-1;;;39057:28:0;;;;;;;;;;;39018:67;-1:-1:-1;;;;;39100:16:0;;39096:52;;39125:23;;-1:-1:-1;;;39125:23:0;;;;;;;;;;;39096:52;39269:49;39286:1;39290:7;39299:13;:18;;;39269:8;:49::i;:::-;-1:-1:-1;;;;;39614:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39614:31:0;;;-1:-1:-1;;;;;39614:31:0;;;-1:-1:-1;;39614:31:0;;;;;;;39660:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39660:29:0;;;;;;;;;;;;;39706:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39751:61:0;;;;-1:-1:-1;;;39796:15:0;39751:61;;;;;;40086:11;;;40116:24;;;;;:29;40086:11;;40116:29;40112:295;;40184:20;40192:11;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;40184:20;40180:212;;;40261:18;;;40229:24;;;:11;:24;;;;;;;;:50;;40344:28;;;;40302:70;;-1:-1:-1;;;40302:70:0;-1:-1:-1;;;;;;40302:70:0;;;-1:-1:-1;;;;;40229:50:0;;;40302:70;;;;;;;40180:212;39589:829;40454:7;40450:2;-1:-1:-1;;;;;40435:27:0;40444:4;-1:-1:-1;;;;;40435:27:0;;;;;;;;;;;40473:42;38665:1858;;38561:1962;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;35998:104::-;36067:27;36077:2;36081:8;36067:27;;;;;;;;;;;;:9;:27::i;31727:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;31827:16:0;31835:7;35935:4;35969:13;-1:-1:-1;35959:23:0;35878:112;31827:16;31822:61;;31852:31;;-1:-1:-1;;;31852:31:0;;;;;;;;;;;31822:61;31941:7;31921:245;31988:31;32022:17;;;:11;:17;;;;;;;;;31988:51;;;;;;;;;-1:-1:-1;;;;;31988:51:0;;;;;-1:-1:-1;;;31988:51:0;;;;;;;;;;;;32062:28;32058:93;;32122:9;31727:504;-1:-1:-1;;;31727:504:0:o;32058:93::-;-1:-1:-1;;;31961:6:0;31921:245;;8034:191;8127:6;;;-1:-1:-1;;;;;8144:17:0;;;-1:-1:-1;;;;;;8144:17:0;;;;;;;8177:40;;8127:6;;;8144:17;8127:6;;8177:40;;8108:16;;8177:40;8097:128;8034:191;:::o;41402:765::-;41557:4;-1:-1:-1;;;;;41578:13:0;;9760:19;:23;41574:586;;41614:72;;-1:-1:-1;;;41614:72:0;;-1:-1:-1;;;;;41614:36:0;;;;;:72;;5568:10;;41665:4;;41671:7;;41680:5;;41614:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41614:72:0;;;;;;;;-1:-1:-1;;41614:72:0;;;;;;;;;;;;:::i;:::-;;;41610:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41860:13:0;;41856:234;;41887:40;;-1:-1:-1;;;41887:40:0;;;;;;;;;;;41856:234;42040:6;42034:13;42025:6;42021:2;42017:15;42010:38;41610:495;-1:-1:-1;;;;;;41737:55:0;-1:-1:-1;;;41737:55:0;;-1:-1:-1;41730:62:0;;41574:586;-1:-1:-1;42144:4:0;41574:586;41402:765;;;;;;:::o;3050:723::-;3106:13;3327:10;3323:53;;-1:-1:-1;;3354:10:0;;;;;;;;;;;;-1:-1:-1;;;3354:10:0;;;;;3050:723::o;3323:53::-;3401:5;3386:12;3442:78;3449:9;;3442:78;;3475:8;;;;:::i;:::-;;-1:-1:-1;3498:10:0;;-1:-1:-1;3506:2:0;3498:10;;:::i;:::-;;;3442:78;;;3530:19;3562:6;3552:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3552:17:0;;3530:39;;3580:154;3587:10;;3580:154;;3614:11;3624:1;3614:11;;:::i;:::-;;-1:-1:-1;3683:10:0;3691:2;3683:5;:10;:::i;:::-;3670:24;;:2;:24;:::i;:::-;3657:39;;3640:6;3647;3640:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3640:56:0;;;;;;;;-1:-1:-1;3711:11:0;3720:2;3711:11;;:::i;:::-;;;3580:154;;1771:675;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;36465:163;36588:32;36594:2;36598:8;36608:5;36615:4;37026:20;37049:13;-1:-1:-1;;;;;37077:16:0;;37073:48;;37102:19;;-1:-1:-1;;;37102:19:0;;;;;;;;;;;37073:48;37136:13;37132:44;;37158:18;;-1:-1:-1;;;37158:18:0;;;;;;;;;;;37132:44;-1:-1:-1;;;;;37529:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37529:45:0;;-1:-1:-1;;;;;37529:45:0;;;;;;;;;;37589:50;;;;;;;;;;;;;;37656:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37706:66:0;;;;-1:-1:-1;;;37756:15:0;37706:66;;;;;;;37656:25;;37841:330;37861:8;37857:1;:12;37841:330;;;37900:38;;37925:12;;-1:-1:-1;;;;;37900:38:0;;;37917:1;;37900:38;;37917:1;;37900:38;37961:4;:68;;;;;37970:59;38001:1;38005:2;38009:12;38023:5;37970:22;:59::i;:::-;37969:60;37961:68;37957:164;;;38061:40;;-1:-1:-1;;;38061:40:0;;;;;;;;;;;37957:164;38141:14;;;;;37871:3;37841:330;;;-1:-1:-1;38187:13:0;:28;38239:60;35315:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:257::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5157:63;5213:6;5206:4;5201:3;5197:14;5190:4;5183:5;5179:16;5157:63;:::i;:::-;5274:2;5253:15;-1:-1:-1;;5249:29:1;5240:39;;;;5281:4;5236:50;;5035:257;-1:-1:-1;;5035:257:1:o;5297:185::-;5339:3;5377:5;5371:12;5392:52;5437:6;5432:3;5425:4;5418:5;5414:16;5392:52;:::i;:::-;5460:16;;;;;5297:185;-1:-1:-1;;5297:185:1:o;5839:1301::-;6116:3;6145:1;6178:6;6172:13;6208:3;6230:1;6258:9;6254:2;6250:18;6240:28;;6318:2;6307:9;6303:18;6340;6330:61;;6384:4;6376:6;6372:17;6362:27;;6330:61;6410:2;6458;6450:6;6447:14;6427:18;6424:38;6421:165;;;-1:-1:-1;;;6485:33:1;;6541:4;6538:1;6531:15;6571:4;6492:3;6559:17;6421:165;6602:18;6629:104;;;;6747:1;6742:320;;;;6595:467;;6629:104;-1:-1:-1;;6662:24:1;;6650:37;;6707:16;;;;-1:-1:-1;6629:104:1;;6742:320;16087:1;16080:14;;;16124:4;16111:18;;6837:1;6851:165;6865:6;6862:1;6859:13;6851:165;;;6943:14;;6930:11;;;6923:35;6986:16;;;;6880:10;;6851:165;;;6855:3;;7045:6;7040:3;7036:16;7029:23;;6595:467;;;;;;;7078:56;7103:30;7129:3;7121:6;7103:30;:::i;:::-;-1:-1:-1;;;5547:20:1;;5592:1;5583:11;;5487:113;7078:56;7071:63;5839:1301;-1:-1:-1;;;;;5839:1301:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;7846:632::-;8017:2;8069:21;;;8139:13;;8042:18;;;8161:22;;;7988:4;;8017:2;8240:15;;;;8214:2;8199:18;;;7988:4;8283:169;8297:6;8294:1;8291:13;8283:169;;;8358:13;;8346:26;;8427:15;;;;8392:12;;;;8319:1;8312:9;8283:169;;;-1:-1:-1;8469:3:1;;7846:632;-1:-1:-1;;;;;;7846:632:1:o;8857:219::-;9006:2;8995:9;8988:21;8969:4;9026:44;9066:2;9055:9;9051:18;9043:6;9026:44;:::i;9081:407::-;9283:2;9265:21;;;9322:2;9302:18;;;9295:30;-1:-1:-1;;;;;;;;;;;9356:2:1;9341:18;;9334:62;-1:-1:-1;;;9427:2:1;9412:18;;9405:41;9478:3;9463:19;;9081:407::o;9493:410::-;9695:2;9677:21;;;9734:2;9714:18;;;9707:30;9773:34;9768:2;9753:18;;9746:62;-1:-1:-1;;;9839:2:1;9824:18;;9817:44;9893:3;9878:19;;9493:410::o;11124:397::-;11326:2;11308:21;;;11365:2;11345:18;;;11338:30;11404:34;11399:2;11384:18;;11377:62;-1:-1:-1;;;11470:2:1;11455:18;;11448:31;11511:3;11496:19;;11124:397::o;12353:356::-;12555:2;12537:21;;;12574:18;;;12567:30;12633:34;12628:2;12613:18;;12606:62;12700:2;12685:18;;12353:356::o;15139:408::-;15341:2;15323:21;;;15380:2;15360:18;;;15353:30;15419:34;15414:2;15399:18;;15392:62;-1:-1:-1;;;15485:2:1;15470:18;;15463:42;15537:3;15522:19;;15139:408::o;15734:275::-;15805:2;15799:9;15870:2;15851:13;;-1:-1:-1;;15847:27:1;15835:40;;15905:18;15890:34;;15926:22;;;15887:62;15884:88;;;15952:18;;:::i;:::-;15988:2;15981:22;15734:275;;-1:-1:-1;15734:275:1:o;16140:128::-;16180:3;16211:1;16207:6;16204:1;16201:13;16198:39;;;16217:18;;:::i;:::-;-1:-1:-1;16253:9:1;;16140:128::o;16273:120::-;16313:1;16339;16329:35;;16344:18;;:::i;:::-;-1:-1:-1;16378:9:1;;16273:120::o;16398:168::-;16438:7;16504:1;16500;16496:6;16492:14;16489:1;16486:21;16481:1;16474:9;16467:17;16463:45;16460:71;;;16511:18;;:::i;:::-;-1:-1:-1;16551:9:1;;16398:168::o;16571:125::-;16611:4;16639:1;16636;16633:8;16630:34;;;16644:18;;:::i;:::-;-1:-1:-1;16681:9:1;;16571:125::o;16701:258::-;16773:1;16783:113;16797:6;16794:1;16791:13;16783:113;;;16873:11;;;16867:18;16854:11;;;16847:39;16819:2;16812:10;16783:113;;;16914:6;16911:1;16908:13;16905:48;;;-1:-1:-1;;16949:1:1;16931:16;;16924:27;16701:258::o;16964:380::-;17043:1;17039:12;;;;17086;;;17107:61;;17161:4;17153:6;17149:17;17139:27;;17107:61;17214:2;17206:6;17203:14;17183:18;17180:38;17177:161;;;17260:10;17255:3;17251:20;17248:1;17241:31;17295:4;17292:1;17285:15;17323:4;17320:1;17313:15;17177:161;;16964:380;;;:::o;17349:135::-;17388:3;-1:-1:-1;;17409:17:1;;17406:43;;;17429:18;;:::i;:::-;-1:-1:-1;17476:1:1;17465:13;;17349:135::o;17489:112::-;17521:1;17547;17537:35;;17552:18;;:::i;:::-;-1:-1:-1;17586:9:1;;17489:112::o;17606:127::-;17667:10;17662:3;17658:20;17655:1;17648:31;17698:4;17695:1;17688:15;17722:4;17719:1;17712:15;17738:127;17799:10;17794:3;17790:20;17787:1;17780:31;17830:4;17827:1;17820:15;17854:4;17851:1;17844:15;17870:127;17931:10;17926:3;17922:20;17919:1;17912:31;17962:4;17959:1;17952:15;17986:4;17983:1;17976:15;18002:127;18063:10;18058:3;18054:20;18051:1;18044:31;18094:4;18091:1;18084:15;18118:4;18115:1;18108:15;18134:127;18195:10;18190:3;18186:20;18183:1;18176:31;18226:4;18223:1;18216:15;18250:4;18247:1;18240:15;18266:131;-1:-1:-1;;;;;;18340:32:1;;18330:43;;18320:71;;18387:1;18384;18377:12
Swarm Source
ipfs://460831f8b8931bfb3e8380c211e6ffa05021d7f82480b37cb85648de3011d50d
Loading...
Loading
Loading...
Loading
[ 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.