ERC-721
Overview
Max Total Supply
298 SMOLS
Holders
126
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SMOLSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
smolcontract
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-10 */ // 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/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/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/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @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: smolcontract.sol pragma solidity ^0.8.0; contract smolcontract is ERC721A, Ownable { uint256 public constant MINT_PRICE = 0.049 ether; uint256 public constant MAX_SUPPLY = 7000; uint256 public constant MAX_PER_WALLET = 10; constructor() ERC721A("smols", "SMOLS") {} modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) { require(_wei >= MINT_PRICE * _quantity, "Insufficent funds"); _; } modifier withinMaximumSupply(uint256 _quantity) { require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply"); _; } /** * Public sale and whitelist sale mechansim */ bool public publicSale = false; bool public whitelistSale = false; modifier publicSaleActive() { require(publicSale, "Public sale not started"); _; } function setPublicSale(bool toggle) external onlyOwner { publicSale = toggle; } modifier whitelistSaleActive() { require(whitelistSale, "Whitelist sale not started"); _; } function setWhitelistSale(bool toggle) external onlyOwner { whitelistSale = toggle; } /** * Public minting */ mapping(address => uint256) public publicAddressMintCount; function mintPublic(uint256 _quantity) public payable publicSaleActive hasCorrectAmount(msg.value, _quantity) withinMaximumSupply(_quantity) { require( _quantity > 0 && publicAddressMintCount[msg.sender] + _quantity <= MAX_PER_WALLET, "Minting above public limit" ); publicAddressMintCount[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } /** * Tiered whitelisting system */ bytes32[5] public tieredWhitelistMerkleRoot; uint256[4] public tieredWhitelistMaximums = [1, 2, 3, 7]; mapping(address => uint256) public whitelistAddressMintCount; mapping(address => uint256) public whitelistAddressCustomLimit; modifier hasValidTier(uint256 tier) { require(tier >= 0 && tier <= 4, "Invalid Tier"); _; } modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address not whitelisted" ); _; } function setWhitelistMerkleRoot(uint256 tier, bytes32 merkleRoot) external onlyOwner hasValidTier(tier) { tieredWhitelistMerkleRoot[tier] = merkleRoot; } function setWhitelistAddressCustomLimit(address _address, uint256 _amount) external onlyOwner { whitelistAddressCustomLimit[_address] = _amount; } function mintWhitelist( uint256 _tier, uint256 _quantity, bytes32[] calldata merkleProof ) public payable whitelistSaleActive hasValidTier(_tier) hasValidMerkleProof(merkleProof, tieredWhitelistMerkleRoot[_tier]) hasCorrectAmount(msg.value, _quantity) withinMaximumSupply(_quantity) { // Mint according to the whitelisted tier limit, otherwise assume custom limit if (_tier <= 3) { require( _quantity > 0 && whitelistAddressMintCount[msg.sender] + _quantity <= tieredWhitelistMaximums[_tier], "Minting above allocation" ); } else { require( _quantity > 0 && whitelistAddressMintCount[msg.sender] + _quantity <= whitelistAddressCustomLimit[msg.sender], "Minting above allocation" ); } whitelistAddressMintCount[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } /** * Admin minting */ function mintAdmin(address _recipient, uint256 _quantity) public onlyOwner withinMaximumSupply(_quantity) { _safeMint(_recipient, _quantity); } /** * Base URI */ string private baseURI; function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * Withdrawal hardcoded to equity addresses, artist holds keys for treasury */ address private constant treasuryAddress = 0x4dE49a63E5974ABE530bc8101FF6c72140942B58; address private constant artistAddress = 0x687F6263082404110043170645753693C57B1192; address private constant devAddress = 0x501c3C1F5b7e61eDD3730961C4BB3676E1BA1a6d; address private constant marketing1Address = 0x28F07E67Ee9D79b35FCcFE710657b1358A17cD84; function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 artistshare = balance * 45 / 100; uint256 devshare = balance * 25 / 100; uint256 marketingshare = balance * 15 / 100; Address.sendValue(payable(artistAddress), artistshare); Address.sendValue(payable(devAddress), devshare); Address.sendValue(payable(marketing1Address), marketingshare); uint256 finalbalance = address(this).balance; Address.sendValue(payable(treasuryAddress), finalbalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setWhitelistAddressCustomLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setWhitelistSale","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":"","type":"uint256"}],"name":"tieredWhitelistMaximums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tieredWhitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressCustomLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805461ffff60a01b1916905561010060405260016080908152600260a052600360c052600760e0526200003990600f9060046200011c565b503480156200004757600080fd5b5060405180604001604052806005815260200164736d6f6c7360d81b81525060405180604001604052806005815260200164534d4f4c5360d81b81525081600290805190602001906200009c92919062000164565b508051620000b290600390602084019062000164565b50506000805550620000c433620000ca565b62000235565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826004810192821562000152579160200282015b8281111562000152578251829060ff1690559160200191906001019062000130565b5062000160929150620001e1565b5090565b8280546200017290620001f8565b90600052602060002090601f01602090048101928262000196576000855562000152565b82601f10620001b157805160ff191683800117855562000152565b8280016001018555821562000152579182015b8281111562000152578251825591602001919060010190620001c4565b5b80821115620001605760008155600101620001e2565b600181811c908216806200020d57607f821691505b602082108114156200022f57634e487b7160e01b600052602260045260246000fd5b50919050565b61257e80620002456000396000f3fe60806040526004361061024f5760003560e01c80635aca1bb611610138578063c002d23d116100b0578063ca7ce3ec1161007f578063ee49382411610064578063ee493824146106c1578063efd0cbf9146106d4578063f2fde38b146106e757600080fd5b8063ca7ce3ec14610658578063e985e9c51461067857600080fd5b8063c002d23d146105dd578063c15b38d6146105f8578063c3a7199914610618578063c87b56dd1461063857600080fd5b806374f586b11161010757806395d89b41116100ec57806395d89b4114610588578063a22cb4651461059d578063b88d4fde146105bd57600080fd5b806374f586b11461054a5780638da5cb5b1461056a57600080fd5b80635aca1bb6146104d55780636352211e146104f557806370a0823114610515578063715018a61461053557600080fd5b806331ffd6f1116101cb5780633ccfd60b1161019a57806343f35cbe1161017f57806343f35cbe146104685780634cb73b5c1461049557806355f804b3146104b557600080fd5b80633ccfd60b1461043357806342842e0e1461044857600080fd5b806331ffd6f1146103bb57806332cb6b0c146103dc57806332f611cc146103f257806333bc1c5c1461041257600080fd5b8063095ea7b3116102225780630f36d53d116102075780630f36d53d1461035557806318160ddd1461038257806323b872dd1461039b57600080fd5b8063095ea7b31461031e5780630f2cdd6c1461034057600080fd5b806301ffc9a71461025457806306fdde031461028957806307e4d480146102ab578063081812fc146102e6575b600080fd5b34801561026057600080fd5b5061027461026f366004611fd6565b610707565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610759565b604051610280919061204b565b3480156102b757600080fd5b506102d86102c636600461207a565b60096020526000908152604090205481565b604051908152602001610280565b3480156102f257600080fd5b50610306610301366004612095565b6107eb565b6040516001600160a01b039091168152602001610280565b34801561032a57600080fd5b5061033e6103393660046120ae565b61082f565b005b34801561034c57600080fd5b506102d8600a81565b34801561036157600080fd5b506102d861037036600461207a565b60146020526000908152604090205481565b34801561038e57600080fd5b50600154600054036102d8565b3480156103a757600080fd5b5061033e6103b63660046120d8565b6108bd565b3480156103c757600080fd5b5060085461027490600160a81b900460ff1681565b3480156103e857600080fd5b506102d8611b5881565b3480156103fe57600080fd5b5061033e61040d3660046120ae565b6108c8565b34801561041e57600080fd5b5060085461027490600160a01b900460ff1681565b34801561043f57600080fd5b5061033e610931565b34801561045457600080fd5b5061033e6104633660046120d8565b610a4b565b34801561047457600080fd5b506102d861048336600461207a565b60136020526000908152604090205481565b3480156104a157600080fd5b506102d86104b0366004612095565b610a66565b3480156104c157600080fd5b5061033e6104d03660046121a0565b610a7d565b3480156104e157600080fd5b5061033e6104f03660046121f9565b610adc565b34801561050157600080fd5b50610306610510366004612095565b610b5d565b34801561052157600080fd5b506102d861053036600461207a565b610b6f565b34801561054157600080fd5b5061033e610bbe565b34801561055657600080fd5b506102d8610565366004612095565b610c12565b34801561057657600080fd5b506008546001600160a01b0316610306565b34801561059457600080fd5b5061029e610c22565b3480156105a957600080fd5b5061033e6105b8366004612214565b610c31565b3480156105c957600080fd5b5061033e6105d8366004612247565b610cc7565b3480156105e957600080fd5b506102d866ae153d89fe800081565b34801561060457600080fd5b5061033e6106133660046122c3565b610d18565b34801561062457600080fd5b5061033e6106333660046120ae565b610dbc565b34801561064457600080fd5b5061029e610653366004612095565b610e6b565b34801561066457600080fd5b5061033e6106733660046121f9565b610ef0565b34801561068457600080fd5b506102746106933660046122e5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61033e6106cf36600461230f565b610f71565b61033e6106e2366004612095565b6112f3565b3480156106f357600080fd5b5061033e61070236600461207a565b6114b2565b60006001600160e01b031982166380ac58cd60e01b148061073857506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076890612392565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612392565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611582565b610813576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083a82610b5d565b9050806001600160a01b0316836001600160a01b0316141561086f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088f575061088d8133610693565b155b156108ad576040516367d9dca160e11b815260040160405180910390fd5b6108b88383836115ad565b505050565b6108b8838383611616565b6008546001600160a01b031633146109155760405162461bcd60e51b8152602060048201819052602482015260008051602061252983398151915260448201526064015b60405180910390fd5b6001600160a01b03909116600090815260146020526040902055565b6008546001600160a01b031633146109795760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b476000606461098983602d6123e3565b6109939190612418565b9050600060646109a48460196123e3565b6109ae9190612418565b9050600060646109bf85600f6123e3565b6109c99190612418565b90506109e973687f6263082404110043170645753693c57b119284611803565b610a0773501c3c1f5b7e61edd3730961c4bb3676e1ba1a6d83611803565b610a257328f07e67ee9d79b35fccfe710657b1358a17cd8482611803565b47610a44734de49a63e5974abe530bc8101ff6c72140942b5882611803565b5050505050565b6108b883838360405180602001604052806000815250610cc7565b600f8160048110610a7657600080fd5b0154905081565b6008546001600160a01b03163314610ac55760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b8051610ad8906015906020840190611f27565b5050565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b60088054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610b688261191c565b5192915050565b60006001600160a01b038216610b98576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b610c106000611a38565b565b600a8160058110610a7657600080fd5b60606003805461076890612392565b6001600160a01b038216331415610c5b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd2848484611616565b6001600160a01b0383163b15158015610cf45750610cf284848484611a97565b155b15610d12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d605760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b816004811115610da15760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b604482015260640161090c565b81600a8460058110610db557610db561242c565b0155505050565b6008546001600160a01b03163314610e045760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b80611b5881610e166001546000540390565b610e209190612442565b1115610e615760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b6108b88383611b80565b6060610e7682611582565b610e9357604051630a14c4b560e41b815260040160405180910390fd5b6000610e9d611b9a565b9050805160001415610ebe5760405180602001604052806000815250610ee9565b80610ec884611ba9565b604051602001610ed992919061245a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f385760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b60088054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600854600160a81b900460ff16610fca5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f742073746172746564000000000000604482015260640161090c565b83600481111561100b5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b604482015260640161090c565b8282600a87600581106110205761102061242c565b0154611094838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611cbf565b6110e05760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161090c565b34876110f38166ae153d89fe80006123e3565b8210156111425760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e6473000000000000000000000000000000604482015260640161090c565b88611b58816111546001546000540390565b61115e9190612442565b111561119f5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b60038b116112365760008a1180156111e55750600f8b600481106111c5576111c561242c565b0154336000908152601360205260409020546111e2908c90612442565b11155b6112315760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e0000000000000000604482015260640161090c565b6112b7565b60008a11801561126b575033600090815260146020908152604080832054601390925290912054611268908c90612442565b11155b6112b75760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e0000000000000000604482015260640161090c565b33600090815260136020526040812080548c92906112d6908490612442565b909155506112e69050338b611b80565b5050505050505050505050565b600854600160a01b900460ff1661134c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f742073746172746564000000000000000000604482015260640161090c565b348161135f8166ae153d89fe80006123e3565b8210156113ae5760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e6473000000000000000000000000000000604482015260640161090c565b82611b58816113c06001546000540390565b6113ca9190612442565b111561140b5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b600084118015611437575033600090815260096020526040902054600a90611434908690612442565b11155b6114835760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000604482015260640161090c565b33600090815260096020526040812080548692906114a2908490612442565b90915550610d1290503385611b80565b6008546001600160a01b031633146114fa5760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b6001600160a01b0381166115765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161090c565b61157f81611a38565b50565b6000805482108015610753575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116218261191c565b9050836001600160a01b031681600001516001600160a01b0316146116585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061167657506116768533610693565b80611691575033611686846107eb565b6001600160a01b0316145b9050806116b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d857604051633a954ecd60e21b815260040160405180910390fd5b6116e4600084876115ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117ba5760005482146117ba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a44565b804710156118535760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161090c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118a0576040519150601f19603f3d011682016040523d82523d6000602084013e6118a5565b606091505b50509050806108b85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161090c565b604080516060810182526000808252602082018190529181019190915281600054811015611a1f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a1d5780516001600160a01b0316156119b3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a18579392505050565b6119b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611acc903390899088908890600401612489565b6020604051808303816000875af1925050508015611b07575060408051601f3d908101601f19168201909252611b04918101906124c5565b60015b611b62573d808015611b35576040519150601f19603f3d011682016040523d82523d6000602084013e611b3a565b606091505b508051611b5a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b610ad8828260405180602001604052806000815250611cd5565b60606015805461076890612392565b606081611bcd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf75780611be1816124e2565b9150611bf09050600a83612418565b9150611bd1565b60008167ffffffffffffffff811115611c1257611c12612114565b6040519080825280601f01601f191660200182016040528015611c3c576020820181803683370190505b5090505b8415611b7857611c516001836124fd565b9150611c5e600a86612514565b611c69906030612442565b60f81b818381518110611c7e57611c7e61242c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611cb8600a86612418565b9450611c40565b600082611ccc8584611ce2565b14949350505050565b6108b88383836001611d56565b600081815b8451811015611d4e576000858281518110611d0457611d0461242c565b60200260200101519050808311611d2a5760008381526020829052604090209250611d3b565b600081815260208490526040902092505b5080611d46816124e2565b915050611ce7565b509392505050565b6000546001600160a01b038516611d7f57604051622e076360e81b815260040160405180910390fd5b83611d9d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e4f57506001600160a01b0387163b15155b15611ed8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ea06000888480600101955088611a97565b611ebd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e55578260005414611ed357600080fd5b611f1e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ed9575b50600055610a44565b828054611f3390612392565b90600052602060002090601f016020900481019282611f555760008555611f9b565b82601f10611f6e57805160ff1916838001178555611f9b565b82800160010185558215611f9b579182015b82811115611f9b578251825591602001919060010190611f80565b50611fa7929150611fab565b5090565b5b80821115611fa75760008155600101611fac565b6001600160e01b03198116811461157f57600080fd5b600060208284031215611fe857600080fd5b8135610ee981611fc0565b60005b8381101561200e578181015183820152602001611ff6565b83811115610d125750506000910152565b60008151808452612037816020860160208601611ff3565b601f01601f19169290920160200192915050565b602081526000610ee9602083018461201f565b80356001600160a01b038116811461207557600080fd5b919050565b60006020828403121561208c57600080fd5b610ee98261205e565b6000602082840312156120a757600080fd5b5035919050565b600080604083850312156120c157600080fd5b6120ca8361205e565b946020939093013593505050565b6000806000606084860312156120ed57600080fd5b6120f68461205e565b92506121046020850161205e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561214557612145612114565b604051601f8501601f19908116603f0116810190828211818310171561216d5761216d612114565b8160405280935085815286868601111561218657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121b257600080fd5b813567ffffffffffffffff8111156121c957600080fd5b8201601f810184136121da57600080fd5b611b788482356020840161212a565b8035801515811461207557600080fd5b60006020828403121561220b57600080fd5b610ee9826121e9565b6000806040838503121561222757600080fd5b6122308361205e565b915061223e602084016121e9565b90509250929050565b6000806000806080858703121561225d57600080fd5b6122668561205e565b93506122746020860161205e565b925060408501359150606085013567ffffffffffffffff81111561229757600080fd5b8501601f810187136122a857600080fd5b6122b78782356020840161212a565b91505092959194509250565b600080604083850312156122d657600080fd5b50508035926020909101359150565b600080604083850312156122f857600080fd5b6123018361205e565b915061223e6020840161205e565b6000806000806060858703121561232557600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561234b57600080fd5b818701915087601f83011261235f57600080fd5b81358181111561236e57600080fd5b8860208260051b850101111561238357600080fd5b95989497505060200194505050565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123fd576123fd6123cd565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261242757612427612402565b500490565b634e487b7160e01b600052603260045260246000fd5b60008219821115612455576124556123cd565b500190565b6000835161246c818460208801611ff3565b835190830190612480818360208801611ff3565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124bb608083018461201f565b9695505050505050565b6000602082840312156124d757600080fd5b8151610ee981611fc0565b60006000198214156124f6576124f66123cd565b5060010190565b60008282101561250f5761250f6123cd565b500390565b60008261252357612523612402565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dd8771d34a8bc01f28fbdc13c0a628384c94af1bf67509c241e46f6d9ad421aa64736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061024f5760003560e01c80635aca1bb611610138578063c002d23d116100b0578063ca7ce3ec1161007f578063ee49382411610064578063ee493824146106c1578063efd0cbf9146106d4578063f2fde38b146106e757600080fd5b8063ca7ce3ec14610658578063e985e9c51461067857600080fd5b8063c002d23d146105dd578063c15b38d6146105f8578063c3a7199914610618578063c87b56dd1461063857600080fd5b806374f586b11161010757806395d89b41116100ec57806395d89b4114610588578063a22cb4651461059d578063b88d4fde146105bd57600080fd5b806374f586b11461054a5780638da5cb5b1461056a57600080fd5b80635aca1bb6146104d55780636352211e146104f557806370a0823114610515578063715018a61461053557600080fd5b806331ffd6f1116101cb5780633ccfd60b1161019a57806343f35cbe1161017f57806343f35cbe146104685780634cb73b5c1461049557806355f804b3146104b557600080fd5b80633ccfd60b1461043357806342842e0e1461044857600080fd5b806331ffd6f1146103bb57806332cb6b0c146103dc57806332f611cc146103f257806333bc1c5c1461041257600080fd5b8063095ea7b3116102225780630f36d53d116102075780630f36d53d1461035557806318160ddd1461038257806323b872dd1461039b57600080fd5b8063095ea7b31461031e5780630f2cdd6c1461034057600080fd5b806301ffc9a71461025457806306fdde031461028957806307e4d480146102ab578063081812fc146102e6575b600080fd5b34801561026057600080fd5b5061027461026f366004611fd6565b610707565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e610759565b604051610280919061204b565b3480156102b757600080fd5b506102d86102c636600461207a565b60096020526000908152604090205481565b604051908152602001610280565b3480156102f257600080fd5b50610306610301366004612095565b6107eb565b6040516001600160a01b039091168152602001610280565b34801561032a57600080fd5b5061033e6103393660046120ae565b61082f565b005b34801561034c57600080fd5b506102d8600a81565b34801561036157600080fd5b506102d861037036600461207a565b60146020526000908152604090205481565b34801561038e57600080fd5b50600154600054036102d8565b3480156103a757600080fd5b5061033e6103b63660046120d8565b6108bd565b3480156103c757600080fd5b5060085461027490600160a81b900460ff1681565b3480156103e857600080fd5b506102d8611b5881565b3480156103fe57600080fd5b5061033e61040d3660046120ae565b6108c8565b34801561041e57600080fd5b5060085461027490600160a01b900460ff1681565b34801561043f57600080fd5b5061033e610931565b34801561045457600080fd5b5061033e6104633660046120d8565b610a4b565b34801561047457600080fd5b506102d861048336600461207a565b60136020526000908152604090205481565b3480156104a157600080fd5b506102d86104b0366004612095565b610a66565b3480156104c157600080fd5b5061033e6104d03660046121a0565b610a7d565b3480156104e157600080fd5b5061033e6104f03660046121f9565b610adc565b34801561050157600080fd5b50610306610510366004612095565b610b5d565b34801561052157600080fd5b506102d861053036600461207a565b610b6f565b34801561054157600080fd5b5061033e610bbe565b34801561055657600080fd5b506102d8610565366004612095565b610c12565b34801561057657600080fd5b506008546001600160a01b0316610306565b34801561059457600080fd5b5061029e610c22565b3480156105a957600080fd5b5061033e6105b8366004612214565b610c31565b3480156105c957600080fd5b5061033e6105d8366004612247565b610cc7565b3480156105e957600080fd5b506102d866ae153d89fe800081565b34801561060457600080fd5b5061033e6106133660046122c3565b610d18565b34801561062457600080fd5b5061033e6106333660046120ae565b610dbc565b34801561064457600080fd5b5061029e610653366004612095565b610e6b565b34801561066457600080fd5b5061033e6106733660046121f9565b610ef0565b34801561068457600080fd5b506102746106933660046122e5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61033e6106cf36600461230f565b610f71565b61033e6106e2366004612095565b6112f3565b3480156106f357600080fd5b5061033e61070236600461207a565b6114b2565b60006001600160e01b031982166380ac58cd60e01b148061073857506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076890612392565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612392565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611582565b610813576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083a82610b5d565b9050806001600160a01b0316836001600160a01b0316141561086f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088f575061088d8133610693565b155b156108ad576040516367d9dca160e11b815260040160405180910390fd5b6108b88383836115ad565b505050565b6108b8838383611616565b6008546001600160a01b031633146109155760405162461bcd60e51b8152602060048201819052602482015260008051602061252983398151915260448201526064015b60405180910390fd5b6001600160a01b03909116600090815260146020526040902055565b6008546001600160a01b031633146109795760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b476000606461098983602d6123e3565b6109939190612418565b9050600060646109a48460196123e3565b6109ae9190612418565b9050600060646109bf85600f6123e3565b6109c99190612418565b90506109e973687f6263082404110043170645753693c57b119284611803565b610a0773501c3c1f5b7e61edd3730961c4bb3676e1ba1a6d83611803565b610a257328f07e67ee9d79b35fccfe710657b1358a17cd8482611803565b47610a44734de49a63e5974abe530bc8101ff6c72140942b5882611803565b5050505050565b6108b883838360405180602001604052806000815250610cc7565b600f8160048110610a7657600080fd5b0154905081565b6008546001600160a01b03163314610ac55760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b8051610ad8906015906020840190611f27565b5050565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b60088054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610b688261191c565b5192915050565b60006001600160a01b038216610b98576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b610c106000611a38565b565b600a8160058110610a7657600080fd5b60606003805461076890612392565b6001600160a01b038216331415610c5b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd2848484611616565b6001600160a01b0383163b15158015610cf45750610cf284848484611a97565b155b15610d12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d605760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b816004811115610da15760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b604482015260640161090c565b81600a8460058110610db557610db561242c565b0155505050565b6008546001600160a01b03163314610e045760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b80611b5881610e166001546000540390565b610e209190612442565b1115610e615760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b6108b88383611b80565b6060610e7682611582565b610e9357604051630a14c4b560e41b815260040160405180910390fd5b6000610e9d611b9a565b9050805160001415610ebe5760405180602001604052806000815250610ee9565b80610ec884611ba9565b604051602001610ed992919061245a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f385760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b60088054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b600854600160a81b900460ff16610fca5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f742073746172746564000000000000604482015260640161090c565b83600481111561100b5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b2102a34b2b960a11b604482015260640161090c565b8282600a87600581106110205761102061242c565b0154611094838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611cbf565b6110e05760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161090c565b34876110f38166ae153d89fe80006123e3565b8210156111425760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e6473000000000000000000000000000000604482015260640161090c565b88611b58816111546001546000540390565b61115e9190612442565b111561119f5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b60038b116112365760008a1180156111e55750600f8b600481106111c5576111c561242c565b0154336000908152601360205260409020546111e2908c90612442565b11155b6112315760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e0000000000000000604482015260640161090c565b6112b7565b60008a11801561126b575033600090815260146020908152604080832054601390925290912054611268908c90612442565b11155b6112b75760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e672061626f766520616c6c6f636174696f6e0000000000000000604482015260640161090c565b33600090815260136020526040812080548c92906112d6908490612442565b909155506112e69050338b611b80565b5050505050505050505050565b600854600160a01b900460ff1661134c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f742073746172746564000000000000000000604482015260640161090c565b348161135f8166ae153d89fe80006123e3565b8210156113ae5760405162461bcd60e51b815260206004820152601160248201527f496e737566666963656e742066756e6473000000000000000000000000000000604482015260640161090c565b82611b58816113c06001546000540390565b6113ca9190612442565b111561140b5760405162461bcd60e51b815260206004820152601060248201526f53757270617373657320737570706c7960801b604482015260640161090c565b600084118015611437575033600090815260096020526040902054600a90611434908690612442565b11155b6114835760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000604482015260640161090c565b33600090815260096020526040812080548692906114a2908490612442565b90915550610d1290503385611b80565b6008546001600160a01b031633146114fa5760405162461bcd60e51b81526020600482018190526024820152600080516020612529833981519152604482015260640161090c565b6001600160a01b0381166115765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161090c565b61157f81611a38565b50565b6000805482108015610753575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116218261191c565b9050836001600160a01b031681600001516001600160a01b0316146116585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061167657506116768533610693565b80611691575033611686846107eb565b6001600160a01b0316145b9050806116b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d857604051633a954ecd60e21b815260040160405180910390fd5b6116e4600084876115ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117ba5760005482146117ba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a44565b804710156118535760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161090c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118a0576040519150601f19603f3d011682016040523d82523d6000602084013e6118a5565b606091505b50509050806108b85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161090c565b604080516060810182526000808252602082018190529181019190915281600054811015611a1f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a1d5780516001600160a01b0316156119b3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a18579392505050565b6119b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611acc903390899088908890600401612489565b6020604051808303816000875af1925050508015611b07575060408051601f3d908101601f19168201909252611b04918101906124c5565b60015b611b62573d808015611b35576040519150601f19603f3d011682016040523d82523d6000602084013e611b3a565b606091505b508051611b5a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b610ad8828260405180602001604052806000815250611cd5565b60606015805461076890612392565b606081611bcd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf75780611be1816124e2565b9150611bf09050600a83612418565b9150611bd1565b60008167ffffffffffffffff811115611c1257611c12612114565b6040519080825280601f01601f191660200182016040528015611c3c576020820181803683370190505b5090505b8415611b7857611c516001836124fd565b9150611c5e600a86612514565b611c69906030612442565b60f81b818381518110611c7e57611c7e61242c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611cb8600a86612418565b9450611c40565b600082611ccc8584611ce2565b14949350505050565b6108b88383836001611d56565b600081815b8451811015611d4e576000858281518110611d0457611d0461242c565b60200260200101519050808311611d2a5760008381526020829052604090209250611d3b565b600081815260208490526040902092505b5080611d46816124e2565b915050611ce7565b509392505050565b6000546001600160a01b038516611d7f57604051622e076360e81b815260040160405180910390fd5b83611d9d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e4f57506001600160a01b0387163b15155b15611ed8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ea06000888480600101955088611a97565b611ebd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e55578260005414611ed357600080fd5b611f1e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ed9575b50600055610a44565b828054611f3390612392565b90600052602060002090601f016020900481019282611f555760008555611f9b565b82601f10611f6e57805160ff1916838001178555611f9b565b82800160010185558215611f9b579182015b82811115611f9b578251825591602001919060010190611f80565b50611fa7929150611fab565b5090565b5b80821115611fa75760008155600101611fac565b6001600160e01b03198116811461157f57600080fd5b600060208284031215611fe857600080fd5b8135610ee981611fc0565b60005b8381101561200e578181015183820152602001611ff6565b83811115610d125750506000910152565b60008151808452612037816020860160208601611ff3565b601f01601f19169290920160200192915050565b602081526000610ee9602083018461201f565b80356001600160a01b038116811461207557600080fd5b919050565b60006020828403121561208c57600080fd5b610ee98261205e565b6000602082840312156120a757600080fd5b5035919050565b600080604083850312156120c157600080fd5b6120ca8361205e565b946020939093013593505050565b6000806000606084860312156120ed57600080fd5b6120f68461205e565b92506121046020850161205e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561214557612145612114565b604051601f8501601f19908116603f0116810190828211818310171561216d5761216d612114565b8160405280935085815286868601111561218657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121b257600080fd5b813567ffffffffffffffff8111156121c957600080fd5b8201601f810184136121da57600080fd5b611b788482356020840161212a565b8035801515811461207557600080fd5b60006020828403121561220b57600080fd5b610ee9826121e9565b6000806040838503121561222757600080fd5b6122308361205e565b915061223e602084016121e9565b90509250929050565b6000806000806080858703121561225d57600080fd5b6122668561205e565b93506122746020860161205e565b925060408501359150606085013567ffffffffffffffff81111561229757600080fd5b8501601f810187136122a857600080fd5b6122b78782356020840161212a565b91505092959194509250565b600080604083850312156122d657600080fd5b50508035926020909101359150565b600080604083850312156122f857600080fd5b6123018361205e565b915061223e6020840161205e565b6000806000806060858703121561232557600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561234b57600080fd5b818701915087601f83011261235f57600080fd5b81358181111561236e57600080fd5b8860208260051b850101111561238357600080fd5b95989497505060200194505050565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123fd576123fd6123cd565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261242757612427612402565b500490565b634e487b7160e01b600052603260045260246000fd5b60008219821115612455576124556123cd565b500190565b6000835161246c818460208801611ff3565b835190830190612480818360208801611ff3565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124bb608083018461201f565b9695505050505050565b6000602082840312156124d757600080fd5b8151610ee981611fc0565b60006000198214156124f6576124f66123cd565b5060010190565b60008282101561250f5761250f6123cd565b500390565b60008261252357612523612402565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dd8771d34a8bc01f28fbdc13c0a628384c94af1bf67509c241e46f6d9ad421aa64736f6c634300080b0033
Deployed Bytecode Sourcemap
47185:5671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26831:305;;;;;;;;;;-1:-1:-1;26831:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26831:305:0;;;;;;;;29944:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48382:57::-;;;;;;;;;;-1:-1:-1;48382:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1881:25:1;;;1869:2;1854:18;48382:57:0;1735:177:1;31447:204:0;;;;;;;;;;-1:-1:-1;31447:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2266:55:1;;;2248:74;;2236:2;2221:18;31447:204:0;2102:226:1;31010:371:0;;;;;;;;;;-1:-1:-1;31010:371:0;;;;;:::i;:::-;;:::i;:::-;;47337:43;;;;;;;;;;;;47378:2;47337:43;;49191:62;;;;;;;;;;-1:-1:-1;49191:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;26080:303;;;;;;;;;;-1:-1:-1;26334:12:0;;26124:7;26318:13;:28;26080:303;;32312:170;;;;;;;;;;-1:-1:-1;32312:170:0;;;;;:::i;:::-;;:::i;47856:33::-;;;;;;;;;;-1:-1:-1;47856:33:0;;;;-1:-1:-1;;;47856:33:0;;;;;;47289:41;;;;;;;;;;;;47326:4;47289:41;;49922:183;;;;;;;;;;-1:-1:-1;49922:183:0;;;;;:::i;:::-;;:::i;47819:30::-;;;;;;;;;;-1:-1:-1;47819:30:0;;;;-1:-1:-1;;;47819:30:0;;;;;;52282:571;;;;;;;;;;;;;:::i;32553:185::-;;;;;;;;;;-1:-1:-1;32553:185:0;;;;;:::i;:::-;;:::i;49124:60::-;;;;;;;;;;-1:-1:-1;49124:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;49061:56;;;;;;;;;;-1:-1:-1;49061:56:0;;;;;:::i;:::-;;:::i;51558:100::-;;;;;;;;;;-1:-1:-1;51558:100:0;;;;;:::i;:::-;;:::i;48011:93::-;;;;;;;;;;-1:-1:-1;48011:93:0;;;;;:::i;:::-;;:::i;29752:125::-;;;;;;;;;;-1:-1:-1;29752:125:0;;;;;:::i;:::-;;:::i;27200:206::-;;;;;;;;;;-1:-1:-1;27200:206:0;;;;;:::i;:::-;;:::i;46302:103::-;;;;;;;;;;;;;:::i;49011:43::-;;;;;;;;;;-1:-1:-1;49011:43:0;;;;;:::i;:::-;;:::i;45651:87::-;;;;;;;;;;-1:-1:-1;45724:6:0;;-1:-1:-1;;;;;45724:6:0;45651:87;;30113:104;;;;;;;;;;;;;:::i;31723:287::-;;;;;;;;;;-1:-1:-1;31723:287:0;;;;;:::i;:::-;;:::i;32809:369::-;;;;;;;;;;-1:-1:-1;32809:369:0;;;;;:::i;:::-;;:::i;47234:48::-;;;;;;;;;;;;47271:11;47234:48;;49715:199;;;;;;;;;;-1:-1:-1;49715:199:0;;;;;:::i;:::-;;:::i;51295:189::-;;;;;;;;;;-1:-1:-1;51295:189:0;;;;;:::i;:::-;;:::i;30288:318::-;;;;;;;;;;-1:-1:-1;30288:318:0;;;;;:::i;:::-;;:::i;48234:99::-;;;;;;;;;;-1:-1:-1;48234:99:0;;;;;:::i;:::-;;:::i;32081:164::-;;;;;;;;;;-1:-1:-1;32081:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32202:25:0;;;32178:4;32202:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32081:164;50113:1134;;;;;;:::i;:::-;;:::i;48448:502::-;;;;;;:::i;:::-;;:::i;46560:201::-;;;;;;;;;;-1:-1:-1;46560:201:0;;;;;:::i;:::-;;:::i;26831:305::-;26933:4;-1:-1:-1;;;;;;26970:40:0;;-1:-1:-1;;;26970:40:0;;:105;;-1:-1:-1;;;;;;;27027:48:0;;-1:-1:-1;;;27027:48:0;26970:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;27092:36;26950:178;26831:305;-1:-1:-1;;26831:305:0:o;29944:100::-;29998:13;30031:5;30024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29944:100;:::o;31447:204::-;31515:7;31540:16;31548:7;31540;:16::i;:::-;31535:64;;31565:34;;-1:-1:-1;;;31565:34:0;;;;;;;;;;;31535:64;-1:-1:-1;31619:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31619:24:0;;31447:204::o;31010:371::-;31083:13;31099:24;31115:7;31099:15;:24::i;:::-;31083:40;;31144:5;-1:-1:-1;;;;;31138:11:0;:2;-1:-1:-1;;;;;31138:11:0;;31134:48;;;31158:24;;-1:-1:-1;;;31158:24:0;;;;;;;;;;;31134:48;22427:10;-1:-1:-1;;;;;31199:21:0;;;;;;:63;;-1:-1:-1;31225:37:0;31242:5;22427:10;32081:164;:::i;31225:37::-;31224:38;31199:63;31195:138;;;31286:35;;-1:-1:-1;;;31286:35:0;;;;;;;;;;;31195:138;31345:28;31354:2;31358:7;31367:5;31345:8;:28::i;:::-;31072:309;31010:371;;:::o;32312:170::-;32446:28;32456:4;32462:2;32466:7;32446:9;:28::i;49922:183::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;;;;;;;;;-1:-1:-1;;;;;50050:37:0;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:47;49922:183::o;52282:571::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;52350:21:::1;52332:15;52419:3;52404:12;52350:21:::0;52414:2:::1;52404:12;:::i;:::-;:18;;;;:::i;:::-;52382:40:::0;-1:-1:-1;52433:16:0::1;52467:3;52452:12;:7:::0;52462:2:::1;52452:12;:::i;:::-;:18;;;;:::i;:::-;52433:37:::0;-1:-1:-1;52481:22:0::1;52521:3;52506:12;:7:::0;52516:2:::1;52506:12;:::i;:::-;:18;;;;:::i;:::-;52481:43;;52535:54;52032:42;52577:11;52535:17;:54::i;:::-;52600:48;52128:42;52639:8;52600:17;:48::i;:::-;52659:61;52231:42;52705:14;52659:17;:61::i;:::-;52756:21;52788:57;51933:42;52756:21:::0;52788:17:::1;:57::i;:::-;52321:532;;;;;52282:571::o:0;32553:185::-;32691:39;32708:4;32714:2;32718:7;32691:39;;;;;;;;;;;;:16;:39::i;49061:56::-;;;;;;;;;;;;;;;-1:-1:-1;49061:56:0;:::o;51558:100::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;51632:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51558:100:::0;:::o;48011:93::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;48077:10:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;48077:19:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;48011:93::o;29752:125::-;29816:7;29843:21;29856:7;29843:12;:21::i;:::-;:26;;29752:125;-1:-1:-1;;29752:125:0:o;27200:206::-;27264:7;-1:-1:-1;;;;;27288:19:0;;27284:60;;27316:28;;-1:-1:-1;;;27316:28:0;;;;;;;;;;;27284:60;-1:-1:-1;;;;;;27370:19:0;;;;;:12;:19;;;;;:27;;;;27200:206::o;46302:103::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;46367:30:::1;46394:1;46367:18;:30::i;:::-;46302:103::o:0;49011:43::-;;;;;;;;;;;30113:104;30169:13;30202:7;30195:14;;;;;:::i;31723:287::-;-1:-1:-1;;;;;31822:24:0;;22427:10;31822:24;31818:54;;;31855:17;;-1:-1:-1;;;31855:17:0;;;;;;;;;;;31818:54;22427:10;31885:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31885:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31885:53:0;;;;;;;;;;31954:48;;540:41:1;;;31885:42:0;;22427:10;31954:48;;513:18:1;31954:48:0;;;;;;;31723:287;;:::o;32809:369::-;32976:28;32986:4;32992:2;32996:7;32976:9;:28::i;:::-;-1:-1:-1;;;;;33019:13:0;;3652:19;:23;;33019:76;;;;;33039:56;33070:4;33076:2;33080:7;33089:5;33039:30;:56::i;:::-;33038:57;33019:76;33015:156;;;33119:40;;-1:-1:-1;;;33119:40:0;;;;;;;;;;;33015:156;32809:369;;;;:::o;49715:199::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;49840:4;49338:1:::1;49330:4;:9;;49309:47;;;::::0;-1:-1:-1;;;49309:47:0;;8397:2:1;49309:47:0::1;::::0;::::1;8379:21:1::0;8436:2;8416:18;;;8409:30;-1:-1:-1;;;8455:18:1;;;8448:42;8507:18;;49309:47:0::1;8195:336:1::0;49309:47:0::1;49896:10:::2;49862:25;49888:4;49862:31;;;;;;;:::i;:::-;;:44:::0;-1:-1:-1;;;49715:199:0:o;51295:189::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;51417:9:::1;47326:4;47680:9;47664:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47664:13:::1;:25;;;;:::i;:::-;:39;;47656:68;;;::::0;-1:-1:-1;;;47656:68:0;;9003:2:1;47656:68:0::1;::::0;::::1;8985:21:1::0;9042:2;9022:18;;;9015:30;-1:-1:-1;;;9061:18:1;;;9054:46;9117:18;;47656:68:0::1;8801:340:1::0;47656:68:0::1;51444:32:::2;51454:10;51466:9;51444;:32::i;30288:318::-:0;30361:13;30392:16;30400:7;30392;:16::i;:::-;30387:59;;30417:29;;-1:-1:-1;;;30417:29:0;;;;;;;;;;;30387:59;30459:21;30483:10;:8;:10::i;:::-;30459:34;;30517:7;30511:21;30536:1;30511:26;;:87;;;;;;;;;;;;;;;;;30564:7;30573:18;:7;:16;:18::i;:::-;30547:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30511:87;30504:94;30288:318;-1:-1:-1;;;30288:318:0:o;48234:99::-;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;48303:13:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;48303:22:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;48234:99::o;50113:1134::-;48162:13;;-1:-1:-1;;;48162:13:0;;;;48154:52;;;;-1:-1:-1;;;48154:52:0;;9823:2:1;48154:52:0;;;9805:21:1;9862:2;9842:18;;;9835:30;9901:28;9881:18;;;9874:56;9947:18;;48154:52:0;9621:350:1;48154:52:0;50320:5;49338:1:::1;49330:4;:9;;49309:47;;;::::0;-1:-1:-1;;;49309:47:0;;8397:2:1;49309:47:0::1;::::0;::::1;8379:21:1::0;8436:2;8416:18;;;8409:30;-1:-1:-1;;;8455:18:1;;;8448:42;8507:18;;49309:47:0::1;8195:336:1::0;49309:47:0::1;50356:11:::2;;50369:25;50395:5;50369:32;;;;;;;:::i;:::-;;;49492:144;49529:11;;49492:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;49592:28:0::2;::::0;-1:-1:-1;;49609:10:0::2;10125:2:1::0;10121:15;10117:53;49592:28:0::2;::::0;::::2;10105:66:1::0;49559:4:0;;-1:-1:-1;10187:12:1;;;-1:-1:-1;49592:28:0::2;;;;;;;;;;;;49582:39;;;;;;49492:18;:144::i;:::-;49470:217;;;::::0;-1:-1:-1;;;49470:217:0;;10412:2:1;49470:217:0::2;::::0;::::2;10394:21:1::0;10451:2;10431:18;;;10424:30;10490:25;10470:18;;;10463:53;10533:18;;49470:217:0::2;10210:347:1::0;49470:217:0::2;50429:9:::3;50440::::0;47525:22:::3;50440:9:::0;47271:11:::3;47525:22;:::i;:::-;47517:4;:30;;47509:60;;;::::0;-1:-1:-1;;;47509:60:0;;10764:2:1;47509:60:0::3;::::0;::::3;10746:21:1::0;10803:2;10783:18;;;10776:30;10842:19;10822:18;;;10815:47;10879:18;;47509:60:0::3;10562:341:1::0;47509:60:0::3;50480:9:::4;47326:4;47680:9;47664:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47664:13:::4;:25;;;;:::i;:::-;:39;;47656:68;;;::::0;-1:-1:-1;;;47656:68:0;;9003:2:1;47656:68:0::4;::::0;::::4;8985:21:1::0;9042:2;9022:18;;;9015:30;-1:-1:-1;;;9061:18:1;;;9054:46;9117:18;;47656:68:0::4;8801:340:1::0;47656:68:0::4;50608:1:::5;50599:5;:10;50595:541;;50664:1;50652:9;:13;:142;;;;;50764:23;50788:5;50764:30;;;;;;;:::i;:::-;;::::0;50716:10:::5;50690:37;::::0;;;:25:::5;:37;::::0;;;;;:49:::5;::::0;50730:9;;50690:49:::5;:::i;:::-;:104;;50652:142;50626:228;;;::::0;-1:-1:-1;;;50626:228:0;;11110:2:1;50626:228:0::5;::::0;::::5;11092:21:1::0;11149:2;11129:18;;;11122:30;11188:26;11168:18;;;11161:54;11232:18;;50626:228:0::5;10908:348:1::0;50626:228:0::5;50595:541;;;50925:1;50913:9;:13;:151;;;;-1:-1:-1::0;51053:10:0::5;51025:39;::::0;;;:27:::5;:39;::::0;;;;;;;;50951:25:::5;:37:::0;;;;;;;:49:::5;::::0;50991:9;;50951:49:::5;:::i;:::-;:113;;50913:151;50887:237;;;::::0;-1:-1:-1;;;50887:237:0;;11110:2:1;50887:237:0::5;::::0;::::5;11092:21:1::0;11149:2;11129:18;;;11122:30;11188:26;11168:18;;;11161:54;11232:18;;50887:237:0::5;10908:348:1::0;50887:237:0::5;51172:10;51146:37;::::0;;;:25:::5;:37;::::0;;;;:50;;51187:9;;51146:37;:50:::5;::::0;51187:9;;51146:50:::5;:::i;:::-;::::0;;;-1:-1:-1;51207:32:0::5;::::0;-1:-1:-1;51217:10:0::5;51229:9:::0;51207::::5;:32::i;:::-;47580:1:::4;49698::::3;;49367::::2;;;48217::::1;50113:1134:::0;;;;:::o;48448:502::-;47945:10;;-1:-1:-1;;;47945:10:0;;;;47937:46;;;;-1:-1:-1;;;47937:46:0;;11463:2:1;47937:46:0;;;11445:21:1;11502:2;11482:18;;;11475:30;11541:25;11521:18;;;11514:53;11584:18;;47937:46:0;11261:347:1;47937:46:0;48572:9:::1;48583::::0;47525:22:::1;48583:9:::0;47271:11:::1;47525:22;:::i;:::-;47517:4;:30;;47509:60;;;::::0;-1:-1:-1;;;47509:60:0;;10764:2:1;47509:60:0::1;::::0;::::1;10746:21:1::0;10803:2;10783:18;;;10776:30;10842:19;10822:18;;;10815:47;10879:18;;47509:60:0::1;10562:341:1::0;47509:60:0::1;48623:9:::2;47326:4;47680:9;47664:13;26334:12:::0;;26124:7;26318:13;:28;;26080:303;47664:13:::2;:25;;;;:::i;:::-;:39;;47656:68;;;::::0;-1:-1:-1;;;47656:68:0;;9003:2:1;47656:68:0::2;::::0;::::2;8985:21:1::0;9042:2;9022:18;;;9015:30;-1:-1:-1;;;9061:18:1;;;9054:46;9117:18;;47656:68:0::2;8801:340:1::0;47656:68:0::2;48684:1:::3;48672:9;:13;:115;;;;-1:-1:-1::0;48729:10:0::3;48706:34;::::0;;;:22:::3;:34;::::0;;;;;47378:2:::3;::::0;48706:46:::3;::::0;48743:9;;48706:46:::3;:::i;:::-;:81;;48672:115;48650:191;;;::::0;-1:-1:-1;;;48650:191:0;;11815:2:1;48650:191:0::3;::::0;::::3;11797:21:1::0;11854:2;11834:18;;;11827:30;11893:28;11873:18;;;11866:56;11939:18;;48650:191:0::3;11613:350:1::0;48650:191:0::3;48875:10;48852:34;::::0;;;:22:::3;:34;::::0;;;;:47;;48890:9;;48852:34;:47:::3;::::0;48890:9;;48852:47:::3;:::i;:::-;::::0;;;-1:-1:-1;48910:32:0::3;::::0;-1:-1:-1;48920:10:0::3;48932:9:::0;48910::::3;:32::i;46560:201::-:0;45724:6;;-1:-1:-1;;;;;45724:6:0;22427:10;45871:23;45863:68;;;;-1:-1:-1;;;45863:68:0;;7474:2:1;45863:68:0;;;7456:21:1;;;7493:18;;;7486:30;-1:-1:-1;;;;;;;;;;;7532:18:1;;;7525:62;7604:18;;45863:68:0;7272:356:1;45863:68:0;-1:-1:-1;;;;;46649:22:0;::::1;46641:73;;;::::0;-1:-1:-1;;;46641:73:0;;12170:2:1;46641:73:0::1;::::0;::::1;12152:21:1::0;12209:2;12189:18;;;12182:30;12248:34;12228:18;;;12221:62;12319:8;12299:18;;;12292:36;12345:19;;46641:73:0::1;11968:402:1::0;46641:73:0::1;46725:28;46744:8;46725:18;:28::i;:::-;46560:201:::0;:::o;33433:187::-;33490:4;33554:13;;33544:7;:23;33514:98;;;;-1:-1:-1;;33585:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33585:27:0;;;;33584:28;;33433:187::o;41603:196::-;41718:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41718:29:0;-1:-1:-1;;;;;41718:29:0;;;;;;;;;41763:28;;41718:24;;41763:28;;;;;;;41603:196;;;:::o;36546:2130::-;36661:35;36699:21;36712:7;36699:12;:21::i;:::-;36661:59;;36759:4;-1:-1:-1;;;;;36737:26:0;:13;:18;;;-1:-1:-1;;;;;36737:26:0;;36733:67;;36772:28;;-1:-1:-1;;;36772:28:0;;;;;;;;;;;36733:67;36813:22;22427:10;-1:-1:-1;;;;;36839:20:0;;;;:73;;-1:-1:-1;36876:36:0;36893:4;22427:10;32081:164;:::i;36876:36::-;36839:126;;;-1:-1:-1;22427:10:0;36929:20;36941:7;36929:11;:20::i;:::-;-1:-1:-1;;;;;36929:36:0;;36839:126;36813:153;;36984:17;36979:66;;37010:35;;-1:-1:-1;;;37010:35:0;;;;;;;;;;;36979:66;-1:-1:-1;;;;;37060:16:0;;37056:52;;37085:23;;-1:-1:-1;;;37085:23:0;;;;;;;;;;;37056:52;37229:35;37246:1;37250:7;37259:4;37229:8;:35::i;:::-;-1:-1:-1;;;;;37560:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37560:31:0;;;;;;;-1:-1:-1;;37560:31:0;;;;;;;37606:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37606:29:0;;;;;;;;;;;37686:20;;;:11;:20;;;;;;37721:18;;-1:-1:-1;;;;;;37754:49:0;;;;-1:-1:-1;;;37787:15:0;37754:49;;;;;;;;;;38077:11;;38137:24;;;;;38180:13;;37686:20;;38137:24;;38180:13;38176:384;;38390:13;;38375:11;:28;38371:174;;38428:20;;38497:28;;;;38471:54;;-1:-1:-1;;;38471:54:0;-1:-1:-1;;;;;;38471:54:0;;;-1:-1:-1;;;;;38428:20:0;;38471:54;;;;38371:174;37535:1036;;;38607:7;38603:2;-1:-1:-1;;;;;38588:27:0;38597:4;-1:-1:-1;;;;;38588:27:0;;;;;;;;;;;38626:42;32809:369;4618:317;4733:6;4708:21;:31;;4700:73;;;;-1:-1:-1;;;4700:73:0;;12577:2:1;4700:73:0;;;12559:21:1;12616:2;12596:18;;;12589:30;12655:31;12635:18;;;12628:59;12704:18;;4700:73:0;12375:353:1;4700:73:0;4787:12;4805:9;-1:-1:-1;;;;;4805:14:0;4827:6;4805:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4786:52;;;4857:7;4849:78;;;;-1:-1:-1;;;4849:78:0;;13145:2:1;4849:78:0;;;13127:21:1;13184:2;13164:18;;;13157:30;13223:34;13203:18;;;13196:62;13294:28;13274:18;;;13267:56;13340:19;;4849:78:0;12943:422:1;28581:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28692:7:0;28775:13;;28768:4;:20;28737:886;;;28809:31;28843:17;;;:11;:17;;;;;;;;;28809:51;;;;;;;;;-1:-1:-1;;;;;28809:51:0;;;;-1:-1:-1;;;28809:51:0;;;;;;;;;;;-1:-1:-1;;;28809:51:0;;;;;;;;;;;;;;28879:729;;28929:14;;-1:-1:-1;;;;;28929:28:0;;28925:101;;28993:9;28581:1109;-1:-1:-1;;;28581:1109:0:o;28925:101::-;-1:-1:-1;;;29368:6:0;29413:17;;;;:11;:17;;;;;;;;;29401:29;;;;;;;;;-1:-1:-1;;;;;29401:29:0;;;;;-1:-1:-1;;;29401:29:0;;;;;;;;;;;-1:-1:-1;;;29401:29:0;;;;;;;;;;;;;29461:28;29457:109;;29529:9;28581:1109;-1:-1:-1;;;28581:1109:0:o;29457:109::-;29328:261;;;28790:833;28737:886;29651:31;;-1:-1:-1;;;29651:31:0;;;;;;;;;;;46921:191;47014:6;;;-1:-1:-1;;;;;47031:17:0;;;-1:-1:-1;;47031:17:0;;;;;;;47064:40;;47014:6;;;47031:17;47014:6;;47064:40;;46995:16;;47064:40;46984:128;46921:191;:::o;42291:667::-;42475:72;;-1:-1:-1;;;42475:72:0;;42454:4;;-1:-1:-1;;;;;42475:36:0;;;;;:72;;22427:10;;42526:4;;42532:7;;42541:5;;42475:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42475:72:0;;;;;;;;-1:-1:-1;;42475:72:0;;;;;;;;;;;;:::i;:::-;;;42471:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42709:13:0;;42705:235;;42755:40;;-1:-1:-1;;;42755:40:0;;;;;;;;;;;42705:235;42898:6;42892:13;42883:6;42879:2;42875:15;42868:38;42471:480;-1:-1:-1;;;;;;42594:55:0;-1:-1:-1;;;42594:55:0;;-1:-1:-1;42471:480:0;42291:667;;;;;;:::o;33628:104::-;33697:27;33707:2;33711:8;33697:27;;;;;;;;;;;;:9;:27::i;51666:108::-;51726:13;51759:7;51752:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;20202:190;20327:4;20380;20351:25;20364:5;20371:4;20351:12;:25::i;:::-;:33;;20202:190;-1:-1:-1;;;;20202:190:0:o;34095:163::-;34218:32;34224:2;34228:8;34238:5;34245:4;34218:5;:32::i;20754:675::-;20837:7;20880:4;20837:7;20895:497;20919:5;:12;20915:1;:16;20895:497;;;20953:20;20976:5;20982:1;20976:8;;;;;;;;:::i;:::-;;;;;;;20953:31;;21019:12;21003;:28;20999:382;;21505:13;21555:15;;;21591:4;21584:15;;;21638:4;21622:21;;21131:57;;20999:382;;;21505:13;21555:15;;;21591:4;21584:15;;;21638:4;21622:21;;21308:57;;20999:382;-1:-1:-1;20933:3:0;;;;:::i;:::-;;;;20895:497;;;-1:-1:-1;21409:12:0;20754:675;-1:-1:-1;;;20754:675:0:o;34517:1775::-;34656:20;34679:13;-1:-1:-1;;;;;34707:16:0;;34703:48;;34732:19;;-1:-1:-1;;;34732:19:0;;;;;;;;;;;34703:48;34766:13;34762:44;;34788:18;;-1:-1:-1;;;34788:18:0;;;;;;;;;;;34762:44;-1:-1:-1;;;;;35157:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35216:49:0;;35157:44;;;;;;;;35216:49;;;;-1:-1:-1;;35157:44:0;;;;;;35216:49;;;;;;;;;;;;;;;;35282:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35332:66:0;;;;-1:-1:-1;;;35382:15:0;35332:66;;;;;;;;;;35282:25;35479:23;;;35523:4;:23;;;;-1:-1:-1;;;;;;35531:13:0;;3652:19;:23;;35531:15;35519:641;;;35567:314;35598:38;;35623:12;;-1:-1:-1;;;;;35598:38:0;;;35615:1;;35598:38;;35615:1;;35598:38;35664:69;35703:1;35707:2;35711:14;;;;;;35727:5;35664:30;:69::i;:::-;35659:174;;35769:40;;-1:-1:-1;;;35769:40:0;;;;;;;;;;;35659:174;35876:3;35860:12;:19;;35567:314;;35962:12;35945:13;;:29;35941:43;;35976:8;;;35941:43;35519:641;;;36025:120;36056:40;;36081:14;;;;;-1:-1:-1;;;;;36056:40:0;;;36073:1;;36056:40;;36073:1;;36056:40;36140:3;36124:12;:19;;36025:120;;35519:641;-1:-1:-1;36174:13:0;:28;36224:60;32809:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:196::-;1411:20;;-1:-1:-1;;;;;1460:54:1;;1450:65;;1440:93;;1529:1;1526;1519:12;1440:93;1343:196;;;:::o;1544:186::-;1603:6;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;1917:180::-;1976:6;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;-1:-1:-1;2068:23:1;;1917:180;-1:-1:-1;1917:180:1:o;2333:254::-;2401:6;2409;2462:2;2450:9;2441:7;2437:23;2433:32;2430:52;;;2478:1;2475;2468:12;2430:52;2501:29;2520:9;2501:29;:::i;:::-;2491:39;2577:2;2562:18;;;;2549:32;;-1:-1:-1;;;2333:254:1:o;2592:328::-;2669:6;2677;2685;2738:2;2726:9;2717:7;2713:23;2709:32;2706:52;;;2754:1;2751;2744:12;2706:52;2777:29;2796:9;2777:29;:::i;:::-;2767:39;;2825:38;2859:2;2848:9;2844:18;2825:38;:::i;:::-;2815:48;;2910:2;2899:9;2895:18;2882:32;2872:42;;2592:328;;;;;:::o;2925:127::-;2986:10;2981:3;2977:20;2974:1;2967:31;3017:4;3014:1;3007:15;3041:4;3038:1;3031:15;3057:632;3122:5;3152:18;3193:2;3185:6;3182:14;3179:40;;;3199:18;;:::i;:::-;3274:2;3268:9;3242:2;3328:15;;-1:-1:-1;;3324:24:1;;;3350:2;3320:33;3316:42;3304:55;;;3374:18;;;3394:22;;;3371:46;3368:72;;;3420:18;;:::i;:::-;3460:10;3456:2;3449:22;3489:6;3480:15;;3519:6;3511;3504:22;3559:3;3550:6;3545:3;3541:16;3538:25;3535:45;;;3576:1;3573;3566:12;3535:45;3626:6;3621:3;3614:4;3606:6;3602:17;3589:44;3681:1;3674:4;3665:6;3657;3653:19;3649:30;3642:41;;;;3057:632;;;;;:::o;3694:451::-;3763:6;3816:2;3804:9;3795:7;3791:23;3787:32;3784:52;;;3832:1;3829;3822:12;3784:52;3872:9;3859:23;3905:18;3897:6;3894:30;3891:50;;;3937:1;3934;3927:12;3891:50;3960:22;;4013:4;4005:13;;4001:27;-1:-1:-1;3991:55:1;;4042:1;4039;4032:12;3991:55;4065:74;4131:7;4126:2;4113:16;4108:2;4104;4100:11;4065:74;:::i;4150:160::-;4215:20;;4271:13;;4264:21;4254:32;;4244:60;;4300:1;4297;4290:12;4315:180;4371:6;4424:2;4412:9;4403:7;4399:23;4395:32;4392:52;;;4440:1;4437;4430:12;4392:52;4463:26;4479:9;4463:26;:::i;4682:254::-;4747:6;4755;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;4847:29;4866:9;4847:29;:::i;:::-;4837:39;;4895:35;4926:2;4915:9;4911:18;4895:35;:::i;:::-;4885:45;;4682:254;;;;;:::o;4941:667::-;5036:6;5044;5052;5060;5113:3;5101:9;5092:7;5088:23;5084:33;5081:53;;;5130:1;5127;5120:12;5081:53;5153:29;5172:9;5153:29;:::i;:::-;5143:39;;5201:38;5235:2;5224:9;5220:18;5201:38;:::i;:::-;5191:48;;5286:2;5275:9;5271:18;5258:32;5248:42;;5341:2;5330:9;5326:18;5313:32;5368:18;5360:6;5357:30;5354:50;;;5400:1;5397;5390:12;5354:50;5423:22;;5476:4;5468:13;;5464:27;-1:-1:-1;5454:55:1;;5505:1;5502;5495:12;5454:55;5528:74;5594:7;5589:2;5576:16;5571:2;5567;5563:11;5528:74;:::i;:::-;5518:84;;;4941:667;;;;;;;:::o;5613:248::-;5681:6;5689;5742:2;5730:9;5721:7;5717:23;5713:32;5710:52;;;5758:1;5755;5748:12;5710:52;-1:-1:-1;;5781:23:1;;;5851:2;5836:18;;;5823:32;;-1:-1:-1;5613:248:1:o;5866:260::-;5934:6;5942;5995:2;5983:9;5974:7;5970:23;5966:32;5963:52;;;6011:1;6008;6001:12;5963:52;6034:29;6053:9;6034:29;:::i;:::-;6024:39;;6082:38;6116:2;6105:9;6101:18;6082:38;:::i;6131:751::-;6235:6;6243;6251;6259;6312:2;6300:9;6291:7;6287:23;6283:32;6280:52;;;6328:1;6325;6318:12;6280:52;6364:9;6351:23;6341:33;;6421:2;6410:9;6406:18;6393:32;6383:42;;6476:2;6465:9;6461:18;6448:32;6499:18;6540:2;6532:6;6529:14;6526:34;;;6556:1;6553;6546:12;6526:34;6594:6;6583:9;6579:22;6569:32;;6639:7;6632:4;6628:2;6624:13;6620:27;6610:55;;6661:1;6658;6651:12;6610:55;6701:2;6688:16;6727:2;6719:6;6716:14;6713:34;;;6743:1;6740;6733:12;6713:34;6796:7;6791:2;6781:6;6778:1;6774:14;6770:2;6766:23;6762:32;6759:45;6756:65;;;6817:1;6814;6807:12;6756:65;6131:751;;;;-1:-1:-1;;6848:2:1;6840:11;;-1:-1:-1;;;6131:751:1:o;6887:380::-;6966:1;6962:12;;;;7009;;;7030:61;;7084:4;7076:6;7072:17;7062:27;;7030:61;7137:2;7129:6;7126:14;7106:18;7103:38;7100:161;;;7183:10;7178:3;7174:20;7171:1;7164:31;7218:4;7215:1;7208:15;7246:4;7243:1;7236:15;7100:161;;6887:380;;;:::o;7633:127::-;7694:10;7689:3;7685:20;7682:1;7675:31;7725:4;7722:1;7715:15;7749:4;7746:1;7739:15;7765:168;7805:7;7871:1;7867;7863:6;7859:14;7856:1;7853:21;7848:1;7841:9;7834:17;7830:45;7827:71;;;7878:18;;:::i;:::-;-1:-1:-1;7918:9:1;;7765:168::o;7938:127::-;7999:10;7994:3;7990:20;7987:1;7980:31;8030:4;8027:1;8020:15;8054:4;8051:1;8044:15;8070:120;8110:1;8136;8126:35;;8141:18;;:::i;:::-;-1:-1:-1;8175:9:1;;8070:120::o;8536:127::-;8597:10;8592:3;8588:20;8585:1;8578:31;8628:4;8625:1;8618:15;8652:4;8649:1;8642:15;8668:128;8708:3;8739:1;8735:6;8732:1;8729:13;8726:39;;;8745:18;;:::i;:::-;-1:-1:-1;8781:9:1;;8668:128::o;9146:470::-;9325:3;9363:6;9357:13;9379:53;9425:6;9420:3;9413:4;9405:6;9401:17;9379:53;:::i;:::-;9495:13;;9454:16;;;;9517:57;9495:13;9454:16;9551:4;9539:17;;9517:57;:::i;:::-;9590:20;;9146:470;-1:-1:-1;;;;9146:470:1:o;13370:512::-;13564:4;-1:-1:-1;;;;;13674:2:1;13666:6;13662:15;13651:9;13644:34;13726:2;13718:6;13714:15;13709:2;13698:9;13694:18;13687:43;;13766:6;13761:2;13750:9;13746:18;13739:34;13809:3;13804:2;13793:9;13789:18;13782:31;13830:46;13871:3;13860:9;13856:19;13848:6;13830:46;:::i;:::-;13822:54;13370:512;-1:-1:-1;;;;;;13370:512:1:o;13887:249::-;13956:6;14009:2;13997:9;13988:7;13984:23;13980:32;13977:52;;;14025:1;14022;14015:12;13977:52;14057:9;14051:16;14076:30;14100:5;14076:30;:::i;14141:135::-;14180:3;-1:-1:-1;;14201:17:1;;14198:43;;;14221:18;;:::i;:::-;-1:-1:-1;14268:1:1;14257:13;;14141:135::o;14281:125::-;14321:4;14349:1;14346;14343:8;14340:34;;;14354:18;;:::i;:::-;-1:-1:-1;14391:9:1;;14281:125::o;14411:112::-;14443:1;14469;14459:35;;14474:18;;:::i;:::-;-1:-1:-1;14508:9:1;;14411:112::o
Swarm Source
ipfs://dd8771d34a8bc01f28fbdc13c0a628384c94af1bf67509c241e46f6d9ad421aa
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.