Feature Tip: Add private address tag to any address under My Name Tag !
This token is reported to have been spammed to a large number of addresses. Please treat it with caution.
ERC-721
Overview
Max Total Supply
2,225 ERC-721 TOKEN*
Holders
545
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 ERC-721 TOKEN*Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeAreKevin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-12 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal collectionSize; uint256 internal maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } function changeCollectionSize(uint256 newCollectionSize) public{ collectionSize = newCollectionSize; } /** * @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) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). 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) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; 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++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); 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())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } 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: @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: contracts/WeAreKevin.sol pragma solidity ^0.8.0; contract WeAreKevin is Ownable, ERC721A, ReentrancyGuard { constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForAuctionAndDev_, uint256 amountForDevs_ ) ERC721A("WeAreKevin", "KEVINS", maxBatchSize_, collectionSize_) { require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" ); } ///////////// MINT SECTION ///////////// uint256 public pricePer = 0.01 ether; uint256 maxTotalSupply = 2222; bool public saleStart = false; bool public publicSaleStart = false; bytes32 public MerkleRoot; bool public onlyWhitelist = true; function isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) internal view returns(bool) { return( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ) ); } function setMerkle (bytes32 merkleRoot) public onlyOwner{ MerkleRoot = merkleRoot; } function setPublicSale(bool start) public onlyOwner{ publicSaleStart = start; } function setWLOnly(bool start) public onlyOwner{ onlyWhitelist = start; } function setWLSale(bool start) public onlyOwner{ saleStart = start; } function setPrice(uint256 price) public onlyOwner{ pricePer = price; } function mintMarketing(address to, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxTotalSupply, "Sold out"); _safeMint(to, quantity); } uint256 public publicCurrent = 0; uint256 public maxPUBLIC = 1200; function setpublicCurrent(uint256 newMax) public onlyOwner{ publicCurrent = newMax; } function setMaxPublic(uint256 newMax) public onlyOwner{ maxPUBLIC = newMax; } function mint(uint256 quantity) external payable{ require(publicSaleStart, "Sale not started"); require(publicCurrent + quantity <= maxPUBLIC, "Sold out"); require(mintedPub[msg.sender] + quantity < 11, "Can't mint more than 10"); require(msg.value >= pricePer * quantity, "Not enough Eth"); publicCurrent += quantity; mintedPub[msg.sender] += quantity; _safeMint(msg.sender, quantity); } uint256 public WLCurrent = 0; uint256 public maxWL = 1000; uint256 public maxWLMint = 3; mapping(address => uint256) public minted; mapping(address => uint256) public mintedPub; function setWLCurrent(uint256 newMax) public onlyOwner{ WLCurrent = newMax; } function setMaxWLMint(uint256 newMax) public onlyOwner{ maxWLMint = newMax; } function setMaxWLTotal(uint256 newMax) public onlyOwner{ maxWL = newMax; } function mintWL(uint256 quantity, bytes32[] calldata merkleProof) external payable{ if(onlyWhitelist){ require(isValidMerkleProof(merkleProof, MerkleRoot), "Not whitelisted"); } require(saleStart, "Sale not started"); require(minted[msg.sender] < maxWLMint, "Cant mint more than 3 for free"); require(WLCurrent + quantity <= maxWL, "Sold out"); WLCurrent += quantity; minted[msg.sender] += quantity; _safeMint(msg.sender, quantity); } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLCurrent","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":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPub","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxWLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxWLTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setWLCurrent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setWLOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setpublicCurrent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006001818155600a829055662386f26fc10000600c556108ae600d55600e805461ffff191690556010805460ff1916909117905560118190556104b06012556013556103e860145560036015553480156200005f57600080fd5b506040516200317e3803806200317e833981016040819052620000829162000341565b6040518060400160405280600a8152602001692bb2a0b932a5b2bb34b760b11b815250604051806040016040528060068152602001654b4556494e5360d01b8152508585620000e0620000da6200024760201b60201c565b6200024b565b600081116200014d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001af5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000144565b8351620001c49060049060208701906200029b565b508251620001da9060059060208601906200029b565b5060039190915560025550506001600b55828211156200023d5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000144565b50505050620003b5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002a99062000378565b90600052602060002090601f016020900481019282620002cd576000855562000318565b82601f10620002e857805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000318578251825591602001919060010190620002fb565b50620003269291506200032a565b5090565b5b808211156200032657600081556001016200032b565b600080600080608085870312156200035857600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200038d57607f821691505b60208210811415620003af57634e487b7160e01b600052602260045260246000fd5b50919050565b612db980620003c56000396000f3fe6080604052600436106102e45760003560e01c80638af95d2c11610190578063b88d4fde116100dc578063e1ed546411610095578063f2fde38b1161006f578063f2fde38b146108de578063fb554d94146108fe578063fbdb849414610914578063fe8c72eb1461093457600080fd5b8063e1ed546414610852578063e4afb7161461087f578063e985e9c51461089557600080fd5b8063b88d4fde146107b3578063c87b56dd146107d3578063cc2f10d4146107f3578063d0bfb81014610809578063d7224ba01461081c578063dc33e6811461083257600080fd5b8063a0712d6811610149578063a88e099611610123578063a88e09961461074a578063ab0bcc4114610764578063ac4460021461077e578063b6851e651461079357600080fd5b8063a0712d6814610701578063a22cb46514610714578063a823a5a71461073457600080fd5b80638af95d2c146106205780638da5cb5b1461064057806391b7f5ed1461065e5780639231ab2a1461067e57806395d89b41146106cc5780639801b11c146106e157600080fd5b80633360caa01161024f57806359dca7c91161020857806370a08231116101e257806370a08231146105ab578063715018a6146105cb578063763f4011146105e0578063852176d71461060057600080fd5b806359dca7c9146105555780635aca1bb61461056b5780636352211e1461058b57600080fd5b80633360caa01461049657806341b3ba3d146104b557806342842e0e146104d55780634f6ccce7146104f557806355f804b31461051557806357ff96221461053557600080fd5b8063132d3f6a116102a1578063132d3f6a146103de57806318160ddd146103f45780631e7269c51461040957806323b872dd146104365780632d20fb60146104565780632f745c591461047657600080fd5b80630173551f146102e957806301ffc9a71461030b57806306fdde0314610340578063070a8a8514610362578063081812fc14610386578063095ea7b3146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612908565b610954565b005b34801561031757600080fd5b5061032b61032636600461293c565b61099a565b60405190151581526020015b60405180910390f35b34801561034c57600080fd5b50610355610a07565b6040516103379190612aff565b34801561036e57600080fd5b50610378600c5481565b604051908152602001610337565b34801561039257600080fd5b506103a66103a1366004612923565b610a99565b6040516001600160a01b039091168152602001610337565b3480156103ca57600080fd5b506103096103d93660046128de565b610b24565b3480156103ea57600080fd5b50610378600f5481565b34801561040057600080fd5b50600154610378565b34801561041557600080fd5b5061037861042436600461274e565b60166020526000908152604090205481565b34801561044257600080fd5b5061030961045136600461279c565b610c3c565b34801561046257600080fd5b50610309610471366004612923565b610c47565b34801561048257600080fd5b506103786104913660046128de565b610cda565b3480156104a257600080fd5b50600e5461032b90610100900460ff1681565b3480156104c157600080fd5b506103096104d0366004612923565b610e53565b3480156104e157600080fd5b506103096104f036600461279c565b610e82565b34801561050157600080fd5b50610378610510366004612923565b610e9d565b34801561052157600080fd5b50610309610530366004612976565b610f06565b34801561054157600080fd5b50610309610550366004612908565b610f3c565b34801561056157600080fd5b5061037860155481565b34801561057757600080fd5b50610309610586366004612908565b610f79565b34801561059757600080fd5b506103a66105a6366004612923565b610fbd565b3480156105b757600080fd5b506103786105c636600461274e565b610fcf565b3480156105d757600080fd5b50610309611060565b3480156105ec57600080fd5b506103096105fb3660046128de565b611096565b34801561060c57600080fd5b5061030961061b366004612923565b611103565b34801561062c57600080fd5b5061030961063b366004612923565b611132565b34801561064c57600080fd5b506000546001600160a01b03166103a6565b34801561066a57600080fd5b50610309610679366004612923565b611161565b34801561068a57600080fd5b5061069e610699366004612923565b611190565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610337565b3480156106d857600080fd5b506103556111ad565b3480156106ed57600080fd5b506103096106fc366004612923565b600255565b61030961070f366004612923565b6111bc565b34801561072057600080fd5b5061030961072f3660046128b4565b611337565b34801561074057600080fd5b5061037860115481565b34801561075657600080fd5b5060105461032b9060ff1681565b34801561077057600080fd5b50600e5461032b9060ff1681565b34801561078a57600080fd5b506103096113fc565b34801561079f57600080fd5b506103096107ae366004612923565b611509565b3480156107bf57600080fd5b506103096107ce3660046127d8565b611538565b3480156107df57600080fd5b506103556107ee366004612923565b611571565b3480156107ff57600080fd5b5061037860145481565b6103096108173660046129e8565b61163e565b34801561082857600080fd5b50610378600a5481565b34801561083e57600080fd5b5061037861084d36600461274e565b6117ae565b34801561085e57600080fd5b5061037861086d36600461274e565b60176020526000908152604090205481565b34801561088b57600080fd5b5061037860135481565b3480156108a157600080fd5b5061032b6108b0366004612769565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156108ea57600080fd5b506103096108f936600461274e565b6117b9565b34801561090a57600080fd5b5061037860125481565b34801561092057600080fd5b5061030961092f366004612923565b611851565b34801561094057600080fd5b5061030961094f366004612923565b611880565b6000546001600160a01b031633146109875760405162461bcd60e51b815260040161097e90612b12565b60405180910390fd5b6010805460ff1916911515919091179055565b60006001600160e01b031982166380ac58cd60e01b14806109cb57506001600160e01b03198216635b5e139f60e01b145b806109e657506001600160e01b0319821663780e9d6360e01b145b80610a0157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060048054610a1690612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4290612cab565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b6000610aa6826001541190565b610b085760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161097e565b506000908152600860205260409020546001600160a01b031690565b6000610b2f82610fbd565b9050806001600160a01b0316836001600160a01b03161415610b9e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161097e565b336001600160a01b0382161480610bba5750610bba81336108b0565b610c2c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161097e565b610c378383836118af565b505050565b610c3783838361190b565b6000546001600160a01b03163314610c715760405162461bcd60e51b815260040161097e90612b12565b6002600b541415610cc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097e565b6002600b55610cd281611c93565b506001600b55565b6000610ce583610fcf565b8210610d3e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161097e565b6000610d4960015490565b905060008060005b83811015610df3576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610da457805192505b876001600160a01b0316836001600160a01b03161415610de05786841415610dd257509350610a0192505050565b83610ddc81612ce6565b9450505b5080610deb81612ce6565b915050610d51565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161097e565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161097e90612b12565b600f55565b610c3783838360405180602001604052806000815250611538565b6000610ea860015490565b8210610f025760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161097e565b5090565b6000546001600160a01b03163314610f305760405162461bcd60e51b815260040161097e90612b12565b610c3760188383612692565b6000546001600160a01b03163314610f665760405162461bcd60e51b815260040161097e90612b12565b600e805460ff1916911515919091179055565b6000546001600160a01b03163314610fa35760405162461bcd60e51b815260040161097e90612b12565b600e80549115156101000261ff0019909216919091179055565b6000610fc882611e45565b5192915050565b60006001600160a01b03821661103b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161097e565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461108a5760405162461bcd60e51b815260040161097e90612b12565b6110946000611fb4565b565b6000546001600160a01b031633146110c05760405162461bcd60e51b815260040161097e90612b12565b600d54816110cd60015490565b6110d79190612bde565b11156110f55760405162461bcd60e51b815260040161097e90612b47565b6110ff8282612004565b5050565b6000546001600160a01b0316331461112d5760405162461bcd60e51b815260040161097e90612b12565b601355565b6000546001600160a01b0316331461115c5760405162461bcd60e51b815260040161097e90612b12565b601155565b6000546001600160a01b0316331461118b5760405162461bcd60e51b815260040161097e90612b12565b600c55565b6040805180820190915260008082526020820152610a0182611e45565b606060058054610a1690612cab565b600e54610100900460ff166112065760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b604482015260640161097e565b601254816011546112179190612bde565b11156112355760405162461bcd60e51b815260040161097e90612b47565b33600090815260176020526040902054600b90611253908390612bde565b106112a05760405162461bcd60e51b815260206004820152601760248201527f43616e2774206d696e74206d6f7265207468616e203130000000000000000000604482015260640161097e565b80600c546112ae9190612c0a565b3410156112ee5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b604482015260640161097e565b80601160008282546113009190612bde565b90915550503360009081526017602052604081208054839290611324908490612bde565b9091555061133490503382612004565b50565b6001600160a01b0382163314156113905760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161097e565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114265760405162461bcd60e51b815260040161097e90612b12565b6002600b5414156114795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097e565b6002600b55604051600090339047908381818185875af1925050503d80600081146114c0576040519150601f19603f3d011682016040523d82523d6000602084013e6114c5565b606091505b5050905080610cd25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161097e565b6000546001600160a01b031633146115335760405162461bcd60e51b815260040161097e90612b12565b601455565b61154384848461190b565b61154f8484848461201e565b61156b5760405162461bcd60e51b815260040161097e90612b69565b50505050565b606061157e826001541190565b6115e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097e565b60006115ec61212c565b9050600081511161160c5760405180602001604052806000815250611637565b806116168461213b565b604051602001611627929190612a93565b6040516020818303038152906040525b9392505050565b60105460ff1615611694576116568282600f54612239565b6116945760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161097e565b600e5460ff166116d95760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b604482015260640161097e565b60155433600090815260166020526040902054106117395760405162461bcd60e51b815260206004820152601e60248201527f43616e74206d696e74206d6f7265207468616e203320666f7220667265650000604482015260640161097e565b6014548360135461174a9190612bde565b11156117685760405162461bcd60e51b815260040161097e90612b47565b826013600082825461177a9190612bde565b9091555050336000908152601660205260408120805485929061179e908490612bde565b90915550610c3790503384612004565b6000610a01826122ad565b6000546001600160a01b031633146117e35760405162461bcd60e51b815260040161097e90612b12565b6001600160a01b0381166118485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097e565b61133481611fb4565b6000546001600160a01b0316331461187b5760405162461bcd60e51b815260040161097e90612b12565b601255565b6000546001600160a01b031633146118aa5760405162461bcd60e51b815260040161097e90612b12565b601555565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191682611e45565b80519091506000906001600160a01b0316336001600160a01b0316148061194d57503361194284610a99565b6001600160a01b0316145b8061195f5750815161195f90336108b0565b9050806119c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161097e565b846001600160a01b031682600001516001600160a01b031614611a3d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161097e565b6001600160a01b038416611aa15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161097e565b611ab160008484600001516118af565b6001600160a01b0385166000908152600760205260408120805460019290611ae39084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092611b2f91859116612bbc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bb7846001612bde565b6000818152600660205260409020549091506001600160a01b0316611c4957611be1816001541190565b15611c495760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600a5481611ce35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161097e565b60006001611cf18484612bde565b611cfb9190612c51565b90506001600254611d0c9190612c51565b811115611d25576001600254611d229190612c51565b90505b611d30816001541190565b611d8b5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161097e565b815b818111611e31576000818152600660205260409020546001600160a01b0316611e1f576000611dbb82611e45565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600690965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e2981612ce6565b915050611d8d565b50611e3d816001612bde565b600a55505050565b6040805180820190915260008082526020820152611e64826001541190565b611ec35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161097e565b60006003548310611ee957600354611edb9084612c51565b611ee6906001612bde565b90505b825b818110611f53576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f4057949350505050565b5080611f4b81612c94565b915050611eeb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161097e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6110ff82826040518060200160405280600081525061234b565b60006001600160a01b0384163b1561212057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612062903390899088908890600401612ac2565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ac575060408051601f3d908101601f191682019092526120a991810190612959565b60015b612106573d8080156120da576040519150601f19603f3d011682016040523d82523d6000602084013e6120df565b606091505b5080516120fe5760405162461bcd60e51b815260040161097e90612b69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612124565b5060015b949350505050565b606060188054610a1690612cab565b60608161215f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612189578061217381612ce6565b91506121829050600a83612bf6565b9150612163565b60008167ffffffffffffffff8111156121a4576121a4612d57565b6040519080825280601f01601f1916602001820160405280156121ce576020820181803683370190505b5090505b8415612124576121e3600183612c51565b91506121f0600a86612d01565b6121fb906030612bde565b60f81b81838151811061221057612210612d41565b60200101906001600160f81b031916908160001a905350612232600a86612bf6565b94506121d2565b6000612124848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152869250603401905060405160208183030381529060405280519060200120612608565b60006001600160a01b03821661231f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161097e565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123ae5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161097e565b6123b9816001541190565b156124065760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161097e565b6003548311156124635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161097e565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124bf908790612bbc565b6001600160801b031681526020018583602001516124dd9190612bbc565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125fd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125c1600088848861201e565b6125dd5760405162461bcd60e51b815260040161097e90612b69565b816125e781612ce6565b92505080806125f590612ce6565b915050612574565b506001819055611c8b565b600082612615858461261e565b14949350505050565b600081815b845181101561268a57600085828151811061264057612640612d41565b602002602001015190508083116126665760008381526020829052604090209250612677565b600081815260208490526040902092505b508061268281612ce6565b915050612623565b509392505050565b82805461269e90612cab565b90600052602060002090601f0160209004810192826126c05760008555612706565b82601f106126d95782800160ff19823516178555612706565b82800160010185558215612706579182015b828111156127065782358255916020019190600101906126eb565b50610f029291505b80821115610f02576000815560010161270e565b80356001600160a01b038116811461273957600080fd5b919050565b8035801515811461273957600080fd5b60006020828403121561276057600080fd5b61163782612722565b6000806040838503121561277c57600080fd5b61278583612722565b915061279360208401612722565b90509250929050565b6000806000606084860312156127b157600080fd5b6127ba84612722565b92506127c860208501612722565b9150604084013590509250925092565b600080600080608085870312156127ee57600080fd5b6127f785612722565b935061280560208601612722565b925060408501359150606085013567ffffffffffffffff8082111561282957600080fd5b818701915087601f83011261283d57600080fd5b81358181111561284f5761284f612d57565b604051601f8201601f19908116603f0116810190838211818310171561287757612877612d57565b816040528281528a602084870101111561289057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156128c757600080fd5b6128d083612722565b91506127936020840161273e565b600080604083850312156128f157600080fd5b6128fa83612722565b946020939093013593505050565b60006020828403121561291a57600080fd5b6116378261273e565b60006020828403121561293557600080fd5b5035919050565b60006020828403121561294e57600080fd5b813561163781612d6d565b60006020828403121561296b57600080fd5b815161163781612d6d565b6000806020838503121561298957600080fd5b823567ffffffffffffffff808211156129a157600080fd5b818501915085601f8301126129b557600080fd5b8135818111156129c457600080fd5b8660208285010111156129d657600080fd5b60209290920196919550909350505050565b6000806000604084860312156129fd57600080fd5b83359250602084013567ffffffffffffffff80821115612a1c57600080fd5b818601915086601f830112612a3057600080fd5b813581811115612a3f57600080fd5b8760208260051b8501011115612a5457600080fd5b6020830194508093505050509250925092565b60008151808452612a7f816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612aa5818460208801612c68565b835190830190612ab9818360208801612c68565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af590830184612a67565b9695505050505050565b6020815260006116376020830184612a67565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612ab957612ab9612d15565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b8381111561156b5750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133457600080fdfea2646970667358221220daa76ed3fac2311a5e2e26b0496887acf2ce4522783b1b43464b835eda5c79df64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80638af95d2c11610190578063b88d4fde116100dc578063e1ed546411610095578063f2fde38b1161006f578063f2fde38b146108de578063fb554d94146108fe578063fbdb849414610914578063fe8c72eb1461093457600080fd5b8063e1ed546414610852578063e4afb7161461087f578063e985e9c51461089557600080fd5b8063b88d4fde146107b3578063c87b56dd146107d3578063cc2f10d4146107f3578063d0bfb81014610809578063d7224ba01461081c578063dc33e6811461083257600080fd5b8063a0712d6811610149578063a88e099611610123578063a88e09961461074a578063ab0bcc4114610764578063ac4460021461077e578063b6851e651461079357600080fd5b8063a0712d6814610701578063a22cb46514610714578063a823a5a71461073457600080fd5b80638af95d2c146106205780638da5cb5b1461064057806391b7f5ed1461065e5780639231ab2a1461067e57806395d89b41146106cc5780639801b11c146106e157600080fd5b80633360caa01161024f57806359dca7c91161020857806370a08231116101e257806370a08231146105ab578063715018a6146105cb578063763f4011146105e0578063852176d71461060057600080fd5b806359dca7c9146105555780635aca1bb61461056b5780636352211e1461058b57600080fd5b80633360caa01461049657806341b3ba3d146104b557806342842e0e146104d55780634f6ccce7146104f557806355f804b31461051557806357ff96221461053557600080fd5b8063132d3f6a116102a1578063132d3f6a146103de57806318160ddd146103f45780631e7269c51461040957806323b872dd146104365780632d20fb60146104565780632f745c591461047657600080fd5b80630173551f146102e957806301ffc9a71461030b57806306fdde0314610340578063070a8a8514610362578063081812fc14610386578063095ea7b3146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612908565b610954565b005b34801561031757600080fd5b5061032b61032636600461293c565b61099a565b60405190151581526020015b60405180910390f35b34801561034c57600080fd5b50610355610a07565b6040516103379190612aff565b34801561036e57600080fd5b50610378600c5481565b604051908152602001610337565b34801561039257600080fd5b506103a66103a1366004612923565b610a99565b6040516001600160a01b039091168152602001610337565b3480156103ca57600080fd5b506103096103d93660046128de565b610b24565b3480156103ea57600080fd5b50610378600f5481565b34801561040057600080fd5b50600154610378565b34801561041557600080fd5b5061037861042436600461274e565b60166020526000908152604090205481565b34801561044257600080fd5b5061030961045136600461279c565b610c3c565b34801561046257600080fd5b50610309610471366004612923565b610c47565b34801561048257600080fd5b506103786104913660046128de565b610cda565b3480156104a257600080fd5b50600e5461032b90610100900460ff1681565b3480156104c157600080fd5b506103096104d0366004612923565b610e53565b3480156104e157600080fd5b506103096104f036600461279c565b610e82565b34801561050157600080fd5b50610378610510366004612923565b610e9d565b34801561052157600080fd5b50610309610530366004612976565b610f06565b34801561054157600080fd5b50610309610550366004612908565b610f3c565b34801561056157600080fd5b5061037860155481565b34801561057757600080fd5b50610309610586366004612908565b610f79565b34801561059757600080fd5b506103a66105a6366004612923565b610fbd565b3480156105b757600080fd5b506103786105c636600461274e565b610fcf565b3480156105d757600080fd5b50610309611060565b3480156105ec57600080fd5b506103096105fb3660046128de565b611096565b34801561060c57600080fd5b5061030961061b366004612923565b611103565b34801561062c57600080fd5b5061030961063b366004612923565b611132565b34801561064c57600080fd5b506000546001600160a01b03166103a6565b34801561066a57600080fd5b50610309610679366004612923565b611161565b34801561068a57600080fd5b5061069e610699366004612923565b611190565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610337565b3480156106d857600080fd5b506103556111ad565b3480156106ed57600080fd5b506103096106fc366004612923565b600255565b61030961070f366004612923565b6111bc565b34801561072057600080fd5b5061030961072f3660046128b4565b611337565b34801561074057600080fd5b5061037860115481565b34801561075657600080fd5b5060105461032b9060ff1681565b34801561077057600080fd5b50600e5461032b9060ff1681565b34801561078a57600080fd5b506103096113fc565b34801561079f57600080fd5b506103096107ae366004612923565b611509565b3480156107bf57600080fd5b506103096107ce3660046127d8565b611538565b3480156107df57600080fd5b506103556107ee366004612923565b611571565b3480156107ff57600080fd5b5061037860145481565b6103096108173660046129e8565b61163e565b34801561082857600080fd5b50610378600a5481565b34801561083e57600080fd5b5061037861084d36600461274e565b6117ae565b34801561085e57600080fd5b5061037861086d36600461274e565b60176020526000908152604090205481565b34801561088b57600080fd5b5061037860135481565b3480156108a157600080fd5b5061032b6108b0366004612769565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156108ea57600080fd5b506103096108f936600461274e565b6117b9565b34801561090a57600080fd5b5061037860125481565b34801561092057600080fd5b5061030961092f366004612923565b611851565b34801561094057600080fd5b5061030961094f366004612923565b611880565b6000546001600160a01b031633146109875760405162461bcd60e51b815260040161097e90612b12565b60405180910390fd5b6010805460ff1916911515919091179055565b60006001600160e01b031982166380ac58cd60e01b14806109cb57506001600160e01b03198216635b5e139f60e01b145b806109e657506001600160e01b0319821663780e9d6360e01b145b80610a0157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060048054610a1690612cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4290612cab565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b6000610aa6826001541190565b610b085760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161097e565b506000908152600860205260409020546001600160a01b031690565b6000610b2f82610fbd565b9050806001600160a01b0316836001600160a01b03161415610b9e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161097e565b336001600160a01b0382161480610bba5750610bba81336108b0565b610c2c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161097e565b610c378383836118af565b505050565b610c3783838361190b565b6000546001600160a01b03163314610c715760405162461bcd60e51b815260040161097e90612b12565b6002600b541415610cc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097e565b6002600b55610cd281611c93565b506001600b55565b6000610ce583610fcf565b8210610d3e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161097e565b6000610d4960015490565b905060008060005b83811015610df3576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610da457805192505b876001600160a01b0316836001600160a01b03161415610de05786841415610dd257509350610a0192505050565b83610ddc81612ce6565b9450505b5080610deb81612ce6565b915050610d51565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161097e565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161097e90612b12565b600f55565b610c3783838360405180602001604052806000815250611538565b6000610ea860015490565b8210610f025760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161097e565b5090565b6000546001600160a01b03163314610f305760405162461bcd60e51b815260040161097e90612b12565b610c3760188383612692565b6000546001600160a01b03163314610f665760405162461bcd60e51b815260040161097e90612b12565b600e805460ff1916911515919091179055565b6000546001600160a01b03163314610fa35760405162461bcd60e51b815260040161097e90612b12565b600e80549115156101000261ff0019909216919091179055565b6000610fc882611e45565b5192915050565b60006001600160a01b03821661103b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161097e565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461108a5760405162461bcd60e51b815260040161097e90612b12565b6110946000611fb4565b565b6000546001600160a01b031633146110c05760405162461bcd60e51b815260040161097e90612b12565b600d54816110cd60015490565b6110d79190612bde565b11156110f55760405162461bcd60e51b815260040161097e90612b47565b6110ff8282612004565b5050565b6000546001600160a01b0316331461112d5760405162461bcd60e51b815260040161097e90612b12565b601355565b6000546001600160a01b0316331461115c5760405162461bcd60e51b815260040161097e90612b12565b601155565b6000546001600160a01b0316331461118b5760405162461bcd60e51b815260040161097e90612b12565b600c55565b6040805180820190915260008082526020820152610a0182611e45565b606060058054610a1690612cab565b600e54610100900460ff166112065760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b604482015260640161097e565b601254816011546112179190612bde565b11156112355760405162461bcd60e51b815260040161097e90612b47565b33600090815260176020526040902054600b90611253908390612bde565b106112a05760405162461bcd60e51b815260206004820152601760248201527f43616e2774206d696e74206d6f7265207468616e203130000000000000000000604482015260640161097e565b80600c546112ae9190612c0a565b3410156112ee5760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408ae8d60931b604482015260640161097e565b80601160008282546113009190612bde565b90915550503360009081526017602052604081208054839290611324908490612bde565b9091555061133490503382612004565b50565b6001600160a01b0382163314156113905760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161097e565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114265760405162461bcd60e51b815260040161097e90612b12565b6002600b5414156114795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097e565b6002600b55604051600090339047908381818185875af1925050503d80600081146114c0576040519150601f19603f3d011682016040523d82523d6000602084013e6114c5565b606091505b5050905080610cd25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161097e565b6000546001600160a01b031633146115335760405162461bcd60e51b815260040161097e90612b12565b601455565b61154384848461190b565b61154f8484848461201e565b61156b5760405162461bcd60e51b815260040161097e90612b69565b50505050565b606061157e826001541190565b6115e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097e565b60006115ec61212c565b9050600081511161160c5760405180602001604052806000815250611637565b806116168461213b565b604051602001611627929190612a93565b6040516020818303038152906040525b9392505050565b60105460ff1615611694576116568282600f54612239565b6116945760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161097e565b600e5460ff166116d95760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b604482015260640161097e565b60155433600090815260166020526040902054106117395760405162461bcd60e51b815260206004820152601e60248201527f43616e74206d696e74206d6f7265207468616e203320666f7220667265650000604482015260640161097e565b6014548360135461174a9190612bde565b11156117685760405162461bcd60e51b815260040161097e90612b47565b826013600082825461177a9190612bde565b9091555050336000908152601660205260408120805485929061179e908490612bde565b90915550610c3790503384612004565b6000610a01826122ad565b6000546001600160a01b031633146117e35760405162461bcd60e51b815260040161097e90612b12565b6001600160a01b0381166118485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097e565b61133481611fb4565b6000546001600160a01b0316331461187b5760405162461bcd60e51b815260040161097e90612b12565b601255565b6000546001600160a01b031633146118aa5760405162461bcd60e51b815260040161097e90612b12565b601555565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191682611e45565b80519091506000906001600160a01b0316336001600160a01b0316148061194d57503361194284610a99565b6001600160a01b0316145b8061195f5750815161195f90336108b0565b9050806119c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161097e565b846001600160a01b031682600001516001600160a01b031614611a3d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161097e565b6001600160a01b038416611aa15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161097e565b611ab160008484600001516118af565b6001600160a01b0385166000908152600760205260408120805460019290611ae39084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526007602052604081208054600194509092611b2f91859116612bbc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bb7846001612bde565b6000818152600660205260409020549091506001600160a01b0316611c4957611be1816001541190565b15611c495760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600a5481611ce35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161097e565b60006001611cf18484612bde565b611cfb9190612c51565b90506001600254611d0c9190612c51565b811115611d25576001600254611d229190612c51565b90505b611d30816001541190565b611d8b5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161097e565b815b818111611e31576000818152600660205260409020546001600160a01b0316611e1f576000611dbb82611e45565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600690965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e2981612ce6565b915050611d8d565b50611e3d816001612bde565b600a55505050565b6040805180820190915260008082526020820152611e64826001541190565b611ec35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161097e565b60006003548310611ee957600354611edb9084612c51565b611ee6906001612bde565b90505b825b818110611f53576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f4057949350505050565b5080611f4b81612c94565b915050611eeb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161097e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6110ff82826040518060200160405280600081525061234b565b60006001600160a01b0384163b1561212057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612062903390899088908890600401612ac2565b602060405180830381600087803b15801561207c57600080fd5b505af19250505080156120ac575060408051601f3d908101601f191682019092526120a991810190612959565b60015b612106573d8080156120da576040519150601f19603f3d011682016040523d82523d6000602084013e6120df565b606091505b5080516120fe5760405162461bcd60e51b815260040161097e90612b69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612124565b5060015b949350505050565b606060188054610a1690612cab565b60608161215f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612189578061217381612ce6565b91506121829050600a83612bf6565b9150612163565b60008167ffffffffffffffff8111156121a4576121a4612d57565b6040519080825280601f01601f1916602001820160405280156121ce576020820181803683370190505b5090505b8415612124576121e3600183612c51565b91506121f0600a86612d01565b6121fb906030612bde565b60f81b81838151811061221057612210612d41565b60200101906001600160f81b031916908160001a905350612232600a86612bf6565b94506121d2565b6000612124848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152869250603401905060405160208183030381529060405280519060200120612608565b60006001600160a01b03821661231f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161097e565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123ae5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161097e565b6123b9816001541190565b156124065760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161097e565b6003548311156124635760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161097e565b6001600160a01b0384166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124bf908790612bbc565b6001600160801b031681526020018583602001516124dd9190612bbc565b6001600160801b039081169091526001600160a01b0380881660008181526007602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125fd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125c1600088848861201e565b6125dd5760405162461bcd60e51b815260040161097e90612b69565b816125e781612ce6565b92505080806125f590612ce6565b915050612574565b506001819055611c8b565b600082612615858461261e565b14949350505050565b600081815b845181101561268a57600085828151811061264057612640612d41565b602002602001015190508083116126665760008381526020829052604090209250612677565b600081815260208490526040902092505b508061268281612ce6565b915050612623565b509392505050565b82805461269e90612cab565b90600052602060002090601f0160209004810192826126c05760008555612706565b82601f106126d95782800160ff19823516178555612706565b82800160010185558215612706579182015b828111156127065782358255916020019190600101906126eb565b50610f029291505b80821115610f02576000815560010161270e565b80356001600160a01b038116811461273957600080fd5b919050565b8035801515811461273957600080fd5b60006020828403121561276057600080fd5b61163782612722565b6000806040838503121561277c57600080fd5b61278583612722565b915061279360208401612722565b90509250929050565b6000806000606084860312156127b157600080fd5b6127ba84612722565b92506127c860208501612722565b9150604084013590509250925092565b600080600080608085870312156127ee57600080fd5b6127f785612722565b935061280560208601612722565b925060408501359150606085013567ffffffffffffffff8082111561282957600080fd5b818701915087601f83011261283d57600080fd5b81358181111561284f5761284f612d57565b604051601f8201601f19908116603f0116810190838211818310171561287757612877612d57565b816040528281528a602084870101111561289057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156128c757600080fd5b6128d083612722565b91506127936020840161273e565b600080604083850312156128f157600080fd5b6128fa83612722565b946020939093013593505050565b60006020828403121561291a57600080fd5b6116378261273e565b60006020828403121561293557600080fd5b5035919050565b60006020828403121561294e57600080fd5b813561163781612d6d565b60006020828403121561296b57600080fd5b815161163781612d6d565b6000806020838503121561298957600080fd5b823567ffffffffffffffff808211156129a157600080fd5b818501915085601f8301126129b557600080fd5b8135818111156129c457600080fd5b8660208285010111156129d657600080fd5b60209290920196919550909350505050565b6000806000604084860312156129fd57600080fd5b83359250602084013567ffffffffffffffff80821115612a1c57600080fd5b818601915086601f830112612a3057600080fd5b813581811115612a3f57600080fd5b8760208260051b8501011115612a5457600080fd5b6020830194508093505050509250925092565b60008151808452612a7f816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612aa5818460208801612c68565b835190830190612ab9818360208801612c68565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af590830184612a67565b9695505050505050565b6020815260006116376020830184612a67565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612ab957612ab9612d15565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b8381111561156b5750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133457600080fdfea2646970667358221220daa76ed3fac2311a5e2e26b0496887acf2ce4522783b1b43464b835eda5c79df64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000b00000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 11
Arg [1] : collectionSize_ (uint256): 2500
Arg [2] : amountForAuctionAndDev_ (uint256): 0
Arg [3] : amountForDevs_ (uint256): 0
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [1] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45183:4174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46318:85;;;;;;;;;;-1:-1:-1;46318:85:0;;;;;:::i;:::-;;:::i;:::-;;30249:370;;;;;;;;;;-1:-1:-1;30249:370:0;;;;;:::i;:::-;;:::i;:::-;;;7198:14:1;;7191:22;7173:41;;7161:2;7146:18;30249:370:0;;;;;;;;31975:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45607:36::-;;;;;;;;;;;;;;;;;;;7371:25:1;;;7359:2;7344:18;45607:36:0;7225:177:1;33500:204:0;;;;;;;;;;-1:-1:-1;33500:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6496:32:1;;;6478:51;;6466:2;6451:18;33500:204:0;6332:203:1;33063:379:0;;;;;;;;;;-1:-1:-1;33063:379:0;;;;;:::i;:::-;;:::i;45764:25::-;;;;;;;;;;;;;;;;28810:94;;;;;;;;;;-1:-1:-1;28886:12:0;;28810:94;;47617:41;;;;;;;;;;-1:-1:-1;47617:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;34350:150;;;;;;;;;;-1:-1:-1;34350:150:0;;;;;:::i;:::-;;:::i;48970:118::-;;;;;;;;;;-1:-1:-1;48970:118:0;;;;;:::i;:::-;;:::i;29441:744::-;;;;;;;;;;-1:-1:-1;29441:744:0;;;;;:::i;:::-;;:::i;45722:35::-;;;;;;;;;;-1:-1:-1;45722:35:0;;;;;;;;;;;46114:97;;;;;;;;;;-1:-1:-1;46114:97:0;;;;;:::i;:::-;;:::i;34563:165::-;;;;;;;;;;-1:-1:-1;34563:165:0;;;;;:::i;:::-;;:::i;28973:177::-;;;;;;;;;;-1:-1:-1;28973:177:0;;;;;:::i;:::-;;:::i;48677:100::-;;;;;;;;;;-1:-1:-1;48677:100:0;;;;;:::i;:::-;;:::i;46411:81::-;;;;;;;;;;-1:-1:-1;46411:81:0;;;;;:::i;:::-;;:::i;47582:28::-;;;;;;;;;;;;;;;;46219:91;;;;;;;;;;-1:-1:-1;46219:91:0;;;;;:::i;:::-;;:::i;31798:118::-;;;;;;;;;;-1:-1:-1;31798:118:0;;;;;:::i;:::-;;:::i;30675:211::-;;;;;;;;;;-1:-1:-1;30675:211:0;;;;;:::i;:::-;;:::i;44288:103::-;;;;;;;;;;;;;:::i;46592:184::-;;;;;;;;;;-1:-1:-1;46592:184:0;;;;;:::i;:::-;;:::i;47718:89::-;;;;;;;;;;-1:-1:-1;47718:89:0;;;;;:::i;:::-;;:::i;46861:97::-;;;;;;;;;;-1:-1:-1;46861:97:0;;;;;:::i;:::-;;:::i;43637:87::-;;;;;;;;;;-1:-1:-1;43683:7:0;43710:6;-1:-1:-1;;;;;43710:6:0;43637:87;;46502:82;;;;;;;;;;-1:-1:-1;46502:82:0;;;;;:::i;:::-;;:::i;49207:147::-;;;;;;;;;;-1:-1:-1;49207:147:0;;;;;:::i;:::-;;:::i;:::-;;;;19881:13:1;;-1:-1:-1;;;;;19877:39:1;19859:58;;19977:4;19965:17;;;19959:24;19985:18;19955:49;19933:20;;;19926:79;;;;19832:18;49207:147:0;19651:360:1;32130:98:0;;;;;;;;;;;;;:::i;28632:110::-;;;;;;;;;;-1:-1:-1;28632:110:0;;;;;:::i;:::-;28702:14;:34;28632:110;47061:444;;;;;;:::i;:::-;;:::i;33768:274::-;;;;;;;;;;-1:-1:-1;33768:274:0;;;;;:::i;:::-;;:::i;46784:32::-;;;;;;;;;;;;;;;;45796;;;;;;;;;;-1:-1:-1;45796:32:0;;;;;;;;45686:29;;;;;;;;;;-1:-1:-1;45686:29:0;;;;;;;;48783:181;;;;;;;;;;;;;:::i;47908:86::-;;;;;;;;;;-1:-1:-1;47908:86:0;;;;;:::i;:::-;;:::i;34791:319::-;;;;;;;;;;-1:-1:-1;34791:319:0;;;;;:::i;:::-;;:::i;32291:394::-;;;;;;;;;;-1:-1:-1;32291:394:0;;;;;:::i;:::-;;:::i;47548:27::-;;;;;;;;;;;;;;;;48000:500;;;;;;:::i;:::-;;:::i;39214:43::-;;;;;;;;;;;;;;;;49094:107;;;;;;;;;;-1:-1:-1;49094:107:0;;;;;:::i;:::-;;:::i;47665:44::-;;;;;;;;;;-1:-1:-1;47665:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;47513:28;;;;;;;;;;;;;;;;34105:186;;;;;;;;;;-1:-1:-1;34105:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34250:25:0;;;34227:4;34250:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34105:186;44546:201;;;;;;;;;;-1:-1:-1;44546:201:0;;;;;:::i;:::-;;:::i;46823:31::-;;;;;;;;;;;;;;;;46964:89;;;;;;;;;;-1:-1:-1;46964:89:0;;;;;:::i;:::-;;:::i;47813:::-;;;;;;;;;;-1:-1:-1;47813:89:0;;;;;:::i;:::-;;:::i;46318:85::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;;;;;;;;;46374:13:::1;:21:::0;;-1:-1:-1;;46374:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46318:85::o;30249:370::-;30376:4;-1:-1:-1;;;;;;30406:40:0;;-1:-1:-1;;;30406:40:0;;:99;;-1:-1:-1;;;;;;;30457:48:0;;-1:-1:-1;;;30457:48:0;30406:99;:160;;;-1:-1:-1;;;;;;;30516:50:0;;-1:-1:-1;;;30516:50:0;30406:160;:207;;;-1:-1:-1;;;;;;;;;;15938:40:0;;;30577:36;30392:221;30249:370;-1:-1:-1;;30249:370:0:o;31975:94::-;32029:13;32058:5;32051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31975:94;:::o;33500:204::-;33568:7;33592:16;33600:7;35436:12;;-1:-1:-1;35426:22:0;35349:105;33592:16;33584:74;;;;-1:-1:-1;;;33584:74:0;;19036:2:1;33584:74:0;;;19018:21:1;19075:2;19055:18;;;19048:30;19114:34;19094:18;;;19087:62;-1:-1:-1;;;19165:18:1;;;19158:43;19218:19;;33584:74:0;18834:409:1;33584:74:0;-1:-1:-1;33674:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33674:24:0;;33500:204::o;33063:379::-;33132:13;33148:24;33164:7;33148:15;:24::i;:::-;33132:40;;33193:5;-1:-1:-1;;;;;33187:11:0;:2;-1:-1:-1;;;;;33187:11:0;;;33179:58;;;;-1:-1:-1;;;33179:58:0;;14479:2:1;33179:58:0;;;14461:21:1;14518:2;14498:18;;;14491:30;14557:34;14537:18;;;14530:62;-1:-1:-1;;;14608:18:1;;;14601:32;14650:19;;33179:58:0;14277:398:1;33179:58:0;26266:10;-1:-1:-1;;;;;33262:21:0;;;;:62;;-1:-1:-1;33287:37:0;33304:5;26266:10;34105:186;:::i;33287:37::-;33246:153;;;;-1:-1:-1;;;33246:153:0;;10971:2:1;33246:153:0;;;10953:21:1;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11120:27;11100:18;;;11093:55;11165:19;;33246:153:0;10769:421:1;33246:153:0;33408:28;33417:2;33421:7;33430:5;33408:8;:28::i;:::-;33125:317;33063:379;;:::o;34350:150::-;34466:28;34476:4;34482:2;34486:7;34466:9;:28::i;48970:118::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;24560:1:::1;25158:7;;:19;;25150:63;;;::::0;-1:-1:-1;;;25150:63:0;;18260:2:1;25150:63:0::1;::::0;::::1;18242:21:1::0;18299:2;18279:18;;;18272:30;18338:33;18318:18;;;18311:61;18389:18;;25150:63:0::1;18058:355:1::0;25150:63:0::1;24560:1;25291:7;:18:::0;49054:28:::2;49073:8:::0;49054:18:::2;:28::i;:::-;-1:-1:-1::0;24516:1:0::1;25470:7;:22:::0;48970:118::o;29441:744::-;29550:7;29585:16;29595:5;29585:9;:16::i;:::-;29577:5;:24;29569:71;;;;-1:-1:-1;;;29569:71:0;;7833:2:1;29569:71:0;;;7815:21:1;7872:2;7852:18;;;7845:30;7911:34;7891:18;;;7884:62;-1:-1:-1;;;7962:18:1;;;7955:32;8004:19;;29569:71:0;7631:398:1;29569:71:0;29647:22;29672:13;28886:12;;;28810:94;29672:13;29647:38;;29692:19;29722:25;29772:9;29767:350;29791:14;29787:1;:18;29767:350;;;29821:31;29855:14;;;:11;:14;;;;;;;;;29821:48;;;;;;;;;-1:-1:-1;;;;;29821:48:0;;;;;-1:-1:-1;;;29821:48:0;;;;;;;;;;;;29882:28;29878:89;;29943:14;;;-1:-1:-1;29878:89:0;30000:5;-1:-1:-1;;;;;29979:26:0;:17;-1:-1:-1;;;;;29979:26:0;;29975:135;;;30037:5;30022:11;:20;30018:59;;;-1:-1:-1;30064:1:0;-1:-1:-1;30057:8:0;;-1:-1:-1;;;30057:8:0;30018:59;30087:13;;;;:::i;:::-;;;;29975:135;-1:-1:-1;29807:3:0;;;;:::i;:::-;;;;29767:350;;;-1:-1:-1;30123:56:0;;-1:-1:-1;;;30123:56:0;;17086:2:1;30123:56:0;;;17068:21:1;17125:2;17105:18;;;17098:30;17164:34;17144:18;;;17137:62;-1:-1:-1;;;17215:18:1;;;17208:44;17269:19;;30123:56:0;16884:410:1;46114:97:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46180:10:::1;:23:::0;46114:97::o;34563:165::-;34683:39;34700:4;34706:2;34710:7;34683:39;;;;;;;;;;;;:16;:39::i;28973:177::-;29040:7;29072:13;28886:12;;;28810:94;29072:13;29064:5;:21;29056:69;;;;-1:-1:-1;;;29056:69:0;;9054:2:1;29056:69:0;;;9036:21:1;9093:2;9073:18;;;9066:30;9132:34;9112:18;;;9105:62;-1:-1:-1;;;9183:18:1;;;9176:33;9226:19;;29056:69:0;8852:399:1;29056:69:0;-1:-1:-1;29139:5:0;28973:177::o;48677:100::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;48748:23:::1;:13;48764:7:::0;;48748:23:::1;:::i;46411:81::-:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46467:9:::1;:17:::0;;-1:-1:-1;;46467:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46411:81::o;46219:91::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46279:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;46279:23:0;;::::1;::::0;;;::::1;::::0;;46219:91::o;31798:118::-;31862:7;31885:20;31897:7;31885:11;:20::i;:::-;:25;;31798:118;-1:-1:-1;;31798:118:0:o;30675:211::-;30739:7;-1:-1:-1;;;;;30763:19:0;;30755:75;;;;-1:-1:-1;;;30755:75:0;;11750:2:1;30755:75:0;;;11732:21:1;11789:2;11769:18;;;11762:30;11828:34;11808:18;;;11801:62;-1:-1:-1;;;11879:18:1;;;11872:41;11930:19;;30755:75:0;11548:407:1;30755:75:0;-1:-1:-1;;;;;;30852:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30852:27:0;;30675:211::o;44288:103::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;44353:30:::1;44380:1;44353:18;:30::i;:::-;44288:103::o:0;46592:184::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46709:14:::1;;46697:8;46681:13;28886:12:::0;;;28810:94;46681:13:::1;:24;;;;:::i;:::-;:42;;46673:63;;;;-1:-1:-1::0;;;46673:63:0::1;;;;;;;:::i;:::-;46745:23;46755:2;46759:8;46745:9;:23::i;:::-;46592:184:::0;;:::o;47718:89::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;47781:9:::1;:18:::0;47718:89::o;46861:97::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46928:13:::1;:22:::0;46861:97::o;46502:82::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;46560:8:::1;:16:::0;46502:82::o;49207:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;49328:20:0;49340:7;49328:11;:20::i;32130:98::-;32186:13;32215:7;32208:14;;;;;:::i;47061:444::-;47126:15;;;;;;;47118:44;;;;-1:-1:-1;;;47118:44:0;;10282:2:1;47118:44:0;;;10264:21:1;10321:2;10301:18;;;10294:30;-1:-1:-1;;;10340:18:1;;;10333:46;10396:18;;47118:44:0;10080:340:1;47118:44:0;47207:9;;47195:8;47179:13;;:24;;;;:::i;:::-;:37;;47171:58;;;;-1:-1:-1;;;47171:58:0;;;;;;;:::i;:::-;47256:10;47246:21;;;;:9;:21;;;;;;47281:2;;47246:32;;47270:8;;47246:32;:::i;:::-;:37;47238:73;;;;-1:-1:-1;;;47238:73:0;;17908:2:1;47238:73:0;;;17890:21:1;17947:2;17927:18;;;17920:30;17986:25;17966:18;;;17959:53;18029:18;;47238:73:0;17706:347:1;47238:73:0;47352:8;47341;;:19;;;;:::i;:::-;47328:9;:32;;47320:59;;;;-1:-1:-1;;;47320:59:0;;16743:2:1;47320:59:0;;;16725:21:1;16782:2;16762:18;;;16755:30;-1:-1:-1;;;16801:18:1;;;16794:44;16855:18;;47320:59:0;16541:338:1;47320:59:0;47405:8;47388:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;47432:10:0;47422:21;;;;:9;:21;;;;;:33;;47447:8;;47422:21;:33;;47447:8;;47422:33;:::i;:::-;;;;-1:-1:-1;47466:31:0;;-1:-1:-1;47476:10:0;47488:8;47466:9;:31::i;:::-;47061:444;:::o;33768:274::-;-1:-1:-1;;;;;33859:24:0;;26266:10;33859:24;;33851:63;;;;-1:-1:-1;;;33851:63:0;;13346:2:1;33851:63:0;;;13328:21:1;13385:2;13365:18;;;13358:30;13424:28;13404:18;;;13397:56;13470:18;;33851:63:0;13144:350:1;33851:63:0;26266:10;33923:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33923:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33923:53:0;;;;;;;;;;33988:48;;7173:41:1;;;33923:42:0;;26266:10;33988:48;;7146:18:1;33988:48:0;;;;;;;33768:274;;:::o;48783:181::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;24560:1:::1;25158:7;;:19;;25150:63;;;::::0;-1:-1:-1;;;25150:63:0;;18260:2:1;25150:63:0::1;::::0;::::1;18242:21:1::0;18299:2;18279:18;;;18272:30;18338:33;18318:18;;;18311:61;18389:18;;25150:63:0::1;18058:355:1::0;25150:63:0::1;24560:1;25291:7;:18:::0;48866:49:::2;::::0;48848:12:::2;::::0;48866:10:::2;::::0;48889:21:::2;::::0;48848:12;48866:49;48848:12;48866:49;48889:21;48866:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48847:68;;;48930:7;48922:36;;;::::0;-1:-1:-1;;;48922:36:0;;14882:2:1;48922:36:0::2;::::0;::::2;14864:21:1::0;14921:2;14901:18;;;14894:30;-1:-1:-1;;;14940:18:1;;;14933:46;14996:18;;48922:36:0::2;14680:340:1::0;47908:86:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;47972:5:::1;:14:::0;47908:86::o;34791:319::-;34936:28;34946:4;34952:2;34956:7;34936:9;:28::i;:::-;34987:48;35010:4;35016:2;35020:7;35029:5;34987:22;:48::i;:::-;34971:133;;;;-1:-1:-1;;;34971:133:0;;;;;;;:::i;:::-;34791:319;;;;:::o;32291:394::-;32389:13;32430:16;32438:7;35436:12;;-1:-1:-1;35426:22:0;35349:105;32430:16;32414:97;;;;-1:-1:-1;;;32414:97:0;;12930:2:1;32414:97:0;;;12912:21:1;12969:2;12949:18;;;12942:30;13008:34;12988:18;;;12981:62;-1:-1:-1;;;13059:18:1;;;13052:45;13114:19;;32414:97:0;12728:411:1;32414:97:0;32520:21;32544:10;:8;:10::i;:::-;32520:34;;32599:1;32581:7;32575:21;:25;:104;;;;;;;;;;;;;;;;;32636:7;32645:18;:7;:16;:18::i;:::-;32619:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32575:104;32561:118;32291:394;-1:-1:-1;;;32291:394:0:o;48000:500::-;48092:13;;;;48089:107;;;48125:43;48144:11;;48157:10;;48125:18;:43::i;:::-;48117:71;;;;-1:-1:-1;;;48117:71:0;;10627:2:1;48117:71:0;;;10609:21:1;10666:2;10646:18;;;10639:30;-1:-1:-1;;;10685:18:1;;;10678:45;10740:18;;48117:71:0;10425:339:1;48117:71:0;48212:9;;;;48204:38;;;;-1:-1:-1;;;48204:38:0;;10282:2:1;48204:38:0;;;10264:21:1;10321:2;10301:18;;;10294:30;-1:-1:-1;;;10340:18:1;;;10333:46;10396:18;;48204:38:0;10080:340:1;48204:38:0;48280:9;;48266:10;48259:18;;;;:6;:18;;;;;;:30;48251:73;;;;-1:-1:-1;;;48251:73:0;;14120:2:1;48251:73:0;;;14102:21:1;14159:2;14139:18;;;14132:30;14198:32;14178:18;;;14171:60;14248:18;;48251:73:0;13918:354:1;48251:73:0;48365:5;;48353:8;48341:9;;:20;;;;:::i;:::-;:29;;48333:50;;;;-1:-1:-1;;;48333:50:0;;;;;;;:::i;:::-;48405:8;48392:9;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;48429:10:0;48422:18;;;;:6;:18;;;;;:30;;48444:8;;48422:18;:30;;48444:8;;48422:30;:::i;:::-;;;;-1:-1:-1;48461:31:0;;-1:-1:-1;48471:10:0;48483:8;48461:9;:31::i;49094:107::-;49152:7;49175:20;49189:5;49175:13;:20::i;44546:201::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44635:22:0;::::1;44627:73;;;::::0;-1:-1:-1;;;44627:73:0;;8236:2:1;44627:73:0::1;::::0;::::1;8218:21:1::0;8275:2;8255:18;;;8248:30;8314:34;8294:18;;;8287:62;-1:-1:-1;;;8365:18:1;;;8358:36;8411:19;;44627:73:0::1;8034:402:1::0;44627:73:0::1;44711:28;44730:8;44711:18;:28::i;46964:89::-:0;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;47027:9:::1;:18:::0;46964:89::o;47813:::-;43683:7;43710:6;-1:-1:-1;;;;;43710:6:0;26266:10;43857:23;43849:68;;;;-1:-1:-1;;;43849:68:0;;;;;;;:::i;:::-;47876:9:::1;:18:::0;47813:89::o;39036:172::-;39133:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39133:29:0;-1:-1:-1;;;;;39133:29:0;;;;;;;;;39174:28;;39133:24;;39174:28;;;;;;;39036:172;;;:::o;37401:1529::-;37498:35;37536:20;37548:7;37536:11;:20::i;:::-;37607:18;;37498:58;;-1:-1:-1;37565:22:0;;-1:-1:-1;;;;;37591:34:0;26266:10;-1:-1:-1;;;;;37591:34:0;;:81;;;-1:-1:-1;26266:10:0;37636:20;37648:7;37636:11;:20::i;:::-;-1:-1:-1;;;;;37636:36:0;;37591:81;:142;;;-1:-1:-1;37700:18:0;;37683:50;;26266:10;34105:186;:::i;37683:50::-;37565:169;;37759:17;37743:101;;;;-1:-1:-1;;;37743:101:0;;13701:2:1;37743:101:0;;;13683:21:1;13740:2;13720:18;;;13713:30;13779:34;13759:18;;;13752:62;-1:-1:-1;;;13830:18:1;;;13823:48;13888:19;;37743:101:0;13499:414:1;37743:101:0;37891:4;-1:-1:-1;;;;;37869:26:0;:13;:18;;;-1:-1:-1;;;;;37869:26:0;;37853:98;;;;-1:-1:-1;;;37853:98:0;;12162:2:1;37853:98:0;;;12144:21:1;12201:2;12181:18;;;12174:30;12240:34;12220:18;;;12213:62;-1:-1:-1;;;12291:18:1;;;12284:36;12337:19;;37853:98:0;11960:402:1;37853:98:0;-1:-1:-1;;;;;37966:16:0;;37958:66;;;;-1:-1:-1;;;37958:66:0;;9458:2:1;37958:66:0;;;9440:21:1;9497:2;9477:18;;;9470:30;9536:34;9516:18;;;9509:62;-1:-1:-1;;;9587:18:1;;;9580:35;9632:19;;37958:66:0;9256:401:1;37958:66:0;38133:49;38150:1;38154:7;38163:13;:18;;;38133:8;:49::i;:::-;-1:-1:-1;;;;;38191:18:0;;;;;;:12;:18;;;;;:31;;38221:1;;38191:18;:31;;38221:1;;-1:-1:-1;;;;;38191:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38191:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38229:16:0;;-1:-1:-1;38229:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38229:16:0;;:29;;-1:-1:-1;;38229:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38229:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38288:43:0;;;;;;;;-1:-1:-1;;;;;38288:43:0;;;;;;38314:15;38288:43;;;;;;;;;-1:-1:-1;38265:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38265:66:0;-1:-1:-1;;;;;;38265:66:0;;;;;;;;;;;38581:11;38277:7;-1:-1:-1;38581:11:0;:::i;:::-;38644:1;38603:24;;;:11;:24;;;;;:29;38559:33;;-1:-1:-1;;;;;;38603:29:0;38599:236;;38661:20;38669:11;35436:12;;-1:-1:-1;35426:22:0;35349:105;38661:20;38657:171;;;38721:97;;;;;;;;38748:18;;-1:-1:-1;;;;;38721:97:0;;;;;;38779:28;;;;38721:97;;;;;;;;;;-1:-1:-1;38694:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38694:124:0;-1:-1:-1;;;;;;38694:124:0;;;;;;;;;;;;38657:171;38867:7;38863:2;-1:-1:-1;;;;;38848:27:0;38857:4;-1:-1:-1;;;;;38848:27:0;;;;;;;;;;;38882:42;37491:1439;;;37401:1529;;;:::o;39362:846::-;39452:24;;39491:12;39483:49;;;;-1:-1:-1;;;39483:49:0;;11397:2:1;39483:49:0;;;11379:21:1;11436:2;11416:18;;;11409:30;11475:26;11455:18;;;11448:54;11519:18;;39483:49:0;11195:348:1;39483:49:0;39539:16;39589:1;39558:28;39578:8;39558:17;:28;:::i;:::-;:32;;;;:::i;:::-;39539:51;;39629:1;39612:14;;:18;;;;:::i;:::-;39601:8;:29;39597:81;;;39669:1;39652:14;;:18;;;;:::i;:::-;39641:29;;39597:81;39793:17;39801:8;35436:12;;-1:-1:-1;35426:22:0;35349:105;39793:17;39785:68;;;;-1:-1:-1;;;39785:68:0;;17501:2:1;39785:68:0;;;17483:21:1;17540:2;17520:18;;;17513:30;17579:34;17559:18;;;17552:62;-1:-1:-1;;;17630:18:1;;;17623:36;17676:19;;39785:68:0;17299:402:1;39785:68:0;39877:17;39860:297;39901:8;39896:1;:13;39860:297;;39960:1;39929:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;39929:19:0;39925:225;;39975:31;40009:14;40021:1;40009:11;:14::i;:::-;40051:89;;;;;;;;40078:14;;-1:-1:-1;;;;;40051:89:0;;;;;;40105:24;;;;40051:89;;;;;;;;;;-1:-1:-1;40034:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;40034:106:0;-1:-1:-1;;;;;;40034:106:0;;;;;;;;;;;;-1:-1:-1;39925:225:0;39911:3;;;;:::i;:::-;;;;39860:297;;;-1:-1:-1;40190:12:0;:8;40201:1;40190:12;:::i;:::-;40163:24;:39;-1:-1:-1;;;39362:846:0:o;31138:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31255:16:0;31263:7;35436:12;;-1:-1:-1;35426:22:0;35349:105;31255:16;31247:71;;;;-1:-1:-1;;;31247:71:0;;8643:2:1;31247:71:0;;;8625:21:1;8682:2;8662:18;;;8655:30;8721:34;8701:18;;;8694:62;-1:-1:-1;;;8772:18:1;;;8765:40;8822:19;;31247:71:0;8441:406:1;31247:71:0;31327:26;31375:12;;31364:7;:23;31360:93;;31429:12;;31419:22;;:7;:22;:::i;:::-;:26;;31444:1;31419:26;:::i;:::-;31398:47;;31360:93;31481:7;31461:212;31498:18;31490:4;:26;31461:212;;31535:31;31569:17;;;:11;:17;;;;;;;;;31535:51;;;;;;;;;-1:-1:-1;;;;;31535:51:0;;;;;-1:-1:-1;;;31535:51:0;;;;;;;;;;;;31599:28;31595:71;;31647:9;31138:606;-1:-1:-1;;;;31138:606:0:o;31595:71::-;-1:-1:-1;31518:6:0;;;;:::i;:::-;;;;31461:212;;;-1:-1:-1;31681:57:0;;-1:-1:-1;;;31681:57:0;;18620:2:1;31681:57:0;;;18602:21:1;18659:2;18639:18;;;18632:30;18698:34;18678:18;;;18671:62;-1:-1:-1;;;18749:18:1;;;18742:45;18804:19;;31681:57:0;18418:411:1;44907:191:0;44981:16;45000:6;;-1:-1:-1;;;;;45017:17:0;;;-1:-1:-1;;;;;;45017:17:0;;;;;;45050:40;;45000:6;;;;;;;45050:40;;44981:16;45050:40;44970:128;44907:191;:::o;35460:98::-;35525:27;35535:2;35539:8;35525:27;;;;;;;;;;;;:9;:27::i;40751:690::-;40888:4;-1:-1:-1;;;;;40905:13:0;;6041:19;:23;40901:535;;40944:72;;-1:-1:-1;;;40944:72:0;;-1:-1:-1;;;;;40944:36:0;;;;;:72;;26266:10;;40995:4;;41001:7;;41010:5;;40944:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40944:72:0;;;;;;;;-1:-1:-1;;40944:72:0;;;;;;;;;;;;:::i;:::-;;;40931:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41175:13:0;;41171:215;;41208:61;;-1:-1:-1;;;41208:61:0;;;;;;;:::i;41171:215::-;41354:6;41348:13;41339:6;41335:2;41331:15;41324:38;40931:464;-1:-1:-1;;;;;;41066:55:0;-1:-1:-1;;;41066:55:0;;-1:-1:-1;41059:62:0;;40901:535;-1:-1:-1;41424:4:0;40901:535;40751:690;;;;;;:::o;48563:108::-;48623:13;48652;48645:20;;;;;:::i;2754:723::-;2810:13;3031:10;3027:53;;-1:-1:-1;;3058:10:0;;;;;;;;;;;;-1:-1:-1;;;3058:10:0;;;;;2754:723::o;3027:53::-;3105:5;3090:12;3146:78;3153:9;;3146:78;;3179:8;;;;:::i;:::-;;-1:-1:-1;3202:10:0;;-1:-1:-1;3210:2:0;3202:10;;:::i;:::-;;;3146:78;;;3234:19;3266:6;3256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3256:17:0;;3234:39;;3284:154;3291:10;;3284:154;;3318:11;3328:1;3318:11;;:::i;:::-;;-1:-1:-1;3387:10:0;3395:2;3387:5;:10;:::i;:::-;3374:24;;:2;:24;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3344:56:0;;;;;;;;-1:-1:-1;3415:11:0;3424:2;3415:11;;:::i;:::-;;;3284:154;;45837:269;45933:4;45965:124;45996:11;;45965:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46047:28:0;;-1:-1:-1;;46064:10:0;5562:2:1;5558:15;5554:53;46047:28:0;;;5542:66:1;46020:4:0;;-1:-1:-1;5624:12:1;;;-1:-1:-1;46047:28:0;;;;;;;;;;;;46037:39;;;;;;45965:18;:124::i;30892:240::-;30953:7;-1:-1:-1;;;;;30985:19:0;;30969:102;;;;-1:-1:-1;;;30969:102:0;;9864:2:1;30969:102:0;;;9846:21:1;9903:2;9883:18;;;9876:30;9942:34;9922:18;;;9915:62;-1:-1:-1;;;9993:18:1;;;9986:47;10050:19;;30969:102:0;9662:413:1;30969:102:0;-1:-1:-1;;;;;;31093:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31093:32:0;;-1:-1:-1;;;;;31093:32:0;;30892:240::o;35897:1272::-;36025:12;;-1:-1:-1;;;;;36052:16:0;;36044:62;;;;-1:-1:-1;;;36044:62:0;;16341:2:1;36044:62:0;;;16323:21:1;16380:2;16360:18;;;16353:30;16419:34;16399:18;;;16392:62;-1:-1:-1;;;16470:18:1;;;16463:31;16511:19;;36044:62:0;16139:397:1;36044:62:0;36243:21;36251:12;35436;;-1:-1:-1;35426:22:0;35349:105;36243:21;36242:22;36234:64;;;;-1:-1:-1;;;36234:64:0;;15983:2:1;36234:64:0;;;15965:21:1;16022:2;16002:18;;;15995:30;16061:31;16041:18;;;16034:59;16110:18;;36234:64:0;15781:353:1;36234:64:0;36325:12;;36313:8;:24;;36305:71;;;;-1:-1:-1;;;36305:71:0;;19450:2:1;36305:71:0;;;19432:21:1;19489:2;19469:18;;;19462:30;19528:34;19508:18;;;19501:62;-1:-1:-1;;;19579:18:1;;;19572:32;19621:19;;36305:71:0;19248:398:1;36305:71:0;-1:-1:-1;;;;;36488:16:0;;36455:30;36488:16;;;:12;:16;;;;;;;;;36455:49;;;;;;;;;-1:-1:-1;;;;;36455:49:0;;;;;-1:-1:-1;;;36455:49:0;;;;;;;;;;;36530:119;;;;;;;;36550:19;;36455:49;;36530:119;;;36550:39;;36580:8;;36550:39;:::i;:::-;-1:-1:-1;;;;;36530:119:0;;;;;36633:8;36598:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36530:119:0;;;;;;-1:-1:-1;;;;;36511:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36511:138:0;;;;;;;;;;;;36684:43;;;;;;;;;;;36710:15;36684:43;;;;;;;;36656:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36656:71:0;-1:-1:-1;;;;;;36656:71:0;;;;;;;;;;;;;;;;;;36668:12;;36780:281;36804:8;36800:1;:12;36780:281;;;36833:38;;36858:12;;-1:-1:-1;;;;;36833:38:0;;;36850:1;;36833:38;;36850:1;;36833:38;36898:59;36929:1;36933:2;36937:12;36951:5;36898:22;:59::i;:::-;36880:150;;;;-1:-1:-1;;;36880:150:0;;;;;;;:::i;:::-;37039:14;;;;:::i;:::-;;;;36814:3;;;;;:::i;:::-;;;;36780:281;;;-1:-1:-1;37069:12:0;:27;;;37103:60;34791:319;923:190;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:180::-;3051:6;3104:2;3092:9;3083:7;3079:23;3075:32;3072:52;;;3120:1;3117;3110:12;3072:52;-1:-1:-1;3143:23:1;;2992:180;-1:-1:-1;2992:180:1:o;3177:245::-;3235:6;3288:2;3276:9;3267:7;3263:23;3259:32;3256:52;;;3304:1;3301;3294:12;3256:52;3343:9;3330:23;3362:30;3386:5;3362:30;:::i;3427:249::-;3496:6;3549:2;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3597:9;3591:16;3616:30;3640:5;3616:30;:::i;3681:592::-;3752:6;3760;3813:2;3801:9;3792:7;3788:23;3784:32;3781:52;;;3829:1;3826;3819:12;3781:52;3869:9;3856:23;3898:18;3939:2;3931:6;3928:14;3925:34;;;3955:1;3952;3945:12;3925:34;3993:6;3982:9;3978:22;3968:32;;4038:7;4031:4;4027:2;4023:13;4019:27;4009:55;;4060:1;4057;4050:12;4009:55;4100:2;4087:16;4126:2;4118:6;4115:14;4112:34;;;4142:1;4139;4132:12;4112:34;4187:7;4182:2;4173:6;4169:2;4165:15;4161:24;4158:37;4155:57;;;4208:1;4205;4198:12;4155:57;4239:2;4231:11;;;;;4261:6;;-1:-1:-1;3681:592:1;;-1:-1:-1;;;;3681:592:1:o;4463:683::-;4558:6;4566;4574;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;4679:9;4666:23;4656:33;;4740:2;4729:9;4725:18;4712:32;4763:18;4804:2;4796:6;4793:14;4790:34;;;4820:1;4817;4810:12;4790:34;4858:6;4847:9;4843:22;4833:32;;4903:7;4896:4;4892:2;4888:13;4884:27;4874:55;;4925:1;4922;4915:12;4874:55;4965:2;4952:16;4991:2;4983:6;4980:14;4977:34;;;5007:1;5004;4997:12;4977:34;5060:7;5055:2;5045:6;5042:1;5038:14;5034:2;5030:23;5026:32;5023:45;5020:65;;;5081:1;5078;5071:12;5020:65;5112:2;5108;5104:11;5094:21;;5134:6;5124:16;;;;;4463:683;;;;;:::o;5151:257::-;5192:3;5230:5;5224:12;5257:6;5252:3;5245:19;5273:63;5329:6;5322:4;5317:3;5313:14;5306:4;5299:5;5295:16;5273:63;:::i;:::-;5390:2;5369:15;-1:-1:-1;;5365:29:1;5356:39;;;;5397:4;5352:50;;5151:257;-1:-1:-1;;5151:257:1:o;5647:470::-;5826:3;5864:6;5858:13;5880:53;5926:6;5921:3;5914:4;5906:6;5902:17;5880:53;:::i;:::-;5996:13;;5955:16;;;;6018:57;5996:13;5955:16;6052:4;6040:17;;6018:57;:::i;:::-;6091:20;;5647:470;-1:-1:-1;;;;5647:470:1:o;6540:488::-;-1:-1:-1;;;;;6809:15:1;;;6791:34;;6861:15;;6856:2;6841:18;;6834:43;6908:2;6893:18;;6886:34;;;6956:3;6951:2;6936:18;;6929:31;;;6734:4;;6977:45;;7002:19;;6994:6;6977:45;:::i;:::-;6969:53;6540:488;-1:-1:-1;;;;;;6540:488:1:o;7407:219::-;7556:2;7545:9;7538:21;7519:4;7576:44;7616:2;7605:9;7601:18;7593:6;7576:44;:::i;12367:356::-;12569:2;12551:21;;;12588:18;;;12581:30;12647:34;12642:2;12627:18;;12620:62;12714:2;12699:18;;12367:356::o;15025:331::-;15227:2;15209:21;;;15266:1;15246:18;;;15239:29;-1:-1:-1;;;15299:2:1;15284:18;;15277:38;15347:2;15332:18;;15025:331::o;15361:415::-;15563:2;15545:21;;;15602:2;15582:18;;;15575:30;15641:34;15636:2;15621:18;;15614:62;-1:-1:-1;;;15707:2:1;15692:18;;15685:49;15766:3;15751:19;;15361:415::o;20198:253::-;20238:3;-1:-1:-1;;;;;20327:2:1;20324:1;20320:10;20357:2;20354:1;20350:10;20388:3;20384:2;20380:12;20375:3;20372:21;20369:47;;;20396:18;;:::i;20456:128::-;20496:3;20527:1;20523:6;20520:1;20517:13;20514:39;;;20533:18;;:::i;:::-;-1:-1:-1;20569:9:1;;20456:128::o;20589:120::-;20629:1;20655;20645:35;;20660:18;;:::i;:::-;-1:-1:-1;20694:9:1;;20589:120::o;20714:168::-;20754:7;20820:1;20816;20812:6;20808:14;20805:1;20802:21;20797:1;20790:9;20783:17;20779:45;20776:71;;;20827:18;;:::i;:::-;-1:-1:-1;20867:9:1;;20714:168::o;20887:246::-;20927:4;-1:-1:-1;;;;;21040:10:1;;;;21010;;21062:12;;;21059:38;;;21077:18;;:::i;:::-;21114:13;;20887:246;-1:-1:-1;;;20887:246:1:o;21138:125::-;21178:4;21206:1;21203;21200:8;21197:34;;;21211:18;;:::i;:::-;-1:-1:-1;21248:9:1;;21138:125::o;21268:258::-;21340:1;21350:113;21364:6;21361:1;21358:13;21350:113;;;21440:11;;;21434:18;21421:11;;;21414:39;21386:2;21379:10;21350:113;;;21481:6;21478:1;21475:13;21472:48;;;-1:-1:-1;;21516:1:1;21498:16;;21491:27;21268:258::o;21531:136::-;21570:3;21598:5;21588:39;;21607:18;;:::i;:::-;-1:-1:-1;;;21643:18:1;;21531:136::o;21672:380::-;21751:1;21747:12;;;;21794;;;21815:61;;21869:4;21861:6;21857:17;21847:27;;21815:61;21922:2;21914:6;21911:14;21891:18;21888:38;21885:161;;;21968:10;21963:3;21959:20;21956:1;21949:31;22003:4;22000:1;21993:15;22031:4;22028:1;22021:15;21885:161;;21672:380;;;:::o;22057:135::-;22096:3;-1:-1:-1;;22117:17:1;;22114:43;;;22137:18;;:::i;:::-;-1:-1:-1;22184:1:1;22173:13;;22057:135::o;22197:112::-;22229:1;22255;22245:35;;22260:18;;:::i;:::-;-1:-1:-1;22294:9:1;;22197:112::o;22314:127::-;22375:10;22370:3;22366:20;22363:1;22356:31;22406:4;22403:1;22396:15;22430:4;22427:1;22420:15;22446:127;22507:10;22502:3;22498:20;22495:1;22488:31;22538:4;22535:1;22528:15;22562:4;22559:1;22552:15;22578:127;22639:10;22634:3;22630:20;22627:1;22620:31;22670:4;22667:1;22660:15;22694:4;22691:1;22684:15;22710:127;22771:10;22766:3;22762:20;22759:1;22752:31;22802:4;22799:1;22792:15;22826:4;22823:1;22816:15;22842:131;-1:-1:-1;;;;;;22916:32:1;;22906:43;;22896:71;;22963:1;22960;22953:12
Swarm Source
ipfs://daa76ed3fac2311a5e2e26b0496887acf2ce4522783b1b43464b835eda5c79df
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.