Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
19 AINS
Holders
10
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 AINSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AliceInNFTSpace
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-21 */ // SPDX-License-Identifier: GPL-3.0 // Alice In NFT Space Play Card Contract /** ░█████╗░██╗░░░░░██╗░█████╗░███████╗ ██╗███╗░░██╗ ███╗░░██╗███████╗████████╗ ██╔══██╗██║░░░░░██║██╔══██╗██╔════╝ ██║████╗░██║ ████╗░██║██╔════╝╚══██╔══╝ ███████║██║░░░░░██║██║░░╚═╝█████╗░░ ██║██╔██╗██║ ██╔██╗██║█████╗░░░░░██║░░░ ██╔══██║██║░░░░░██║██║░░██╗██╔══╝░░ ██║██║╚████║ ██║╚████║██╔══╝░░░░░██║░░░ ██║░░██║███████╗██║╚█████╔╝███████╗ ██║██║░╚███║ ██║░╚███║██║░░░░░░░░██║░░░ ╚═╝░░╚═╝╚══════╝╚═╝░╚════╝░╚══════╝ ╚═╝╚═╝░░╚══╝ ╚═╝░░╚══╝╚═╝░░░░░░░░╚═╝░░░ ░██████╗██████╗░░█████╗░░█████╗░███████╗ ██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔════╝ ╚█████╗░██████╔╝███████║██║░░╚═╝█████╗░░ ░╚═══██╗██╔═══╝░██╔══██║██║░░██╗██╔══╝░░ ██████╔╝██║░░░░░██║░░██║╚█████╔╝███████╗ ╚═════╝░╚═╝░░░░░╚═╝░░╚═╝░╚════╝░╚══════╝ */ // File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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/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/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity 0.8.10; contract AliceInNFTSpace is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.0 ether; uint256 public maxSupply = 5252; uint256 public maxMintAmount = 20; uint256 public whitelistedLimit = 2; uint256 public _reserved = 20; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address payable public payments; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721("AliceInNFTSpace", "AINS") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable onlyEOA{ require(!paused, "contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint atleast 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if (onlyWhitelisted == true){ require(isWhitelisted(msg.sender), "User is Not whitelisted"); require(isWhitelisted(tx.origin), "User must be a Wallet"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= whitelistedLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _mint(msg.sender, supply + i); } } modifier onlyEOA() { require(msg.sender == tx.origin, "Error: Only EOA!"); _; } function airdropVisa(address _to, uint256 _amount) external onlyOwner() { require( _to != address(0), "Zero address error"); require( _amount <= _reserved, "Exceeds reserved supply"); uint256 supply = totalSupply(); for(uint256 i = 1; i <= _amount; i++){ _mint( _to, supply + i ); } _reserved -= _amount; } function isWhitelisted(address _user) public view returns (bool){ for(uint256 i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner() { revealed = true; } function setwhitelistedLimit(uint256 _limit) public onlyOwner() { whitelistedLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers (address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function payWinners(address payable recipient, uint256 amount) public onlyOwner { 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"); } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdropVisa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"payWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setwhitelistedLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000241565b506000600e55611484600f556014601081905560026011556012556013805462ffffff1916620100001790553480156200006157600080fd5b5060405162003194380380620031948339810160408190526200008491620003b4565b604080518082018252600f81526e416c696365496e4e4654537061636560881b60208083019182528351808501909452600484526341494e5360e01b908401528151919291620000d79160009162000241565b508051620000ed90600190602084019062000241565b5050506200010a620001046200012860201b60201c565b6200012c565b62000115826200017e565b6200012081620001e6565b50506200045b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001cd5760405162461bcd60e51b815260206004820181905260248201526000805160206200317483398151915260448201526064015b60405180910390fd5b8051620001e290600b90602084019062000241565b5050565b600a546001600160a01b03163314620002315760405162461bcd60e51b81526020600482018190526024820152600080516020620031748339815191526044820152606401620001c4565b8051620001e290600d9060208401905b8280546200024f906200041e565b90600052602060002090601f016020900481019282620002735760008555620002be565b82601f106200028e57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002be578251825591602001919060010190620002a1565b50620002cc929150620002d0565b5090565b5b80821115620002cc5760008155600101620002d1565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030f57600080fd5b81516001600160401b03808211156200032c576200032c620002e7565b604051601f8301601f19908116603f01168101908282118183101715620003575762000357620002e7565b816040528381526020925086838588010111156200037457600080fd5b600091505b8382101562000398578582018301518183018401529082019062000379565b83821115620003aa5760008385830101525b9695505050505050565b60008060408385031215620003c857600080fd5b82516001600160401b0380821115620003e057600080fd5b620003ee86838701620002fd565b935060208501519150808211156200040557600080fd5b506200041485828601620002fd565b9150509250929050565b600181811c908216806200043357607f821691505b602082108114156200045557634e487b7160e01b600052602260045260246000fd5b50919050565b612d09806200046b6000396000f3fe6080604052600436106102935760003560e01c80636aaa571d1161015a578063a6d23e10116100c1578063da3ef23f1161007a578063da3ef23f146107a0578063e6e5e7e1146107c0578063e985e9c5146107d6578063edec5f271461081f578063f2c4ce1e1461083f578063f2fde38b1461085f57600080fd5b8063a6d23e10146106ee578063b88d4fde14610715578063ba4e5c4914610735578063c668286214610755578063c87b56dd1461076a578063d5abeb011461078a57600080fd5b806397754aa81161011357806397754aa8146106465780639b7a0058146106665780639c70b51214610686578063a0712d68146106a6578063a22cb465146106b9578063a475b5dd146106d957600080fd5b80636aaa571d146105a857806370a08231146105be578063715018a6146105de5780637f00c7a6146105f35780638da5cb5b1461061357806395d89b411461063157600080fd5b80633af32abf116101fe57806344a0d68a116101b757806344a0d68a146104ef5780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e5780636352211e1461058857600080fd5b80633af32abf1461043a5780633c9527641461045a5780633ccfd60b1461047a5780633cd48b681461048257806342842e0e146104a2578063438b6300146104c257600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806318cae269146103b7578063239c70ae146103e457806323b872dd146103fa5780632f745c591461041a57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125cd565b61087f565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046125ff565b6108aa565b005b3480156102fb57600080fd5b506103046108f0565b6040516102c49190612672565b34801561031d57600080fd5b5061033161032c366004612685565b610982565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b50610304610a17565b34801561036a57600080fd5b506102ed6103793660046126b3565b610aa5565b34801561038a57600080fd5b50610394600e5481565b6040519081526020016102c4565b3480156103ae57600080fd5b50600854610394565b3480156103c357600080fd5b506103946103d23660046126df565b60156020526000908152604090205481565b3480156103f057600080fd5b5061039460105481565b34801561040657600080fd5b506102ed6104153660046126fc565b610bbb565b34801561042657600080fd5b506103946104353660046126b3565b610bec565b34801561044657600080fd5b506102b86104553660046126df565b610c82565b34801561046657600080fd5b506102ed6104753660046125ff565b610cec565b6102ed610d32565b34801561048e57600080fd5b506102ed61049d3660046126b3565b610db4565b3480156104ae57600080fd5b506102ed6104bd3660046126fc565b610ed4565b3480156104ce57600080fd5b506104e26104dd3660046126df565b610eef565b6040516102c4919061273d565b3480156104fb57600080fd5b506102ed61050a366004612685565b610f91565b34801561051b57600080fd5b5061039461052a366004612685565b610fc0565b34801561053b57600080fd5b506013546102b890610100900460ff1681565b34801561055a57600080fd5b506102ed61056936600461280d565b611053565b34801561057a57600080fd5b506013546102b89060ff1681565b34801561059457600080fd5b506103316105a3366004612685565b611094565b3480156105b457600080fd5b5061039460125481565b3480156105ca57600080fd5b506103946105d93660046126df565b61110b565b3480156105ea57600080fd5b506102ed611192565b3480156105ff57600080fd5b506102ed61060e366004612685565b6111c8565b34801561061f57600080fd5b50600a546001600160a01b0316610331565b34801561063d57600080fd5b506103046111f7565b34801561065257600080fd5b506102ed6106613660046126b3565b611206565b34801561067257600080fd5b506102ed610681366004612685565b611349565b34801561069257600080fd5b506013546102b89062010000900460ff1681565b6102ed6106b4366004612685565b611378565b3480156106c557600080fd5b506102ed6106d4366004612856565b6116e5565b3480156106e557600080fd5b506102ed6117aa565b3480156106fa57600080fd5b5060135461033190630100000090046001600160a01b031681565b34801561072157600080fd5b506102ed61073036600461288b565b6117e5565b34801561074157600080fd5b50610331610750366004612685565b61181d565b34801561076157600080fd5b50610304611847565b34801561077657600080fd5b50610304610785366004612685565b611854565b34801561079657600080fd5b50610394600f5481565b3480156107ac57600080fd5b506102ed6107bb36600461280d565b6119d3565b3480156107cc57600080fd5b5061039460115481565b3480156107e257600080fd5b506102b86107f136600461290b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082b57600080fd5b506102ed61083a366004612944565b611a10565b34801561084b57600080fd5b506102ed61085a36600461280d565b611a52565b34801561086b57600080fd5b506102ed61087a3660046126df565b611a8f565b60006001600160e01b0319821663780e9d6360e01b14806108a457506108a482611b27565b92915050565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016108d4906129b9565b60405180910390fd5b6013805460ff1916911515919091179055565b6060600080546108ff906129ee565b80601f016020809104026020016040519081016040528092919081815260200182805461092b906129ee565b80156109785780601f1061094d57610100808354040283529160200191610978565b820191906000526020600020905b81548152906001019060200180831161095b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d4565b506000908152600460205260409020546001600160a01b031690565b600d8054610a24906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906129ee565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b6000610ab082611094565b9050806001600160a01b0316836001600160a01b03161415610b1e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d4565b336001600160a01b0382161480610b3a5750610b3a81336107f1565b610bac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d4565b610bb68383611b77565b505050565b610bc53382611be5565b610be15760405162461bcd60e51b81526004016108d490612a29565b610bb6838383611cdc565b6000610bf78361110b565b8210610c595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601454811015610ce357826001600160a01b031660148281548110610cad57610cad612a7a565b6000918252602090912001546001600160a01b03161415610cd15750600192915050565b80610cdb81612aa6565b915050610c86565b50600092915050565b600a546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d4906129b9565b60138054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610d5c5760405162461bcd60e51b81526004016108d4906129b9565b604051600090339047908381818185875af1925050503d8060008114610d9e576040519150601f19603f3d011682016040523d82523d6000602084013e610da3565b606091505b5050905080610db157600080fd5b50565b600a546001600160a01b03163314610dde5760405162461bcd60e51b81526004016108d4906129b9565b6001600160a01b038216610e295760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b60448201526064016108d4565b601254811115610e7b5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c7900000000000000000060448201526064016108d4565b6000610e8660085490565b905060015b828111610eb757610ea584610ea08385612ac1565b611e87565b80610eaf81612aa6565b915050610e8b565b508160126000828254610eca9190612ad9565b9091555050505050565b610bb6838383604051806020016040528060008152506117e5565b60606000610efc8361110b565b905060008167ffffffffffffffff811115610f1957610f19612781565b604051908082528060200260200182016040528015610f42578160200160208202803683370190505b50905060005b82811015610f8957610f5a8582610bec565b828281518110610f6c57610f6c612a7a565b602090810291909101015280610f8181612aa6565b915050610f48565b509392505050565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016108d4906129b9565b600e55565b6000610fcb60085490565b821061102e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d4565b6008828154811061104157611041612a7a565b90600052602060002001549050919050565b600a546001600160a01b0316331461107d5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600b9060208401906124ad565b5050565b6000818152600260205260408120546001600160a01b0316806108a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d4565b60006001600160a01b0382166111765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111bc5760405162461bcd60e51b81526004016108d4906129b9565b6111c66000611fd5565b565b600a546001600160a01b031633146111f25760405162461bcd60e51b81526004016108d4906129b9565b601055565b6060600180546108ff906129ee565b600a546001600160a01b031633146112305760405162461bcd60e51b81526004016108d4906129b9565b804710156112805760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108d4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146112cd576040519150601f19603f3d011682016040523d82523d6000602084013e6112d2565b606091505b5050905080610bb65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108d4565b600a546001600160a01b031633146113735760405162461bcd60e51b81526004016108d4906129b9565b601155565b3332146113ba5760405162461bcd60e51b815260206004820152601060248201526f4572726f723a204f6e6c7920454f412160801b60448201526064016108d4565b60135460ff16156114025760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108d4565b600061140d60085490565b90506000821161145f5760405162461bcd60e51b815260206004820152601a60248201527f6e65656420746f206d696e742061746c656173742031204e465400000000000060448201526064016108d4565b6010548211156114bd5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108d4565b600f546114ca8383612ac1565b11156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108d4565b600a546001600160a01b0316331461169a5760135462010000900460ff161515600114156116485761154233610c82565b61158e5760405162461bcd60e51b815260206004820152601760248201527f55736572206973204e6f742077686974656c697374656400000000000000000060448201526064016108d4565b61159732610c82565b6115db5760405162461bcd60e51b8152602060048201526015602482015274155cd95c881b5d5cdd08189948184815d85b1b195d605a1b60448201526064016108d4565b336000908152601560205260409020546011546115f88483612ac1565b11156116465760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108d4565b505b81600e546116569190612af0565b34101561169a5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108d4565b60015b828111610bb6573360009081526015602052604081208054916116bf83612aa6565b909155506116d3905033610ea08385612ac1565b806116dd81612aa6565b91505061169d565b6001600160a01b03821633141561173e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117d45760405162461bcd60e51b81526004016108d4906129b9565b6013805461ff001916610100179055565b6117ef3383611be5565b61180b5760405162461bcd60e51b81526004016108d490612a29565b61181784848484612027565b50505050565b6014818154811061182d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610a24906129ee565b6000818152600260205260409020546060906001600160a01b03166118d35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d4565b601354610100900460ff1661197457600d80546118ef906129ee565b80601f016020809104026020016040519081016040528092919081815260200182805461191b906129ee565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b50505050509050919050565b600061197e61205a565b9050600081511161199e57604051806020016040528060008152506119cc565b806119a884612069565b600c6040516020016119bc93929190612b0f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119fd5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600c9060208401906124ad565b600a546001600160a01b03163314611a3a5760405162461bcd60e51b81526004016108d4906129b9565b611a4660146000612531565b610bb66014838361254f565b600a546001600160a01b03163314611a7c5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600d9060208401906124ad565b600a546001600160a01b03163314611ab95760405162461bcd60e51b81526004016108d4906129b9565b6001600160a01b038116611b1e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d4565b610db181611fd5565b60006001600160e01b031982166380ac58cd60e01b1480611b5857506001600160e01b03198216635b5e139f60e01b145b806108a457506301ffc9a760e01b6001600160e01b03198316146108a4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bac82611094565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c5e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d4565b6000611c6983611094565b9050806001600160a01b0316846001600160a01b03161480611ca45750836001600160a01b0316611c9984610982565b6001600160a01b0316145b80611cd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cef82611094565b6001600160a01b031614611d575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d4565b6001600160a01b038216611db95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d4565b611dc4838383612167565b611dcf600082611b77565b6001600160a01b0383166000908152600360205260408120805460019290611df8908490612ad9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e26908490612ac1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611edd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d4565b6000818152600260205260409020546001600160a01b031615611f425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d4565b611f4e60008383612167565b6001600160a01b0382166000908152600360205260408120805460019290611f77908490612ac1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612032848484611cdc565b61203e8484848461221f565b6118175760405162461bcd60e51b81526004016108d490612bd3565b6060600b80546108ff906129ee565b60608161208d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b757806120a181612aa6565b91506120b09050600a83612c3b565b9150612091565b60008167ffffffffffffffff8111156120d2576120d2612781565b6040519080825280601f01601f1916602001820160405280156120fc576020820181803683370190505b5090505b8415611cd457612111600183612ad9565b915061211e600a86612c4f565b612129906030612ac1565b60f81b81838151811061213e5761213e612a7a565b60200101906001600160f81b031916908160001a905350612160600a86612c3b565b9450612100565b6001600160a01b0383166121c2576121bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121e5565b816001600160a01b0316836001600160a01b0316146121e5576121e5838261231d565b6001600160a01b0382166121fc57610bb6816123ba565b826001600160a01b0316826001600160a01b031614610bb657610bb68282612469565b60006001600160a01b0384163b1561231257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612263903390899088908890600401612c63565b6020604051808303816000875af192505050801561229e575060408051601f3d908101601f1916820190925261229b91810190612ca0565b60015b6122f8573d8080156122cc576040519150601f19603f3d011682016040523d82523d6000602084013e6122d1565b606091505b5080516122f05760405162461bcd60e51b81526004016108d490612bd3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cd4565b506001949350505050565b6000600161232a8461110b565b6123349190612ad9565b600083815260076020526040902054909150808214612387576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123cc90600190612ad9565b600083815260096020526040812054600880549394509092849081106123f4576123f4612a7a565b90600052602060002001549050806008838154811061241557612415612a7a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244d5761244d612cbd565b6001900381819060005260206000200160009055905550505050565b60006124748361110b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124b9906129ee565b90600052602060002090601f0160209004810192826124db5760008555612521565b82601f106124f457805160ff1916838001178555612521565b82800160010185558215612521579182015b82811115612521578251825591602001919060010190612506565b5061252d9291506125a2565b5090565b5080546000825590600052602060002090810190610db191906125a2565b828054828255906000526020600020908101928215612521579160200282015b828111156125215781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061256f565b5b8082111561252d57600081556001016125a3565b6001600160e01b031981168114610db157600080fd5b6000602082840312156125df57600080fd5b81356119cc816125b7565b803580151581146125fa57600080fd5b919050565b60006020828403121561261157600080fd5b6119cc826125ea565b60005b8381101561263557818101518382015260200161261d565b838111156118175750506000910152565b6000815180845261265e81602086016020860161261a565b601f01601f19169290920160200192915050565b6020815260006119cc6020830184612646565b60006020828403121561269757600080fd5b5035919050565b6001600160a01b0381168114610db157600080fd5b600080604083850312156126c657600080fd5b82356126d18161269e565b946020939093013593505050565b6000602082840312156126f157600080fd5b81356119cc8161269e565b60008060006060848603121561271157600080fd5b833561271c8161269e565b9250602084013561272c8161269e565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561277557835183529284019291840191600101612759565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127b2576127b2612781565b604051601f8501601f19908116603f011681019082821181831017156127da576127da612781565b816040528093508581528686860111156127f357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561281f57600080fd5b813567ffffffffffffffff81111561283657600080fd5b8201601f8101841361284757600080fd5b611cd484823560208401612797565b6000806040838503121561286957600080fd5b82356128748161269e565b9150612882602084016125ea565b90509250929050565b600080600080608085870312156128a157600080fd5b84356128ac8161269e565b935060208501356128bc8161269e565b925060408501359150606085013567ffffffffffffffff8111156128df57600080fd5b8501601f810187136128f057600080fd5b6128ff87823560208401612797565b91505092959194509250565b6000806040838503121561291e57600080fd5b82356129298161269e565b915060208301356129398161269e565b809150509250929050565b6000806020838503121561295757600080fd5b823567ffffffffffffffff8082111561296f57600080fd5b818501915085601f83011261298357600080fd5b81358181111561299257600080fd5b8660208260051b85010111156129a757600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a0257607f821691505b60208210811415612a2357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612aba57612aba612a90565b5060010190565b60008219821115612ad457612ad4612a90565b500190565b600082821015612aeb57612aeb612a90565b500390565b6000816000190483118215151615612b0a57612b0a612a90565b500290565b600084516020612b228285838a0161261a565b855191840191612b358184848a0161261a565b8554920191600090600181811c9080831680612b5257607f831692505b858310811415612b7057634e487b7160e01b85526022600452602485fd5b808015612b845760018114612b9557612bc2565b60ff19851688528388019550612bc2565b60008b81526020902060005b85811015612bba5781548a820152908401908801612ba1565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612c4a57612c4a612c25565b500490565b600082612c5e57612c5e612c25565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c9690830184612646565b9695505050505050565b600060208284031215612cb257600080fd5b81516119cc816125b7565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fe9831f1c69a0f0b116905c051fd1b22dc96465e61f5babc9fbb71439f548b5264736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6253747a5a593279506145587a4e4d454b673762687a53344851504346647844386f317465636d537a34372f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d6132694c54586f744c344251327735797a7774737163467155574a6e51774e755972624d75666a6677416d4c2f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102935760003560e01c80636aaa571d1161015a578063a6d23e10116100c1578063da3ef23f1161007a578063da3ef23f146107a0578063e6e5e7e1146107c0578063e985e9c5146107d6578063edec5f271461081f578063f2c4ce1e1461083f578063f2fde38b1461085f57600080fd5b8063a6d23e10146106ee578063b88d4fde14610715578063ba4e5c4914610735578063c668286214610755578063c87b56dd1461076a578063d5abeb011461078a57600080fd5b806397754aa81161011357806397754aa8146106465780639b7a0058146106665780639c70b51214610686578063a0712d68146106a6578063a22cb465146106b9578063a475b5dd146106d957600080fd5b80636aaa571d146105a857806370a08231146105be578063715018a6146105de5780637f00c7a6146105f35780638da5cb5b1461061357806395d89b411461063157600080fd5b80633af32abf116101fe57806344a0d68a116101b757806344a0d68a146104ef5780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e5780636352211e1461058857600080fd5b80633af32abf1461043a5780633c9527641461045a5780633ccfd60b1461047a5780633cd48b681461048257806342842e0e146104a2578063438b6300146104c257600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806318cae269146103b7578063239c70ae146103e457806323b872dd146103fa5780632f745c591461041a57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046125cd565b61087f565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046125ff565b6108aa565b005b3480156102fb57600080fd5b506103046108f0565b6040516102c49190612672565b34801561031d57600080fd5b5061033161032c366004612685565b610982565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b50610304610a17565b34801561036a57600080fd5b506102ed6103793660046126b3565b610aa5565b34801561038a57600080fd5b50610394600e5481565b6040519081526020016102c4565b3480156103ae57600080fd5b50600854610394565b3480156103c357600080fd5b506103946103d23660046126df565b60156020526000908152604090205481565b3480156103f057600080fd5b5061039460105481565b34801561040657600080fd5b506102ed6104153660046126fc565b610bbb565b34801561042657600080fd5b506103946104353660046126b3565b610bec565b34801561044657600080fd5b506102b86104553660046126df565b610c82565b34801561046657600080fd5b506102ed6104753660046125ff565b610cec565b6102ed610d32565b34801561048e57600080fd5b506102ed61049d3660046126b3565b610db4565b3480156104ae57600080fd5b506102ed6104bd3660046126fc565b610ed4565b3480156104ce57600080fd5b506104e26104dd3660046126df565b610eef565b6040516102c4919061273d565b3480156104fb57600080fd5b506102ed61050a366004612685565b610f91565b34801561051b57600080fd5b5061039461052a366004612685565b610fc0565b34801561053b57600080fd5b506013546102b890610100900460ff1681565b34801561055a57600080fd5b506102ed61056936600461280d565b611053565b34801561057a57600080fd5b506013546102b89060ff1681565b34801561059457600080fd5b506103316105a3366004612685565b611094565b3480156105b457600080fd5b5061039460125481565b3480156105ca57600080fd5b506103946105d93660046126df565b61110b565b3480156105ea57600080fd5b506102ed611192565b3480156105ff57600080fd5b506102ed61060e366004612685565b6111c8565b34801561061f57600080fd5b50600a546001600160a01b0316610331565b34801561063d57600080fd5b506103046111f7565b34801561065257600080fd5b506102ed6106613660046126b3565b611206565b34801561067257600080fd5b506102ed610681366004612685565b611349565b34801561069257600080fd5b506013546102b89062010000900460ff1681565b6102ed6106b4366004612685565b611378565b3480156106c557600080fd5b506102ed6106d4366004612856565b6116e5565b3480156106e557600080fd5b506102ed6117aa565b3480156106fa57600080fd5b5060135461033190630100000090046001600160a01b031681565b34801561072157600080fd5b506102ed61073036600461288b565b6117e5565b34801561074157600080fd5b50610331610750366004612685565b61181d565b34801561076157600080fd5b50610304611847565b34801561077657600080fd5b50610304610785366004612685565b611854565b34801561079657600080fd5b50610394600f5481565b3480156107ac57600080fd5b506102ed6107bb36600461280d565b6119d3565b3480156107cc57600080fd5b5061039460115481565b3480156107e257600080fd5b506102b86107f136600461290b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082b57600080fd5b506102ed61083a366004612944565b611a10565b34801561084b57600080fd5b506102ed61085a36600461280d565b611a52565b34801561086b57600080fd5b506102ed61087a3660046126df565b611a8f565b60006001600160e01b0319821663780e9d6360e01b14806108a457506108a482611b27565b92915050565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016108d4906129b9565b60405180910390fd5b6013805460ff1916911515919091179055565b6060600080546108ff906129ee565b80601f016020809104026020016040519081016040528092919081815260200182805461092b906129ee565b80156109785780601f1061094d57610100808354040283529160200191610978565b820191906000526020600020905b81548152906001019060200180831161095b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d4565b506000908152600460205260409020546001600160a01b031690565b600d8054610a24906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906129ee565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b6000610ab082611094565b9050806001600160a01b0316836001600160a01b03161415610b1e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d4565b336001600160a01b0382161480610b3a5750610b3a81336107f1565b610bac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d4565b610bb68383611b77565b505050565b610bc53382611be5565b610be15760405162461bcd60e51b81526004016108d490612a29565b610bb6838383611cdc565b6000610bf78361110b565b8210610c595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601454811015610ce357826001600160a01b031660148281548110610cad57610cad612a7a565b6000918252602090912001546001600160a01b03161415610cd15750600192915050565b80610cdb81612aa6565b915050610c86565b50600092915050565b600a546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d4906129b9565b60138054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610d5c5760405162461bcd60e51b81526004016108d4906129b9565b604051600090339047908381818185875af1925050503d8060008114610d9e576040519150601f19603f3d011682016040523d82523d6000602084013e610da3565b606091505b5050905080610db157600080fd5b50565b600a546001600160a01b03163314610dde5760405162461bcd60e51b81526004016108d4906129b9565b6001600160a01b038216610e295760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b60448201526064016108d4565b601254811115610e7b5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c7900000000000000000060448201526064016108d4565b6000610e8660085490565b905060015b828111610eb757610ea584610ea08385612ac1565b611e87565b80610eaf81612aa6565b915050610e8b565b508160126000828254610eca9190612ad9565b9091555050505050565b610bb6838383604051806020016040528060008152506117e5565b60606000610efc8361110b565b905060008167ffffffffffffffff811115610f1957610f19612781565b604051908082528060200260200182016040528015610f42578160200160208202803683370190505b50905060005b82811015610f8957610f5a8582610bec565b828281518110610f6c57610f6c612a7a565b602090810291909101015280610f8181612aa6565b915050610f48565b509392505050565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016108d4906129b9565b600e55565b6000610fcb60085490565b821061102e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d4565b6008828154811061104157611041612a7a565b90600052602060002001549050919050565b600a546001600160a01b0316331461107d5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600b9060208401906124ad565b5050565b6000818152600260205260408120546001600160a01b0316806108a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d4565b60006001600160a01b0382166111765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111bc5760405162461bcd60e51b81526004016108d4906129b9565b6111c66000611fd5565b565b600a546001600160a01b031633146111f25760405162461bcd60e51b81526004016108d4906129b9565b601055565b6060600180546108ff906129ee565b600a546001600160a01b031633146112305760405162461bcd60e51b81526004016108d4906129b9565b804710156112805760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108d4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146112cd576040519150601f19603f3d011682016040523d82523d6000602084013e6112d2565b606091505b5050905080610bb65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108d4565b600a546001600160a01b031633146113735760405162461bcd60e51b81526004016108d4906129b9565b601155565b3332146113ba5760405162461bcd60e51b815260206004820152601060248201526f4572726f723a204f6e6c7920454f412160801b60448201526064016108d4565b60135460ff16156114025760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108d4565b600061140d60085490565b90506000821161145f5760405162461bcd60e51b815260206004820152601a60248201527f6e65656420746f206d696e742061746c656173742031204e465400000000000060448201526064016108d4565b6010548211156114bd5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108d4565b600f546114ca8383612ac1565b11156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108d4565b600a546001600160a01b0316331461169a5760135462010000900460ff161515600114156116485761154233610c82565b61158e5760405162461bcd60e51b815260206004820152601760248201527f55736572206973204e6f742077686974656c697374656400000000000000000060448201526064016108d4565b61159732610c82565b6115db5760405162461bcd60e51b8152602060048201526015602482015274155cd95c881b5d5cdd08189948184815d85b1b195d605a1b60448201526064016108d4565b336000908152601560205260409020546011546115f88483612ac1565b11156116465760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108d4565b505b81600e546116569190612af0565b34101561169a5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108d4565b60015b828111610bb6573360009081526015602052604081208054916116bf83612aa6565b909155506116d3905033610ea08385612ac1565b806116dd81612aa6565b91505061169d565b6001600160a01b03821633141561173e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117d45760405162461bcd60e51b81526004016108d4906129b9565b6013805461ff001916610100179055565b6117ef3383611be5565b61180b5760405162461bcd60e51b81526004016108d490612a29565b61181784848484612027565b50505050565b6014818154811061182d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610a24906129ee565b6000818152600260205260409020546060906001600160a01b03166118d35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d4565b601354610100900460ff1661197457600d80546118ef906129ee565b80601f016020809104026020016040519081016040528092919081815260200182805461191b906129ee565b80156119685780601f1061193d57610100808354040283529160200191611968565b820191906000526020600020905b81548152906001019060200180831161194b57829003601f168201915b50505050509050919050565b600061197e61205a565b9050600081511161199e57604051806020016040528060008152506119cc565b806119a884612069565b600c6040516020016119bc93929190612b0f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119fd5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600c9060208401906124ad565b600a546001600160a01b03163314611a3a5760405162461bcd60e51b81526004016108d4906129b9565b611a4660146000612531565b610bb66014838361254f565b600a546001600160a01b03163314611a7c5760405162461bcd60e51b81526004016108d4906129b9565b805161109090600d9060208401906124ad565b600a546001600160a01b03163314611ab95760405162461bcd60e51b81526004016108d4906129b9565b6001600160a01b038116611b1e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d4565b610db181611fd5565b60006001600160e01b031982166380ac58cd60e01b1480611b5857506001600160e01b03198216635b5e139f60e01b145b806108a457506301ffc9a760e01b6001600160e01b03198316146108a4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bac82611094565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c5e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d4565b6000611c6983611094565b9050806001600160a01b0316846001600160a01b03161480611ca45750836001600160a01b0316611c9984610982565b6001600160a01b0316145b80611cd457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cef82611094565b6001600160a01b031614611d575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d4565b6001600160a01b038216611db95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d4565b611dc4838383612167565b611dcf600082611b77565b6001600160a01b0383166000908152600360205260408120805460019290611df8908490612ad9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e26908490612ac1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611edd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d4565b6000818152600260205260409020546001600160a01b031615611f425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d4565b611f4e60008383612167565b6001600160a01b0382166000908152600360205260408120805460019290611f77908490612ac1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612032848484611cdc565b61203e8484848461221f565b6118175760405162461bcd60e51b81526004016108d490612bd3565b6060600b80546108ff906129ee565b60608161208d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b757806120a181612aa6565b91506120b09050600a83612c3b565b9150612091565b60008167ffffffffffffffff8111156120d2576120d2612781565b6040519080825280601f01601f1916602001820160405280156120fc576020820181803683370190505b5090505b8415611cd457612111600183612ad9565b915061211e600a86612c4f565b612129906030612ac1565b60f81b81838151811061213e5761213e612a7a565b60200101906001600160f81b031916908160001a905350612160600a86612c3b565b9450612100565b6001600160a01b0383166121c2576121bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121e5565b816001600160a01b0316836001600160a01b0316146121e5576121e5838261231d565b6001600160a01b0382166121fc57610bb6816123ba565b826001600160a01b0316826001600160a01b031614610bb657610bb68282612469565b60006001600160a01b0384163b1561231257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612263903390899088908890600401612c63565b6020604051808303816000875af192505050801561229e575060408051601f3d908101601f1916820190925261229b91810190612ca0565b60015b6122f8573d8080156122cc576040519150601f19603f3d011682016040523d82523d6000602084013e6122d1565b606091505b5080516122f05760405162461bcd60e51b81526004016108d490612bd3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cd4565b506001949350505050565b6000600161232a8461110b565b6123349190612ad9565b600083815260076020526040902054909150808214612387576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123cc90600190612ad9565b600083815260096020526040812054600880549394509092849081106123f4576123f4612a7a565b90600052602060002001549050806008838154811061241557612415612a7a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244d5761244d612cbd565b6001900381819060005260206000200160009055905550505050565b60006124748361110b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124b9906129ee565b90600052602060002090601f0160209004810192826124db5760008555612521565b82601f106124f457805160ff1916838001178555612521565b82800160010185558215612521579182015b82811115612521578251825591602001919060010190612506565b5061252d9291506125a2565b5090565b5080546000825590600052602060002090810190610db191906125a2565b828054828255906000526020600020908101928215612521579160200282015b828111156125215781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061256f565b5b8082111561252d57600081556001016125a3565b6001600160e01b031981168114610db157600080fd5b6000602082840312156125df57600080fd5b81356119cc816125b7565b803580151581146125fa57600080fd5b919050565b60006020828403121561261157600080fd5b6119cc826125ea565b60005b8381101561263557818101518382015260200161261d565b838111156118175750506000910152565b6000815180845261265e81602086016020860161261a565b601f01601f19169290920160200192915050565b6020815260006119cc6020830184612646565b60006020828403121561269757600080fd5b5035919050565b6001600160a01b0381168114610db157600080fd5b600080604083850312156126c657600080fd5b82356126d18161269e565b946020939093013593505050565b6000602082840312156126f157600080fd5b81356119cc8161269e565b60008060006060848603121561271157600080fd5b833561271c8161269e565b9250602084013561272c8161269e565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561277557835183529284019291840191600101612759565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127b2576127b2612781565b604051601f8501601f19908116603f011681019082821181831017156127da576127da612781565b816040528093508581528686860111156127f357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561281f57600080fd5b813567ffffffffffffffff81111561283657600080fd5b8201601f8101841361284757600080fd5b611cd484823560208401612797565b6000806040838503121561286957600080fd5b82356128748161269e565b9150612882602084016125ea565b90509250929050565b600080600080608085870312156128a157600080fd5b84356128ac8161269e565b935060208501356128bc8161269e565b925060408501359150606085013567ffffffffffffffff8111156128df57600080fd5b8501601f810187136128f057600080fd5b6128ff87823560208401612797565b91505092959194509250565b6000806040838503121561291e57600080fd5b82356129298161269e565b915060208301356129398161269e565b809150509250929050565b6000806020838503121561295757600080fd5b823567ffffffffffffffff8082111561296f57600080fd5b818501915085601f83011261298357600080fd5b81358181111561299257600080fd5b8660208260051b85010111156129a757600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a0257607f821691505b60208210811415612a2357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612aba57612aba612a90565b5060010190565b60008219821115612ad457612ad4612a90565b500190565b600082821015612aeb57612aeb612a90565b500390565b6000816000190483118215151615612b0a57612b0a612a90565b500290565b600084516020612b228285838a0161261a565b855191840191612b358184848a0161261a565b8554920191600090600181811c9080831680612b5257607f831692505b858310811415612b7057634e487b7160e01b85526022600452602485fd5b808015612b845760018114612b9557612bc2565b60ff19851688528388019550612bc2565b60008b81526020902060005b85811015612bba5781548a820152908401908801612ba1565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612c4a57612c4a612c25565b500490565b600082612c5e57612c5e612c25565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c9690830184612646565b9695505050505050565b600060208284031215612cb257600080fd5b81516119cc816125b7565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fe9831f1c69a0f0b116905c051fd1b22dc96465e61f5babc9fbb71439f548b5264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6253747a5a593279506145587a4e4d454b673762687a53344851504346647844386f317465636d537a34372f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d6132694c54586f744c344251327735797a7774737163467155574a6e51774e755972624d75666a6677416d4c2f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmZbStzZY2yPaEXzNMEKg7bhzS4HQPCFdxD8o1tecmSz47/
Arg [1] : _initNotRevealedUri (string): ipfs://Qma2iLTXotL4BQ2w5yzwtsqcFqUWJnQwNuYrbMufjfwAmL/unrevealed.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a6253747a5a593279506145587a4e4d454b673762687a
Arg [4] : 53344851504346647844386f317465636d537a34372f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [6] : 697066733a2f2f516d6132694c54586f744c344251327735797a777473716346
Arg [7] : 7155574a6e51774e755972624d75666a6677416d4c2f756e72657665616c6564
Arg [8] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45298:5169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36853:224;;;;;;;;;;-1:-1:-1;36853:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36853:224:0;;;;;;;;49634:73;;;;;;;;;;-1:-1:-1;49634:73:0;;;;;:::i;:::-;;:::i;:::-;;24745:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26304:221::-;;;;;;;;;;-1:-1:-1;26304:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26304:221:0;1878:203:1;45450:28:0;;;;;;;;;;;;;:::i;25827:411::-;;;;;;;;;;-1:-1:-1;25827:411:0;;;;;:::i;:::-;;:::i;45483:31::-;;;;;;;;;;;;;;;;;;;2688:25:1;;;2676:2;2661:18;45483:31:0;2542:177:1;37493:113:0;;;;;;;;;;-1:-1:-1;37581:10:0;:17;37493:113;;45848:55;;;;;;;;;;-1:-1:-1;45848:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;45555:33;;;;;;;;;;;;;;;;27194:339;;;;;;;;;;-1:-1:-1;27194:339:0;;;;;:::i;:::-;;:::i;37161:256::-;;;;;;;;;;-1:-1:-1;37161:256:0;;;;;:::i;:::-;;:::i;47740:258::-;;;;;;;;;;-1:-1:-1;47740:258:0;;;;;:::i;:::-;;:::i;49715:95::-;;;;;;;;;;-1:-1:-1;49715:95:0;;;;;:::i;:::-;;:::i;50306:158::-;;;:::i;47377:351::-;;;;;;;;;;-1:-1:-1;47377:351:0;;;;;:::i;:::-;;:::i;27604:185::-;;;;;;;;;;-1:-1:-1;27604:185:0;;;;;:::i;:::-;;:::i;48004:348::-;;;;;;;;;;-1:-1:-1;48004:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49062:82::-;;;;;;;;;;-1:-1:-1;49062:82:0;;;;;:::i;:::-;;:::i;37683:233::-;;;;;;;;;;-1:-1:-1;37683:233:0;;;;;:::i;:::-;;:::i;45698:28::-;;;;;;;;;;-1:-1:-1;45698:28:0;;;;;;;;;;;49402:98;;;;;;;;;;-1:-1:-1;49402:98:0;;;;;:::i;:::-;;:::i;45667:26::-;;;;;;;;;;-1:-1:-1;45667:26:0;;;;;;;;24439:239;;;;;;;;;;-1:-1:-1;24439:239:0;;;;;:::i;:::-;;:::i;45633:29::-;;;;;;;;;;;;;;;;24169:208;;;;;;;;;;-1:-1:-1;24169:208:0;;;;;:::i;:::-;;:::i;44642:94::-;;;;;;;;;;;;;:::i;49150:118::-;;;;;;;;;;-1:-1:-1;49150:118:0;;;;;:::i;:::-;;:::i;43991:87::-;;;;;;;;;;-1:-1:-1;44064:6:0;;-1:-1:-1;;;;;44064:6:0;43991:87;;24914:104;;;;;;;;;;;;;:::i;49975:324::-;;;;;;;;;;-1:-1:-1;49975:324:0;;;;;:::i;:::-;;:::i;48952:102::-;;;;;;;;;;-1:-1:-1;48952:102:0;;;;;:::i;:::-;;:::i;45731:34::-;;;;;;;;;;-1:-1:-1;45731:34:0;;;;;;;;;;;46258:1009;;;;;;:::i;:::-;;:::i;26597:295::-;;;;;;;;;;-1:-1:-1;26597:295:0;;;;;:::i;:::-;;:::i;48877:67::-;;;;;;;;;;;;;:::i;45770:31::-;;;;;;;;;;-1:-1:-1;45770:31:0;;;;;;;-1:-1:-1;;;;;45770:31:0;;;27860:328;;;;;;;;;;-1:-1:-1;27860:328:0;;;;;:::i;:::-;;:::i;45806:37::-;;;;;;;;;;-1:-1:-1;45806:37:0;;;;;:::i;:::-;;:::i;45408:::-;;;;;;;;;;;;;:::i;48358:497::-;;;;;;;;;;-1:-1:-1;48358:497:0;;;;;:::i;:::-;;:::i;45519:31::-;;;;;;;;;;;;;;;;49506:122;;;;;;;;;;-1:-1:-1;49506:122:0;;;;;:::i;:::-;;:::i;45593:35::-;;;;;;;;;;;;;;;;26963:164;;;;;;;;;;-1:-1:-1;26963:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27084:25:0;;;27060:4;27084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26963:164;49818:149;;;;;;;;;;-1:-1:-1;49818:149:0;;;;;:::i;:::-;;:::i;49276:120::-;;;;;;;;;;-1:-1:-1;49276:120:0;;;;;:::i;:::-;;:::i;44891:192::-;;;;;;;;;;-1:-1:-1;44891:192:0;;;;;:::i;:::-;;:::i;36853:224::-;36955:4;-1:-1:-1;;;;;;36979:50:0;;-1:-1:-1;;;36979:50:0;;:90;;;37033:36;37057:11;37033:23;:36::i;:::-;36972:97;36853:224;-1:-1:-1;;36853:224:0:o;49634:73::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;;;;;;;;;49686:6:::1;:15:::0;;-1:-1:-1;;49686:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49634:73::o;24745:100::-;24799:13;24832:5;24825:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24745:100;:::o;26304:221::-;26380:7;29787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29787:16:0;26400:73;;;;-1:-1:-1;;;26400:73:0;;8932:2:1;26400:73:0;;;8914:21:1;8971:2;8951:18;;;8944:30;9010:34;8990:18;;;8983:62;-1:-1:-1;;;9061:18:1;;;9054:42;9113:19;;26400:73:0;8730:408:1;26400:73:0;-1:-1:-1;26493:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26493:24:0;;26304:221::o;45450:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25827:411::-;25908:13;25924:23;25939:7;25924:14;:23::i;:::-;25908:39;;25972:5;-1:-1:-1;;;;;25966:11:0;:2;-1:-1:-1;;;;;25966:11:0;;;25958:57;;;;-1:-1:-1;;;25958:57:0;;9345:2:1;25958:57:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:1;;;9467:31;9515:19;;25958:57:0;9143:397:1;25958:57:0;22354:10;-1:-1:-1;;;;;26050:21:0;;;;:62;;-1:-1:-1;26075:37:0;26092:5;22354:10;26963:164;:::i;26075:37::-;26028:168;;;;-1:-1:-1;;;26028:168:0;;9747:2:1;26028:168:0;;;9729:21:1;9786:2;9766:18;;;9759:30;9825:34;9805:18;;;9798:62;9896:26;9876:18;;;9869:54;9940:19;;26028:168:0;9545:420:1;26028:168:0;26209:21;26218:2;26222:7;26209:8;:21::i;:::-;25897:341;25827:411;;:::o;27194:339::-;27389:41;22354:10;27422:7;27389:18;:41::i;:::-;27381:103;;;;-1:-1:-1;;;27381:103:0;;;;;;;:::i;:::-;27497:28;27507:4;27513:2;27517:7;27497:9;:28::i;37161:256::-;37258:7;37294:23;37311:5;37294:16;:23::i;:::-;37286:5;:31;37278:87;;;;-1:-1:-1;;;37278:87:0;;10590:2:1;37278:87:0;;;10572:21:1;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;-1:-1:-1;;;10719:18:1;;;10712:41;10770:19;;37278:87:0;10388:407:1;37278:87:0;-1:-1:-1;;;;;;37383:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37161:256::o;47740:258::-;47799:4;;47813:159;47836:20;:27;47832:31;;47813:159;;;47914:5;-1:-1:-1;;;;;47887:32:0;:20;47908:1;47887:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47887:23:0;:32;47883:80;;;-1:-1:-1;47945:4:0;;47740:258;-1:-1:-1;;47740:258:0:o;47883:80::-;47865:3;;;;:::i;:::-;;;;47813:159;;;-1:-1:-1;47987:5:0;;47740:258;-1:-1:-1;;47740:258:0:o;49715:95::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49780:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49780:24:0;;::::1;::::0;;;::::1;::::0;;49715:95::o;50306:158::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;50377:58:::1;::::0;50359:12:::1;::::0;50385:10:::1;::::0;50409:21:::1;::::0;50359:12;50377:58;50359:12;50377:58;50409:21;50385:10;50377:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50358:77;;;50450:7;50442:16;;;::::0;::::1;;50351:113;50306:158::o:0;47377:351::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47465:18:0;::::1;47456:50;;;::::0;-1:-1:-1;;;47456:50:0;;11616:2:1;47456:50:0::1;::::0;::::1;11598:21:1::0;11655:2;11635:18;;;11628:30;-1:-1:-1;;;11674:18:1;;;11667:48;11732:18;;47456:50:0::1;11414:342:1::0;47456:50:0::1;47533:9;;47522:7;:20;;47513:57;;;::::0;-1:-1:-1;;;47513:57:0;;11963:2:1;47513:57:0::1;::::0;::::1;11945:21:1::0;12002:2;11982:18;;;11975:30;12041:25;12021:18;;;12014:53;12084:18;;47513:57:0::1;11761:347:1::0;47513:57:0::1;47579:14;47596:13;37581:10:::0;:17;;37493:113;47596:13:::1;47579:30:::0;-1:-1:-1;47632:1:0::1;47616:77;47640:7;47635:1;:12;47616:77;;47661:24;47668:3:::0;47673:10:::1;47682:1:::0;47673:6;:10:::1;:::i;:::-;47661:5;:24::i;:::-;47649:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47616:77;;;;47713:7;47700:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;47377:351:0:o;27604:185::-;27742:39;27759:4;27765:2;27769:7;27742:39;;;;;;;;;;;;:16;:39::i;48004:348::-;48079:16;48107:23;48133:17;48143:6;48133:9;:17::i;:::-;48107:43;;48157:25;48199:15;48185:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48185:30:0;;48157:58;;48227:9;48222:103;48242:15;48238:1;:19;48222:103;;;48287:30;48307:6;48315:1;48287:19;:30::i;:::-;48273:8;48282:1;48273:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48259:3;;;;:::i;:::-;;;;48222:103;;;-1:-1:-1;48338:8:0;48004:348;-1:-1:-1;;;48004:348:0:o;49062:82::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49123:4:::1;:15:::0;49062:82::o;37683:233::-;37758:7;37794:30;37581:10;:17;;37493:113;37794:30;37786:5;:38;37778:95;;;;-1:-1:-1;;;37778:95:0;;12578:2:1;37778:95:0;;;12560:21:1;12617:2;12597:18;;;12590:30;12656:34;12636:18;;;12629:62;-1:-1:-1;;;12707:18:1;;;12700:42;12759:19;;37778:95:0;12376:408:1;37778:95:0;37891:10;37902:5;37891:17;;;;;;;;:::i;:::-;;;;;;;;;37884:24;;37683:233;;;:::o;49402:98::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49473:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49402:98:::0;:::o;24439:239::-;24511:7;24547:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24547:16:0;24582:19;24574:73;;;;-1:-1:-1;;;24574:73:0;;12991:2:1;24574:73:0;;;12973:21:1;13030:2;13010:18;;;13003:30;13069:34;13049:18;;;13042:62;-1:-1:-1;;;13120:18:1;;;13113:39;13169:19;;24574:73:0;12789:405:1;24169:208:0;24241:7;-1:-1:-1;;;;;24269:19:0;;24261:74;;;;-1:-1:-1;;;24261:74:0;;13401:2:1;24261:74:0;;;13383:21:1;13440:2;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;-1:-1:-1;;;13530:18:1;;;13523:40;13580:19;;24261:74:0;13199:406:1;24261:74:0;-1:-1:-1;;;;;;24353:16:0;;;;;:9;:16;;;;;;;24169:208::o;44642:94::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;44707:21:::1;44725:1;44707:9;:21::i;:::-;44642:94::o:0;49150:118::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49229:13:::1;:33:::0;49150:118::o;24914:104::-;24970:13;25003:7;24996:14;;;;;:::i;49975:324::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;50099:6:::1;50074:21;:31;;50066:73;;;::::0;-1:-1:-1;;;50066:73:0;;13812:2:1;50066:73:0::1;::::0;::::1;13794:21:1::0;13851:2;13831:18;;;13824:30;13890:31;13870:18;;;13863:59;13939:18;;50066:73:0::1;13610:353:1::0;50066:73:0::1;50153:12;50171:9;-1:-1:-1::0;;;;;50171:14:0::1;50193:6;50171:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50152:52;;;50223:7;50215:78;;;::::0;-1:-1:-1;;;50215:78:0;;14170:2:1;50215:78:0::1;::::0;::::1;14152:21:1::0;14209:2;14189:18;;;14182:30;14248:34;14228:18;;;14221:62;14319:28;14299:18;;;14292:56;14365:19;;50215:78:0::1;13968:422:1::0;48952:102:0;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49023:16:::1;:25:::0;48952:102::o;46258:1009::-;47307:10;47321:9;47307:23;47299:52;;;;-1:-1:-1;;;47299:52:0;;14597:2:1;47299:52:0;;;14579:21:1;14636:2;14616:18;;;14609:30;-1:-1:-1;;;14655:18:1;;;14648:46;14711:18;;47299:52:0;14395:340:1;47299:52:0;46331:6:::1;::::0;::::1;;46330:7;46322:38;;;::::0;-1:-1:-1;;;46322:38:0;;14942:2:1;46322:38:0::1;::::0;::::1;14924:21:1::0;14981:2;14961:18;;;14954:30;-1:-1:-1;;;15000:18:1;;;14993:48;15058:18;;46322:38:0::1;14740:342:1::0;46322:38:0::1;46367:14;46384:13;37581:10:::0;:17;;37493:113;46384:13:::1;46367:30;;46426:1;46412:11;:15;46404:54;;;::::0;-1:-1:-1;;;46404:54:0;;15289:2:1;46404:54:0::1;::::0;::::1;15271:21:1::0;15328:2;15308:18;;;15301:30;15367:28;15347:18;;;15340:56;15413:18;;46404:54:0::1;15087:350:1::0;46404:54:0::1;46488:13;;46473:11;:28;;46465:77;;;::::0;-1:-1:-1;;;46465:77:0;;15644:2:1;46465:77:0::1;::::0;::::1;15626:21:1::0;15683:2;15663:18;;;15656:30;15722:34;15702:18;;;15695:62;-1:-1:-1;;;15773:18:1;;;15766:34;15817:19;;46465:77:0::1;15442:400:1::0;46465:77:0::1;46581:9;::::0;46557:20:::1;46566:11:::0;46557:6;:20:::1;:::i;:::-;:33;;46549:68;;;::::0;-1:-1:-1;;;46549:68:0;;16049:2:1;46549:68:0::1;::::0;::::1;16031:21:1::0;16088:2;16068:18;;;16061:30;-1:-1:-1;;;16107:18:1;;;16100:52;16169:18;;46549:68:0::1;15847:346:1::0;46549:68:0::1;44064:6:::0;;-1:-1:-1;;;;;44064:6:0;46630:10:::1;:21;46626:488;;46668:15;::::0;;;::::1;;;:23;;46687:4;46668:23;46664:369;;;46715:25;46729:10;46715:13;:25::i;:::-;46707:61;;;::::0;-1:-1:-1;;;46707:61:0;;16400:2:1;46707:61:0::1;::::0;::::1;16382:21:1::0;16439:2;16419:18;;;16412:30;16478:25;16458:18;;;16451:53;16521:18;;46707:61:0::1;16198:347:1::0;46707:61:0::1;46791:24;46805:9;46791:13;:24::i;:::-;46783:58;;;::::0;-1:-1:-1;;;46783:58:0;;16752:2:1;46783:58:0::1;::::0;::::1;16734:21:1::0;16791:2;16771:18;;;16764:30;-1:-1:-1;;;16810:18:1;;;16803:51;16871:18;;46783:58:0::1;16550:345:1::0;46783:58:0::1;46904:10;46856:24;46883:32:::0;;;:20:::1;:32;::::0;;;;;46972:16:::1;::::0;46938:30:::1;46957:11:::0;46883:32;46938:30:::1;:::i;:::-;:50;;46930:91;;;::::0;-1:-1:-1;;;46930:91:0;;17102:2:1;46930:91:0::1;::::0;::::1;17084:21:1::0;17141:2;17121:18;;;17114:30;17180;17160:18;;;17153:58;17228:18;;46930:91:0::1;16900:352:1::0;46930:91:0::1;46692:341;46664:369;47072:11;47065:4;;:18;;;;:::i;:::-;47052:9;:31;;47044:62;;;::::0;-1:-1:-1;;;47044:62:0;;17632:2:1;47044:62:0::1;::::0;::::1;17614:21:1::0;17671:2;17651:18;;;17644:30;-1:-1:-1;;;17690:18:1;;;17683:48;17748:18;;47044:62:0::1;17430:342:1::0;47044:62:0::1;47139:1;47122:134;47147:11;47142:1;:16;47122:134;;47197:10;47176:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;47219:29:0::1;::::0;-1:-1:-1;47225:10:0::1;47237;47246:1:::0;47237:6;:10:::1;:::i;47219:29::-;47160:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47122:134;;26597:295:::0;-1:-1:-1;;;;;26700:24:0;;22354:10;26700:24;;26692:62;;;;-1:-1:-1;;;26692:62:0;;17979:2:1;26692:62:0;;;17961:21:1;18018:2;17998:18;;;17991:30;18057:27;18037:18;;;18030:55;18102:18;;26692:62:0;17777:349:1;26692:62:0;22354:10;26767:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26767:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26767:53:0;;;;;;;;;;26836:48;;540:41:1;;;26767:42:0;;22354:10;26836:48;;513:18:1;26836:48:0;;;;;;;26597:295;;:::o;48877:67::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;48923:8:::1;:15:::0;;-1:-1:-1;;48923:15:0::1;;;::::0;;48877:67::o;27860:328::-;28035:41;22354:10;28068:7;28035:18;:41::i;:::-;28027:103;;;;-1:-1:-1;;;28027:103:0;;;;;;;:::i;:::-;28141:39;28155:4;28161:2;28165:7;28174:5;28141:13;:39::i;:::-;27860:328;;;;:::o;45806:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45806:37:0;;-1:-1:-1;45806:37:0;:::o;45408:::-;;;;;;;:::i;48358:497::-;29763:4;29787:16;;;:7;:16;;;;;;48456:13;;-1:-1:-1;;;;;29787:16:0;48481:97;;;;-1:-1:-1;;;48481:97:0;;18333:2:1;48481:97:0;;;18315:21:1;18372:2;18352:18;;;18345:30;18411:34;18391:18;;;18384:62;-1:-1:-1;;;18462:18:1;;;18455:45;18517:19;;48481:97:0;18131:411:1;48481:97:0;48594:8;;;;;;;48591:62;;48631:14;48624:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48358:497;;;:::o;48591:62::-;48661:28;48692:10;:8;:10::i;:::-;48661:41;;48747:1;48722:14;48716:28;:32;:133;;;;;;;;;;;;;;;;;48784:14;48800:18;:7;:16;:18::i;:::-;48820:13;48767:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48716:133;48709:140;48358:497;-1:-1:-1;;;48358:497:0:o;49506:122::-;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49589:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49818:149::-:0;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49896:27:::1;49903:20;;49896:27;:::i;:::-;49932:29;:20;49955:6:::0;;49932:29:::1;:::i;49276:120::-:0;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;49358:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;44891:192::-:0;44064:6;;-1:-1:-1;;;;;44064:6:0;22354:10;44211:23;44203:68;;;;-1:-1:-1;;;44203:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44980:22:0;::::1;44972:73;;;::::0;-1:-1:-1;;;44972:73:0;;20407:2:1;44972:73:0::1;::::0;::::1;20389:21:1::0;20446:2;20426:18;;;20419:30;20485:34;20465:18;;;20458:62;-1:-1:-1;;;20536:18:1;;;20529:36;20582:19;;44972:73:0::1;20205:402:1::0;44972:73:0::1;45056:19;45066:8;45056:9;:19::i;23800:305::-:0;23902:4;-1:-1:-1;;;;;;23939:40:0;;-1:-1:-1;;;23939:40:0;;:105;;-1:-1:-1;;;;;;;23996:48:0;;-1:-1:-1;;;23996:48:0;23939:105;:158;;;-1:-1:-1;;;;;;;;;;9740:40:0;;;24061:36;9631:157;33680:174;33755:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33755:29:0;-1:-1:-1;;;;;33755:29:0;;;;;;;;:24;;33809:23;33755:24;33809:14;:23::i;:::-;-1:-1:-1;;;;;33800:46:0;;;;;;;;;;;33680:174;;:::o;29992:348::-;30085:4;29787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29787:16:0;30102:73;;;;-1:-1:-1;;;30102:73:0;;20814:2:1;30102:73:0;;;20796:21:1;20853:2;20833:18;;;20826:30;20892:34;20872:18;;;20865:62;-1:-1:-1;;;20943:18:1;;;20936:42;20995:19;;30102:73:0;20612:408:1;30102:73:0;30186:13;30202:23;30217:7;30202:14;:23::i;:::-;30186:39;;30255:5;-1:-1:-1;;;;;30244:16:0;:7;-1:-1:-1;;;;;30244:16:0;;:51;;;;30288:7;-1:-1:-1;;;;;30264:31:0;:20;30276:7;30264:11;:20::i;:::-;-1:-1:-1;;;;;30264:31:0;;30244:51;:87;;;-1:-1:-1;;;;;;27084:25:0;;;27060:4;27084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30299:32;30236:96;29992:348;-1:-1:-1;;;;29992:348:0:o;32984:578::-;33143:4;-1:-1:-1;;;;;33116:31:0;:23;33131:7;33116:14;:23::i;:::-;-1:-1:-1;;;;;33116:31:0;;33108:85;;;;-1:-1:-1;;;33108:85:0;;21227:2:1;33108:85:0;;;21209:21:1;21266:2;21246:18;;;21239:30;21305:34;21285:18;;;21278:62;-1:-1:-1;;;21356:18:1;;;21349:39;21405:19;;33108:85:0;21025:405:1;33108:85:0;-1:-1:-1;;;;;33212:16:0;;33204:65;;;;-1:-1:-1;;;33204:65:0;;21637:2:1;33204:65:0;;;21619:21:1;21676:2;21656:18;;;21649:30;21715:34;21695:18;;;21688:62;-1:-1:-1;;;21766:18:1;;;21759:34;21810:19;;33204:65:0;21435:400:1;33204:65:0;33282:39;33303:4;33309:2;33313:7;33282:20;:39::i;:::-;33386:29;33403:1;33407:7;33386:8;:29::i;:::-;-1:-1:-1;;;;;33428:15:0;;;;;;:9;:15;;;;;:20;;33447:1;;33428:15;:20;;33447:1;;33428:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33459:13:0;;;;;;:9;:13;;;;;:18;;33476:1;;33459:13;:18;;33476:1;;33459:18;:::i;:::-;;;;-1:-1:-1;;33488:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33488:21:0;-1:-1:-1;;;;;33488:21:0;;;;;;;;;33527:27;;33488:16;;33527:27;;;;;;;32984:578;;;:::o;31676:382::-;-1:-1:-1;;;;;31756:16:0;;31748:61;;;;-1:-1:-1;;;31748:61:0;;22042:2:1;31748:61:0;;;22024:21:1;;;22061:18;;;22054:30;22120:34;22100:18;;;22093:62;22172:18;;31748:61:0;21840:356:1;31748:61:0;29763:4;29787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29787:16:0;:30;31820:58;;;;-1:-1:-1;;;31820:58:0;;22403:2:1;31820:58:0;;;22385:21:1;22442:2;22422:18;;;22415:30;22481;22461:18;;;22454:58;22529:18;;31820:58:0;22201:352:1;31820:58:0;31891:45;31920:1;31924:2;31928:7;31891:20;:45::i;:::-;-1:-1:-1;;;;;31949:13:0;;;;;;:9;:13;;;;;:18;;31966:1;;31949:13;:18;;31966:1;;31949:18;:::i;:::-;;;;-1:-1:-1;;31978:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31978:21:0;-1:-1:-1;;;;;31978:21:0;;;;;;;;32017:33;;31978:16;;;32017:33;;31978:16;;32017:33;31676:382;;:::o;45091:173::-;45166:6;;;-1:-1:-1;;;;;45183:17:0;;;-1:-1:-1;;;;;;45183:17:0;;;;;;;45216:40;;45166:6;;;45183:17;45166:6;;45216:40;;45147:16;;45216:40;45136:128;45091:173;:::o;29070:315::-;29227:28;29237:4;29243:2;29247:7;29227:9;:28::i;:::-;29274:48;29297:4;29303:2;29307:7;29316:5;29274:22;:48::i;:::-;29266:111;;;;-1:-1:-1;;;29266:111:0;;;;;;;:::i;46137:102::-;46197:13;46226:7;46219:14;;;;;:::i;10106:723::-;10162:13;10383:10;10379:53;;-1:-1:-1;;10410:10:0;;;;;;;;;;;;-1:-1:-1;;;10410:10:0;;;;;10106:723::o;10379:53::-;10457:5;10442:12;10498:78;10505:9;;10498:78;;10531:8;;;;:::i;:::-;;-1:-1:-1;10554:10:0;;-1:-1:-1;10562:2:0;10554:10;;:::i;:::-;;;10498:78;;;10586:19;10618:6;10608:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10608:17:0;;10586:39;;10636:154;10643:10;;10636:154;;10670:11;10680:1;10670:11;;:::i;:::-;;-1:-1:-1;10739:10:0;10747:2;10739:5;:10;:::i;:::-;10726:24;;:2;:24;:::i;:::-;10713:39;;10696:6;10703;10696:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10696:56:0;;;;;;;;-1:-1:-1;10767:11:0;10776:2;10767:11;;:::i;:::-;;;10636:154;;38529:589;-1:-1:-1;;;;;38735:18:0;;38731:187;;38770:40;38802:7;39945:10;:17;;39918:24;;;;:15;:24;;;;;:44;;;39973:24;;;;;;;;;;;;39841:164;38770:40;38731:187;;;38840:2;-1:-1:-1;;;;;38832:10:0;:4;-1:-1:-1;;;;;38832:10:0;;38828:90;;38859:47;38892:4;38898:7;38859:32;:47::i;:::-;-1:-1:-1;;;;;38932:16:0;;38928:183;;38965:45;39002:7;38965:36;:45::i;38928:183::-;39038:4;-1:-1:-1;;;;;39032:10:0;:2;-1:-1:-1;;;;;39032:10:0;;39028:83;;39059:40;39087:2;39091:7;39059:27;:40::i;34419:799::-;34574:4;-1:-1:-1;;;;;34595:13:0;;12954:20;13002:8;34591:620;;34631:72;;-1:-1:-1;;;34631:72:0;;-1:-1:-1;;;;;34631:36:0;;;;;:72;;22354:10;;34682:4;;34688:7;;34697:5;;34631:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34631:72:0;;;;;;;;-1:-1:-1;;34631:72:0;;;;;;;;;;;;:::i;:::-;;;34627:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34873:13:0;;34869:272;;34916:60;;-1:-1:-1;;;34916:60:0;;;;;;;:::i;34869:272::-;35091:6;35085:13;35076:6;35072:2;35068:15;35061:38;34627:529;-1:-1:-1;;;;;;34754:51:0;-1:-1:-1;;;34754:51:0;;-1:-1:-1;34747:58:0;;34591:620;-1:-1:-1;35195:4:0;34419:799;;;;;;:::o;40632:988::-;40898:22;40948:1;40923:22;40940:4;40923:16;:22::i;:::-;:26;;;;:::i;:::-;40960:18;40981:26;;;:17;:26;;;;;;40898:51;;-1:-1:-1;41114:28:0;;;41110:328;;-1:-1:-1;;;;;41181:18:0;;41159:19;41181:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41232:30;;;;;;:44;;;41349:30;;:17;:30;;;;;:43;;;41110:328;-1:-1:-1;41534:26:0;;;;:17;:26;;;;;;;;41527:33;;;-1:-1:-1;;;;;41578:18:0;;;;;:12;:18;;;;;:34;;;;;;;41571:41;40632:988::o;41915:1079::-;42193:10;:17;42168:22;;42193:21;;42213:1;;42193:21;:::i;:::-;42225:18;42246:24;;;:15;:24;;;;;;42619:10;:26;;42168:46;;-1:-1:-1;42246:24:0;;42168:46;;42619:26;;;;;;:::i;:::-;;;;;;;;;42597:48;;42683:11;42658:10;42669;42658:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42763:28;;;:15;:28;;;;;;;:41;;;42935:24;;;;;42928:31;42970:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41986:1008;;;41915:1079;:::o;39419:221::-;39504:14;39521:20;39538:2;39521:16;:20::i;:::-;-1:-1:-1;;;;;39552:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39597:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39419:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:131::-;-1:-1:-1;;;;;2161:31:1;;2151:42;;2141:70;;2207:1;2204;2197:12;2222:315;2290:6;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2222:315:1:o;2724:247::-;2783:6;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2891:9;2878:23;2910:31;2935:5;2910:31;:::i;2976:456::-;3053:6;3061;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;3177:9;3164:23;3196:31;3221:5;3196:31;:::i;:::-;3246:5;-1:-1:-1;3303:2:1;3288:18;;3275:32;3316:33;3275:32;3316:33;:::i;:::-;2976:456;;3368:7;;-1:-1:-1;;;3422:2:1;3407:18;;;;3394:32;;2976:456::o;3437:632::-;3608:2;3660:21;;;3730:13;;3633:18;;;3752:22;;;3579:4;;3608:2;3831:15;;;;3805:2;3790:18;;;3579:4;3874:169;3888:6;3885:1;3882:13;3874:169;;;3949:13;;3937:26;;4018:15;;;;3983:12;;;;3910:1;3903:9;3874:169;;;-1:-1:-1;4060:3:1;;3437:632;-1:-1:-1;;;;;;3437:632:1:o;4074:127::-;4135:10;4130:3;4126:20;4123:1;4116:31;4166:4;4163:1;4156:15;4190:4;4187:1;4180:15;4206:632;4271:5;4301:18;4342:2;4334:6;4331:14;4328:40;;;4348:18;;:::i;:::-;4423:2;4417:9;4391:2;4477:15;;-1:-1:-1;;4473:24:1;;;4499:2;4469:33;4465:42;4453:55;;;4523:18;;;4543:22;;;4520:46;4517:72;;;4569:18;;:::i;:::-;4609:10;4605:2;4598:22;4638:6;4629:15;;4668:6;4660;4653:22;4708:3;4699:6;4694:3;4690:16;4687:25;4684:45;;;4725:1;4722;4715:12;4684:45;4775:6;4770:3;4763:4;4755:6;4751:17;4738:44;4830:1;4823:4;4814:6;4806;4802:19;4798:30;4791:41;;;;4206:632;;;;;:::o;4843:451::-;4912:6;4965:2;4953:9;4944:7;4940:23;4936:32;4933:52;;;4981:1;4978;4971:12;4933:52;5021:9;5008:23;5054:18;5046:6;5043:30;5040:50;;;5086:1;5083;5076:12;5040:50;5109:22;;5162:4;5154:13;;5150:27;-1:-1:-1;5140:55:1;;5191:1;5188;5181:12;5140:55;5214:74;5280:7;5275:2;5262:16;5257:2;5253;5249:11;5214:74;:::i;5627:315::-;5692:6;5700;5753:2;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;5808:9;5795:23;5827:31;5852:5;5827:31;:::i;:::-;5877:5;-1:-1:-1;5901:35:1;5932:2;5917:18;;5901:35;:::i;:::-;5891:45;;5627:315;;;;;:::o;6171:795::-;6266:6;6274;6282;6290;6343:3;6331:9;6322:7;6318:23;6314:33;6311:53;;;6360:1;6357;6350:12;6311:53;6399:9;6386:23;6418:31;6443:5;6418:31;:::i;:::-;6468:5;-1:-1:-1;6525:2:1;6510:18;;6497:32;6538:33;6497:32;6538:33;:::i;:::-;6590:7;-1:-1:-1;6644:2:1;6629:18;;6616:32;;-1:-1:-1;6699:2:1;6684:18;;6671:32;6726:18;6715:30;;6712:50;;;6758:1;6755;6748:12;6712:50;6781:22;;6834:4;6826:13;;6822:27;-1:-1:-1;6812:55:1;;6863:1;6860;6853:12;6812:55;6886:74;6952:7;6947:2;6934:16;6929:2;6925;6921:11;6886:74;:::i;:::-;6876:84;;;6171:795;;;;;;;:::o;6971:388::-;7039:6;7047;7100:2;7088:9;7079:7;7075:23;7071:32;7068:52;;;7116:1;7113;7106:12;7068:52;7155:9;7142:23;7174:31;7199:5;7174:31;:::i;:::-;7224:5;-1:-1:-1;7281:2:1;7266:18;;7253:32;7294:33;7253:32;7294:33;:::i;:::-;7346:7;7336:17;;;6971:388;;;;;:::o;7364:615::-;7450:6;7458;7511:2;7499:9;7490:7;7486:23;7482:32;7479:52;;;7527:1;7524;7517:12;7479:52;7567:9;7554:23;7596:18;7637:2;7629:6;7626:14;7623:34;;;7653:1;7650;7643:12;7623:34;7691:6;7680:9;7676:22;7666:32;;7736:7;7729:4;7725:2;7721:13;7717:27;7707:55;;7758:1;7755;7748:12;7707:55;7798:2;7785:16;7824:2;7816:6;7813:14;7810:34;;;7840:1;7837;7830:12;7810:34;7893:7;7888:2;7878:6;7875:1;7871:14;7867:2;7863:23;7859:32;7856:45;7853:65;;;7914:1;7911;7904:12;7853:65;7945:2;7937:11;;;;;7967:6;;-1:-1:-1;7364:615:1;;-1:-1:-1;;;;7364:615:1:o;7984:356::-;8186:2;8168:21;;;8205:18;;;8198:30;8264:34;8259:2;8244:18;;8237:62;8331:2;8316:18;;7984:356::o;8345:380::-;8424:1;8420:12;;;;8467;;;8488:61;;8542:4;8534:6;8530:17;8520:27;;8488:61;8595:2;8587:6;8584:14;8564:18;8561:38;8558:161;;;8641:10;8636:3;8632:20;8629:1;8622:31;8676:4;8673:1;8666:15;8704:4;8701:1;8694:15;8558:161;;8345:380;;;:::o;9970:413::-;10172:2;10154:21;;;10211:2;10191:18;;;10184:30;10250:34;10245:2;10230:18;;10223:62;-1:-1:-1;;;10316:2:1;10301:18;;10294:47;10373:3;10358:19;;9970:413::o;10800:127::-;10861:10;10856:3;10852:20;10849:1;10842:31;10892:4;10889:1;10882:15;10916:4;10913:1;10906:15;10932:127;10993:10;10988:3;10984:20;10981:1;10974:31;11024:4;11021:1;11014:15;11048:4;11045:1;11038:15;11064:135;11103:3;-1:-1:-1;;11124:17:1;;11121:43;;;11144:18;;:::i;:::-;-1:-1:-1;11191:1:1;11180:13;;11064:135::o;12113:128::-;12153:3;12184:1;12180:6;12177:1;12174:13;12171:39;;;12190:18;;:::i;:::-;-1:-1:-1;12226:9:1;;12113:128::o;12246:125::-;12286:4;12314:1;12311;12308:8;12305:34;;;12319:18;;:::i;:::-;-1:-1:-1;12356:9:1;;12246:125::o;17257:168::-;17297:7;17363:1;17359;17355:6;17351:14;17348:1;17345:21;17340:1;17333:9;17326:17;17322:45;17319:71;;;17370:18;;:::i;:::-;-1:-1:-1;17410:9:1;;17257:168::o;18673:1527::-;18897:3;18935:6;18929:13;18961:4;18974:51;19018:6;19013:3;19008:2;19000:6;18996:15;18974:51;:::i;:::-;19088:13;;19047:16;;;;19110:55;19088:13;19047:16;19132:15;;;19110:55;:::i;:::-;19254:13;;19187:20;;;19227:1;;19314;19336:18;;;;19389;;;;19416:93;;19494:4;19484:8;19480:19;19468:31;;19416:93;19557:2;19547:8;19544:16;19524:18;19521:40;19518:167;;;-1:-1:-1;;;19584:33:1;;19640:4;19637:1;19630:15;19670:4;19591:3;19658:17;19518:167;19701:18;19728:110;;;;19852:1;19847:328;;;;19694:481;;19728:110;-1:-1:-1;;19763:24:1;;19749:39;;19808:20;;;;-1:-1:-1;19728:110:1;;19847:328;18620:1;18613:14;;;18657:4;18644:18;;19942:1;19956:169;19970:8;19967:1;19964:15;19956:169;;;20052:14;;20037:13;;;20030:37;20095:16;;;;19987:10;;19956:169;;;19960:3;;20156:8;20149:5;20145:20;20138:27;;19694:481;-1:-1:-1;20191:3:1;;18673:1527;-1:-1:-1;;;;;;;;;;;18673:1527:1:o;22558:414::-;22760:2;22742:21;;;22799:2;22779:18;;;22772:30;22838:34;22833:2;22818:18;;22811:62;-1:-1:-1;;;22904:2:1;22889:18;;22882:48;22962:3;22947:19;;22558:414::o;22977:127::-;23038:10;23033:3;23029:20;23026:1;23019:31;23069:4;23066:1;23059:15;23093:4;23090:1;23083:15;23109:120;23149:1;23175;23165:35;;23180:18;;:::i;:::-;-1:-1:-1;23214:9:1;;23109:120::o;23234:112::-;23266:1;23292;23282:35;;23297:18;;:::i;:::-;-1:-1:-1;23331:9:1;;23234:112::o;23351:489::-;-1:-1:-1;;;;;23620:15:1;;;23602:34;;23672:15;;23667:2;23652:18;;23645:43;23719:2;23704:18;;23697:34;;;23767:3;23762:2;23747:18;;23740:31;;;23545:4;;23788:46;;23814:19;;23806:6;23788:46;:::i;:::-;23780:54;23351:489;-1:-1:-1;;;;;;23351:489:1:o;23845:249::-;23914:6;23967:2;23955:9;23946:7;23942:23;23938:32;23935:52;;;23983:1;23980;23973:12;23935:52;24015:9;24009:16;24034:30;24058:5;24034:30;:::i;24099:127::-;24160:10;24155:3;24151:20;24148:1;24141:31;24191:4;24188:1;24181:15;24215:4;24212:1;24205:15
Swarm Source
ipfs://fe9831f1c69a0f0b116905c051fd1b22dc96465e61f5babc9fbb71439f548b52
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.