Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 105 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 17048175 | 615 days ago | IN | 0 ETH | 0.00150573 | ||||
Safe Transfer Fr... | 15977273 | 765 days ago | IN | 0 ETH | 0.00191229 | ||||
Set Approval For... | 15219938 | 877 days ago | IN | 0 ETH | 0.00139198 | ||||
Set Approval For... | 15055144 | 903 days ago | IN | 0 ETH | 0.00065723 | ||||
Safe Transfer Fr... | 14928445 | 925 days ago | IN | 0 ETH | 0.00521652 | ||||
Mint For Address | 14894881 | 931 days ago | IN | 0 ETH | 0.0235443 | ||||
Mint For Address | 14894878 | 931 days ago | IN | 0 ETH | 0.02129264 | ||||
Mint For Address | 14894875 | 931 days ago | IN | 0 ETH | 0.02391063 | ||||
Mint For Address | 14894872 | 931 days ago | IN | 0 ETH | 0.02874157 | ||||
Withdraw | 14894866 | 931 days ago | IN | 0 ETH | 0.00153432 | ||||
Mint | 14893298 | 931 days ago | IN | 0.1 ETH | 0.00840011 | ||||
Mint For Address | 14892898 | 931 days ago | IN | 0 ETH | 0.08020884 | ||||
Mint For Address | 14892894 | 931 days ago | IN | 0 ETH | 0.06244083 | ||||
Mint For Address | 14892892 | 931 days ago | IN | 0 ETH | 0.07855311 | ||||
Mint For Address | 14892887 | 931 days ago | IN | 0 ETH | 0.05782367 | ||||
Mint For Address | 14892885 | 931 days ago | IN | 0 ETH | 0.04941047 | ||||
Mint For Address | 14892880 | 931 days ago | IN | 0 ETH | 0.0478841 | ||||
Transfer Ownersh... | 14892390 | 931 days ago | IN | 0 ETH | 0.00292563 | ||||
Mint For Address | 14794175 | 947 days ago | IN | 0 ETH | 0.00361123 | ||||
Mint For Address | 14794174 | 947 days ago | IN | 0 ETH | 0.00199159 | ||||
Mint For Address | 14794170 | 947 days ago | IN | 0 ETH | 0.00236665 | ||||
Withdraw | 14756262 | 953 days ago | IN | 0 ETH | 0.00418791 | ||||
Mint | 14737801 | 956 days ago | IN | 0.1 ETH | 0.00198367 | ||||
Mint | 14702351 | 962 days ago | IN | 0.1 ETH | 0.00559397 | ||||
Withdraw | 14687954 | 964 days ago | IN | 0 ETH | 0.00205919 |
Loading...
Loading
Contract Name:
Timewrecked
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-25 */ // SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) /** * @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 { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract Timewrecked is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supplyTier1; Counters.Counter private supplyTier2; Counters.Counter private supplyTier3; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256[] tierCosts = [10 ether, 1.5 ether, 0.1 ether]; uint256[] tierMaxSupplies = [1111, 1106, 1081]; uint256 public immutable maxSupply = 1111; bool public publicMintActive = true; bool public revealed = false; mapping(address => uint256) private _allowList; bool public isAllowListActive = false; constructor() ERC721("TIMEWRECKED", "TW") { setHiddenMetadataUri("ipfs://QmdegKBqZVBKCCJvsb7pbG5Vs6xzyTrwmiku1mKKxU6Q1h/hidden.json"); for (uint256 i = 0; i < 1081; i++) { supplyTier2.increment(); } for (uint256 i = 0; i < 1106; i++) { supplyTier1.increment(); } } /// @notice Validates that the mint is compliant and does not exceed the max supply of the given tier. /// @param _mintAmount amount that the caller would like to mint. /// @param _tier the tier of NFT that the caller would like to mint (Tier 1, 2, or 3) modifier mintCompliance(uint256 _mintAmount, uint256 _tier) { require(_mintAmount > 0, "Invalid mint amount!"); if(_tier == 3) { require(supplyTier3.current() + _mintAmount <= tierMaxSupplies[2], "Max supply of Tier 3 exceeded!"); } else if (_tier == 2) { require(supplyTier2.current() + _mintAmount <= tierMaxSupplies[1], "Max supply of Tier 2 exceeded!"); } else { require(supplyTier1.current() + _mintAmount <= tierMaxSupplies[0], "Max supply of Tier 1 exceeded!"); } _; } /// @notice Returns the total supply of the collection, all tiers included. /// @return _totalSupply will return the integer amount of the total collection supply. function totalSupply() public view returns (uint256 _totalSupply) { return (supplyTier1.current() - tierMaxSupplies[1]) + (supplyTier2.current() - tierMaxSupplies[2]) + supplyTier3.current() ; } /// @notice Returns the total supply of the given tier within the collection. /// @param _tier the tier you would like to check the total supply of (Tier 1, 2, or 3) /// @return _totalSupply the total supply of the selected tier. function totalSupply(uint256 _tier) public view returns (uint256 _totalSupply) { if(_tier == 1) { return supplyTier1.current() - tierMaxSupplies[1]; } else if (_tier == 2) { return supplyTier2.current() - tierMaxSupplies[2]; } else if(_tier == 3) { return supplyTier3.current(); } } /// @notice Mint function that will check to make sure the public mint is active and the correct funds have been sent in msg.value /// @param _mintAmount the amount of NFTs that the caller would like to mint. /// @param _tier the tier of NFT that the caller would like to mint (Tier 1, 2, or 3). function mint(uint256 _mintAmount, uint256 _tier) public payable mintCompliance(_mintAmount, _tier) { require(!publicMintActive, "Public mint is not active!"); if(_tier == 1){ require(msg.value >= tierCosts[0] * _mintAmount, "Insufficient funds for tier 1 mint!!"); } else if(_tier == 2) { require(msg.value >= tierCosts[1] * _mintAmount, "Insufficient funds for tier 2 mint!!"); } else if(_tier == 3) { require(msg.value >= tierCosts[2] * _mintAmount, "Insufficient funds for tier 3 mint!"); } _mintLoop(msg.sender, _mintAmount, _tier); } /// @notice Mint function for addresses that are on the allow list for early mint. Calls _mintLoop after require conditions are met. /// @param _mintAmount The amount of NFTs that the caller would like to mint in allow list. /// @param _tier the tier of NFT that the caller would like to mint (Tier 1, 2, or 3). function mintAllowList(uint256 _mintAmount, uint256 _tier) external payable mintCompliance(_mintAmount, _tier) { require(isAllowListActive, "Allow list is not active"); require(_mintAmount <= _allowList[msg.sender], "Exceeded max available to purchase"); require(totalSupply(_tier) + _mintAmount <= tierMaxSupplies[_tier - 1], "Purchase would exceed max tokens"); require(tierCosts[_tier - 1] * _mintAmount <= msg.value, "Ether value sent is not correct"); _allowList[msg.sender] -= _mintAmount; _mintLoop(msg.sender, _mintAmount, _tier); } /// @notice Mints NFT(s) for a specified address, only the owner can call this function. /// @param _mintAmount The amount of NFTs that the caller would like to mint. /// @param _receiver the address that will recieve the NFT(s). /// @param _tier the tier of NFT that the caller would like to mint (Tier 1, 2, or 3). function mintForAddress(uint256 _mintAmount, address _receiver, uint256 _tier) public mintCompliance(_mintAmount, _tier) onlyOwner { _mintLoop(_receiver, _mintAmount, _tier); } /// @notice Information on the wallet of a specified address /// @param _owner address that is being checked against. function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "Timewrecked: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } /// @notice Function to set whether the NFTs are revealed/unrevealed /// @param _state boolean flag set to true if revealed, false if unrevealed. function setRevealed(bool _state) public onlyOwner { revealed = _state; } /// @notice Function to set the cost of the NFT by tier. /// @param _cost value being set for the new cost of the selected tier. /// @param _tier the tier (1, 2, or 3) for which the cost is being updated. function setCost(uint256 _cost, uint256 _tier) public onlyOwner { if(_tier == 1) { tierCosts[0] = _cost; } else if(_tier == 2) { tierCosts[1] == _cost; } else if(_tier == 3) { tierCosts[2] == _cost; } } /// @notice Sets the URI for the metadata of the hidden/unrevealed NFT. /// @param _hiddenMetadataUri String for the URI for the hidden metadata. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } /// @notice Sets the URI for the metadata of the revealed NFT. /// @param _uriPrefix String for the URI for the metadata. function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } /// @notice Sets the URI suffix for the metadata. (".json" by default). /// @param _uriSuffix String for the suffix to be set. function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } /// @notice Sets the public mint being active or inactive /// @param _state set to true if public mint is active, or false if inactive. function setPublicMintActive(bool _state) public onlyOwner { publicMintActive = _state; } /// @notice Function to allow the owner to withdraw funds from contract function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } /// @notice Function to loop through the ttokens and mint multiple based on tier. /// @param _receiver address that is receiving the NFTs. /// @param _mintAmount the amount of NFTs that the caller would like to mint. /// @param _tier the tier of NFT that the caller would like to mint (Tier 1, 2, or 3). function _mintLoop(address _receiver, uint256 _mintAmount, uint256 _tier) internal { if(_tier == 1) { for (uint256 i = 0; i < _mintAmount; i++) { supplyTier1.increment(); _safeMint(_receiver, supplyTier1.current()); } } else if(_tier == 2) { for (uint256 i = 0; i < _mintAmount; i++) { supplyTier2.increment(); _safeMint(_receiver, supplyTier2.current()); } } else if(_tier == 3) { for (uint256 i = 0; i < _mintAmount; i++) { supplyTier3.increment(); _safeMint(_receiver, supplyTier3.current()); } } } /// @notice Function to get the URI of the revealed NFT. /// @return string with the URI. function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } /// @notice Sets what addresses are part of the allow list for early mint. /// @param addresses array of addresses to be added to allow list. /// @param numAllowedToMint number of mints the given addresses will be able to mint in allow list period. function setAllowList(address[] calldata addresses, uint256 numAllowedToMint) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = numAllowedToMint; } } /// @notice Checks to see whether the given address is on the allow list or not /// @param _address address being checked for allow list. /// @return returns boolean value, true if on allow list or false if not on allowlist. function checkAllowList(address _address) external view returns (bool) { if(_allowList[_address] > 0 ) { return true; } return false; } /// @notice Sets the allow list sale period to active or inactive. /// @param _isAllowListActive boolean flag on whether sale is active (true) or inactive (false). function setIsAllowListActive(bool _isAllowListActive) external onlyOwner { isAllowListActive = _isAllowListActive; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"addresses","type":"address[]"},{"internalType":"uint256","name":"numAllowedToMint","type":"uint256"}],"name":"setAllowList","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":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tier","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040819052600060a08190526200001b91600a91620002e4565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620002e4565b5060408051606081018252678ac7230489e8000081526714d1120d7b160000602082015267016345785d8a0000918101919091526200008e90600d90600362000373565b50604080516060810182526104578152610452602082015261043991810191909152620000c090600e906003620003bc565b50610457608052600f805461ffff191660011790556011805460ff19169055348015620000ec57600080fd5b50604080518082018252600b81526a1512535155d49150d2d15160aa1b602080830191825283518085019094526002845261545760f01b9084015281519192916200013a91600091620002e4565b50805162000150906001906020840190620002e4565b5050506200016d620001676200020d60201b60201c565b62000211565b62000191604051806080016040528060418152602001620031cd6041913962000263565b60005b610439811015620001cb57620001b66008620002db60201b62001b891760201c565b80620001c28162000454565b91505062000194565b5060005b6104528110156200020657620001f16007620002db60201b62001b891760201c565b80620001fd8162000454565b915050620001cf565b506200047e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620002d790600c906020840190620002e4565b5050565b80546001019055565b828054620002f29062000417565b90600052602060002090601f01602090048101928262000316576000855562000361565b82601f106200033157805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036157825182559160200191906001019062000344565b506200036f92915062000400565b5090565b82805482825590600052602060002090810192821562000361579160200282015b828111156200036157825182906001600160401b031690559160200191906001019062000394565b82805482825590600052602060002090810192821562000361579160200282015b8281111562000361578251829061ffff16905591602001919060010190620003dd565b5b808211156200036f576000815560010162000401565b600181811c908216806200042c57607f821691505b602082108114156200044e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200047757634e487b7160e01b600052601160045260246000fd5b5060010190565b608051612d2c620004a16000396000818161067d01526110ba0152612d2c6000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b67c25a3116100ab578063ce07c7c81161006f578063ce07c7c81461064b578063d5abeb011461066b578063e0a808531461069f578063e985e9c5146106bf578063f2fde38b1461070857600080fd5b8063b67c25a3146105b1578063b6dfe05d146105cb578063b88d4fde146105eb578063bd85b0391461060b578063c87b56dd1461062b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461053657806395d89b41146105545780639ae963f814610569578063a22cb4651461057c578063a45ba8e71461059c57600080fd5b806370a08231146104a1578063715018a6146104c1578063718bc4af146104d65780637696e088146104f65780637ec4a6591461051657600080fd5b806329fc6bae116101bc5780634fdd43cb116101805780634fdd43cb1461041857806351830227146104385780635503a0e81461045757806362b99ad41461046c5780636352211e1461048157600080fd5b806329fc6bae1461037c5780632b707c71146103965780633ccfd60b146103b657806342842e0e146103cb578063438b6300146103eb57600080fd5b806316ba10e01161020357806316ba10e0146102e657806318160ddd146103065780631b2ef1ca1461032957806323b872dd1461033c57806325beba9d1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461277e565b610728565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077a565b60405161026191906129d2565b34801561029857600080fd5b506102ac6102a7366004612801565b61080c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046126be565b6108a6565b005b3480156102f257600080fd5b506102e46103013660046127b8565b6109bc565b34801561031257600080fd5b5061031b6109fd565b604051908152602001610261565b6102e461033736600461283f565b610a85565b34801561034857600080fd5b506102e46103573660046125dc565b610dc4565b34801561036857600080fd5b506102e461037736600461281a565b610df5565b34801561038857600080fd5b506011546102559060ff1681565b3480156103a257600080fd5b506102e46103b1366004612763565b610f5d565b3480156103c257600080fd5b506102e4610f9a565b3480156103d757600080fd5b506102e46103e63660046125dc565b611038565b3480156103f757600080fd5b5061040b61040636600461258e565b611053565b604051610261919061298e565b34801561042457600080fd5b506102e46104333660046127b8565b611152565b34801561044457600080fd5b50600f5461025590610100900460ff1681565b34801561046357600080fd5b5061027f61118f565b34801561047857600080fd5b5061027f61121d565b34801561048d57600080fd5b506102ac61049c366004612801565b61122a565b3480156104ad57600080fd5b5061031b6104bc36600461258e565b6112a1565b3480156104cd57600080fd5b506102e4611328565b3480156104e257600080fd5b506102e46104f1366004612763565b61135e565b34801561050257600080fd5b506102e461051136600461283f565b61139b565b34801561052257600080fd5b506102e46105313660046127b8565b611438565b34801561054257600080fd5b506006546001600160a01b03166102ac565b34801561056057600080fd5b5061027f611475565b6102e461057736600461283f565b611484565b34801561058857600080fd5b506102e4610597366004612694565b6117a8565b3480156105a857600080fd5b5061027f6117b3565b3480156105bd57600080fd5b50600f546102559060ff1681565b3480156105d757600080fd5b506102e46105e63660046126e8565b6117c0565b3480156105f757600080fd5b506102e4610606366004612618565b61184d565b34801561061757600080fd5b5061031b610626366004612801565b61187f565b34801561063757600080fd5b5061027f610646366004612801565b611903565b34801561065757600080fd5b5061025561066636600461258e565b611a7f565b34801561067757600080fd5b5061031b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106ab57600080fd5b506102e46106ba366004612763565b611aad565b3480156106cb57600080fd5b506102556106da3660046125a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102e461072336600461258e565b611af1565b60006001600160e01b031982166380ac58cd60e01b148061075957506001600160e01b03198216635b5e139f60e01b145b8061077457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461078990612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590612c1e565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b18261122a565b9050806001600160a01b0316836001600160a01b0316141561091f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610881565b336001600160a01b038216148061093b575061093b81336106da565b6109ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610881565b6109b78383611b92565b505050565b6006546001600160a01b031633146109e65760405162461bcd60e51b815260040161088190612a9c565b80516109f990600b906020840190612458565b5050565b6000610a0860095490565b600e600281548110610a1c57610a1c612cb4565b9060005260206000200154610a3060085490565b610a3a9190612bdb565b600e600181548110610a4e57610a4e612cb4565b9060005260206000200154610a6260075490565b610a6c9190612bdb565b610a769190612b90565b610a809190612b90565b905090565b818160008211610aa75760405162461bcd60e51b815260040161088190612a37565b8060031415610b0657600e600281548110610ac457610ac4612cb4565b906000526020600020015482610ad960095490565b610ae39190612b90565b1115610b015760405162461bcd60e51b815260040161088190612ad1565b610bb1565b8060021415610b6057600e600181548110610b2357610b23612cb4565b906000526020600020015482610b3860085490565b610b429190612b90565b1115610b015760405162461bcd60e51b815260040161088190612a65565b600e600081548110610b7457610b74612cb4565b906000526020600020015482610b8960075490565b610b939190612b90565b1115610bb15760405162461bcd60e51b815260040161088190612b59565b600f5460ff1615610c045760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206973206e6f7420616374697665210000000000006044820152606401610881565b8260011415610c975783600d600081548110610c2257610c22612cb4565b9060005260206000200154610c379190612bbc565b341015610c925760405162461bcd60e51b8152602060048201526024808201527f496e73756666696369656e742066756e647320666f7220746965722031206d696044820152636e74212160e01b6064820152608401610881565b610db3565b8260021415610d255783600d600181548110610cb557610cb5612cb4565b9060005260206000200154610cca9190612bbc565b341015610c925760405162461bcd60e51b8152602060048201526024808201527f496e73756666696369656e742066756e647320666f7220746965722032206d696044820152636e74212160e01b6064820152608401610881565b8260031415610db35783600d600281548110610d4357610d43612cb4565b9060005260206000200154610d589190612bbc565b341015610db35760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742066756e647320666f7220746965722033206d696044820152626e742160e81b6064820152608401610881565b610dbe338585611c00565b50505050565b610dce3382611cc8565b610dea5760405162461bcd60e51b815260040161088190612b08565b6109b7838383611dbf565b828160008211610e175760405162461bcd60e51b815260040161088190612a37565b8060031415610e7657600e600281548110610e3457610e34612cb4565b906000526020600020015482610e4960095490565b610e539190612b90565b1115610e715760405162461bcd60e51b815260040161088190612ad1565b610f21565b8060021415610ed057600e600181548110610e9357610e93612cb4565b906000526020600020015482610ea860085490565b610eb29190612b90565b1115610e715760405162461bcd60e51b815260040161088190612a65565b600e600081548110610ee457610ee4612cb4565b906000526020600020015482610ef960075490565b610f039190612b90565b1115610f215760405162461bcd60e51b815260040161088190612b59565b6006546001600160a01b03163314610f4b5760405162461bcd60e51b815260040161088190612a9c565b610f56848685611c00565b5050505050565b6006546001600160a01b03163314610f875760405162461bcd60e51b815260040161088190612a9c565b600f805460ff1916911515919091179055565b6006546001600160a01b03163314610fc45760405162461bcd60e51b815260040161088190612a9c565b6000610fd86006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508061103557600080fd5b50565b6109b78383836040518060200160405280600081525061184d565b60606000611060836112a1565b905060008167ffffffffffffffff81111561107d5761107d612cca565b6040519080825280602002602001820160405280156110a6578160200160208202803683370190505b509050600160005b83811080156110dd57507f00000000000000000000000000000000000000000000000000000000000000008211155b156111485760006110ed8361122a565b9050866001600160a01b0316816001600160a01b03161415611135578284838151811061111c5761111c612cb4565b60209081029190910101528161113181612c59565b9250505b8261113f81612c59565b935050506110ae565b5090949350505050565b6006546001600160a01b0316331461117c5760405162461bcd60e51b815260040161088190612a9c565b80516109f990600c906020840190612458565b600b805461119c90612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890612c1e565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b600a805461119c90612c1e565b6000818152600260205260408120546001600160a01b0316806107745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610881565b60006001600160a01b03821661130c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610881565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113525760405162461bcd60e51b815260040161088190612a9c565b61135c6000611f5b565b565b6006546001600160a01b031633146113885760405162461bcd60e51b815260040161088190612a9c565b6011805460ff1916911515919091179055565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161088190612a9c565b80600114156113f35781600d6000815481106113e3576113e3612cb4565b6000918252602090912001555050565b806002141561141a5781600d60018154811061141157611411612cb4565b50600052505050565b80600314156109f95781600d60028154811061141157611411612cb4565b6006546001600160a01b031633146114625760405162461bcd60e51b815260040161088190612a9c565b80516109f990600a906020840190612458565b60606001805461078990612c1e565b8181600082116114a65760405162461bcd60e51b815260040161088190612a37565b806003141561150557600e6002815481106114c3576114c3612cb4565b9060005260206000200154826114d860095490565b6114e29190612b90565b11156115005760405162461bcd60e51b815260040161088190612ad1565b6115b0565b806002141561155f57600e60018154811061152257611522612cb4565b90600052602060002001548261153760085490565b6115419190612b90565b11156115005760405162461bcd60e51b815260040161088190612a65565b600e60008154811061157357611573612cb4565b90600052602060002001548261158860075490565b6115929190612b90565b11156115b05760405162461bcd60e51b815260040161088190612b59565b60115460ff166116025760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610881565b3360009081526010602052604090205484111561166c5760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610881565b600e611679600185612bdb565b8154811061168957611689612cb4565b90600052602060002001548461169e8561187f565b6116a89190612b90565b11156116f65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610881565b3484600d611705600187612bdb565b8154811061171557611715612cb4565b906000526020600020015461172a9190612bbc565b11156117785760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610881565b3360009081526010602052604081208054869290611797908490612bdb565b90915550610dbe9050338585611c00565b6109f9338383611fad565b600c805461119c90612c1e565b6006546001600160a01b031633146117ea5760405162461bcd60e51b815260040161088190612a9c565b60005b82811015610dbe57816010600086868581811061180c5761180c612cb4565b9050602002016020810190611821919061258e565b6001600160a01b031681526020810191909152604001600020558061184581612c59565b9150506117ed565b6118573383611cc8565b6118735760405162461bcd60e51b815260040161088190612b08565b610dbe8484848461207c565b600081600114156118bc57600e60018154811061189e5761189e612cb4565b90600052602060002001546118b260075490565b6107749190612bdb565b81600214156118ed57600e6002815481106118d9576118d9612cb4565b90600052602060002001546118b260085490565b81600314156118fe57600954610774565b919050565b6000818152600260205260409020546060906001600160a01b031661197f5760405162461bcd60e51b815260206004820152602c60248201527f54696d65777265636b65643a2055524920717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610881565b600f54610100900460ff16611a2057600c805461199b90612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790612c1e565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b50505050509050919050565b6000611a2a6120af565b90506000815111611a4a5760405180602001604052806000815250611a78565b80611a54846120be565b600b604051602001611a689392919061288d565b6040516020818303038152906040525b9392505050565b6001600160a01b03811660009081526010602052604081205415611aa557506001919050565b506000919050565b6006546001600160a01b03163314611ad75760405162461bcd60e51b815260040161088190612a9c565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611b1b5760405162461bcd60e51b815260040161088190612a9c565b6001600160a01b038116611b805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61103581611f5b565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bc78261122a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8060011415611c465760005b82811015610dbe57611c22600780546001019055565b611c3484611c2f60075490565b6121bc565b80611c3e81612c59565b915050611c0c565b8060021415611c875760005b82811015610dbe57611c68600880546001019055565b611c7584611c2f60085490565b80611c7f81612c59565b915050611c52565b80600314156109b75760005b82811015610dbe57611ca9600980546001019055565b611cb684611c2f60095490565b80611cc081612c59565b915050611c93565b6000818152600260205260408120546001600160a01b0316611d415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610881565b6000611d4c8361122a565b9050806001600160a01b0316846001600160a01b03161480611d875750836001600160a01b0316611d7c8461080c565b6001600160a01b0316145b80611db757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dd28261122a565b6001600160a01b031614611e365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610881565b6001600160a01b038216611e985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610881565b611ea3600082611b92565b6001600160a01b0383166000908152600360205260408120805460019290611ecc908490612bdb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611efa908490612b90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561200f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610881565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612087848484611dbf565b612093848484846121d6565b610dbe5760405162461bcd60e51b8152600401610881906129e5565b6060600a805461078990612c1e565b6060816120e25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561210c57806120f681612c59565b91506121059050600a83612ba8565b91506120e6565b60008167ffffffffffffffff81111561212757612127612cca565b6040519080825280601f01601f191660200182016040528015612151576020820181803683370190505b5090505b8415611db757612166600183612bdb565b9150612173600a86612c74565b61217e906030612b90565b60f81b81838151811061219357612193612cb4565b60200101906001600160f81b031916908160001a9053506121b5600a86612ba8565b9450612155565b6109f98282604051806020016040528060008152506122e3565b60006001600160a01b0384163b156122d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061221a903390899088908890600401612951565b602060405180830381600087803b15801561223457600080fd5b505af1925050508015612264575060408051601f3d908101601f191682019092526122619181019061279b565b60015b6122be573d808015612292576040519150601f19603f3d011682016040523d82523d6000602084013e612297565b606091505b5080516122b65760405162461bcd60e51b8152600401610881906129e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611db7565b506001949350505050565b6122ed8383612316565b6122fa60008484846121d6565b6109b75760405162461bcd60e51b8152600401610881906129e5565b6001600160a01b03821661236c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610881565b6000818152600260205260409020546001600160a01b0316156123d15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610881565b6001600160a01b03821660009081526003602052604081208054600192906123fa908490612b90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246490612c1e565b90600052602060002090601f01602090048101928261248657600085556124cc565b82601f1061249f57805160ff19168380011785556124cc565b828001600101855582156124cc579182015b828111156124cc5782518255916020019190600101906124b1565b506124d89291506124dc565b5090565b5b808211156124d857600081556001016124dd565b600067ffffffffffffffff8084111561250c5761250c612cca565b604051601f8501601f19908116603f0116810190828211818310171561253457612534612cca565b8160405280935085815286868601111561254d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118fe57600080fd5b803580151581146118fe57600080fd5b6000602082840312156125a057600080fd5b611a7882612567565b600080604083850312156125bc57600080fd5b6125c583612567565b91506125d360208401612567565b90509250929050565b6000806000606084860312156125f157600080fd5b6125fa84612567565b925061260860208501612567565b9150604084013590509250925092565b6000806000806080858703121561262e57600080fd5b61263785612567565b935061264560208601612567565b925060408501359150606085013567ffffffffffffffff81111561266857600080fd5b8501601f8101871361267957600080fd5b612688878235602084016124f1565b91505092959194509250565b600080604083850312156126a757600080fd5b6126b083612567565b91506125d36020840161257e565b600080604083850312156126d157600080fd5b6126da83612567565b946020939093013593505050565b6000806000604084860312156126fd57600080fd5b833567ffffffffffffffff8082111561271557600080fd5b818601915086601f83011261272957600080fd5b81358181111561273857600080fd5b8760208260051b850101111561274d57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561277557600080fd5b611a788261257e565b60006020828403121561279057600080fd5b8135611a7881612ce0565b6000602082840312156127ad57600080fd5b8151611a7881612ce0565b6000602082840312156127ca57600080fd5b813567ffffffffffffffff8111156127e157600080fd5b8201601f810184136127f257600080fd5b611db7848235602084016124f1565b60006020828403121561281357600080fd5b5035919050565b60008060006060848603121561282f57600080fd5b8335925061260860208501612567565b6000806040838503121561285257600080fd5b50508035926020909101359150565b60008151808452612879816020860160208601612bf2565b601f01601f19169290920160200192915050565b6000845160206128a08285838a01612bf2565b8551918401916128b38184848a01612bf2565b8554920191600090600181811c90808316806128d057607f831692505b8583108114156128ee57634e487b7160e01b85526022600452602485fd5b808015612902576001811461291357612940565b60ff19851688528388019550612940565b60008b81526020902060005b858110156129385781548a82015290840190880161291f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061298490830184612861565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129c6578351835292840192918401916001016129aa565b50909695505050505050565b602081526000611a786020830184612861565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f4d617820737570706c79206f6620546965722032206578636565646564210000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d617820737570706c79206f6620546965722033206578636565646564210000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601e908201527f4d617820737570706c79206f6620546965722031206578636565646564210000604082015260600190565b60008219821115612ba357612ba3612c88565b500190565b600082612bb757612bb7612c9e565b500490565b6000816000190483118215151615612bd657612bd6612c88565b500290565b600082821015612bed57612bed612c88565b500390565b60005b83811015612c0d578181015183820152602001612bf5565b83811115610dbe5750506000910152565b600181811c90821680612c3257607f821691505b60208210811415612c5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6d57612c6d612c88565b5060010190565b600082612c8357612c83612c9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461103557600080fdfea26469706673582212203f6137b95898f00952d2995c86099a0fe21bee61f604388519d121fa8ab3335c64736f6c63430008070033697066733a2f2f516d6465674b42715a56424b43434a7673623770624735567336787a795472776d696b75316d4b4b7855365131682f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102305760003560e01c806370a082311161012e578063b67c25a3116100ab578063ce07c7c81161006f578063ce07c7c81461064b578063d5abeb011461066b578063e0a808531461069f578063e985e9c5146106bf578063f2fde38b1461070857600080fd5b8063b67c25a3146105b1578063b6dfe05d146105cb578063b88d4fde146105eb578063bd85b0391461060b578063c87b56dd1461062b57600080fd5b80638da5cb5b116100f25780638da5cb5b1461053657806395d89b41146105545780639ae963f814610569578063a22cb4651461057c578063a45ba8e71461059c57600080fd5b806370a08231146104a1578063715018a6146104c1578063718bc4af146104d65780637696e088146104f65780637ec4a6591461051657600080fd5b806329fc6bae116101bc5780634fdd43cb116101805780634fdd43cb1461041857806351830227146104385780635503a0e81461045757806362b99ad41461046c5780636352211e1461048157600080fd5b806329fc6bae1461037c5780632b707c71146103965780633ccfd60b146103b657806342842e0e146103cb578063438b6300146103eb57600080fd5b806316ba10e01161020357806316ba10e0146102e657806318160ddd146103065780631b2ef1ca1461032957806323b872dd1461033c57806325beba9d1461035c57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b5061025561025036600461277e565b610728565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61077a565b60405161026191906129d2565b34801561029857600080fd5b506102ac6102a7366004612801565b61080c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046126be565b6108a6565b005b3480156102f257600080fd5b506102e46103013660046127b8565b6109bc565b34801561031257600080fd5b5061031b6109fd565b604051908152602001610261565b6102e461033736600461283f565b610a85565b34801561034857600080fd5b506102e46103573660046125dc565b610dc4565b34801561036857600080fd5b506102e461037736600461281a565b610df5565b34801561038857600080fd5b506011546102559060ff1681565b3480156103a257600080fd5b506102e46103b1366004612763565b610f5d565b3480156103c257600080fd5b506102e4610f9a565b3480156103d757600080fd5b506102e46103e63660046125dc565b611038565b3480156103f757600080fd5b5061040b61040636600461258e565b611053565b604051610261919061298e565b34801561042457600080fd5b506102e46104333660046127b8565b611152565b34801561044457600080fd5b50600f5461025590610100900460ff1681565b34801561046357600080fd5b5061027f61118f565b34801561047857600080fd5b5061027f61121d565b34801561048d57600080fd5b506102ac61049c366004612801565b61122a565b3480156104ad57600080fd5b5061031b6104bc36600461258e565b6112a1565b3480156104cd57600080fd5b506102e4611328565b3480156104e257600080fd5b506102e46104f1366004612763565b61135e565b34801561050257600080fd5b506102e461051136600461283f565b61139b565b34801561052257600080fd5b506102e46105313660046127b8565b611438565b34801561054257600080fd5b506006546001600160a01b03166102ac565b34801561056057600080fd5b5061027f611475565b6102e461057736600461283f565b611484565b34801561058857600080fd5b506102e4610597366004612694565b6117a8565b3480156105a857600080fd5b5061027f6117b3565b3480156105bd57600080fd5b50600f546102559060ff1681565b3480156105d757600080fd5b506102e46105e63660046126e8565b6117c0565b3480156105f757600080fd5b506102e4610606366004612618565b61184d565b34801561061757600080fd5b5061031b610626366004612801565b61187f565b34801561063757600080fd5b5061027f610646366004612801565b611903565b34801561065757600080fd5b5061025561066636600461258e565b611a7f565b34801561067757600080fd5b5061031b7f000000000000000000000000000000000000000000000000000000000000045781565b3480156106ab57600080fd5b506102e46106ba366004612763565b611aad565b3480156106cb57600080fd5b506102556106da3660046125a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102e461072336600461258e565b611af1565b60006001600160e01b031982166380ac58cd60e01b148061075957506001600160e01b03198216635b5e139f60e01b145b8061077457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461078990612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590612c1e565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b18261122a565b9050806001600160a01b0316836001600160a01b0316141561091f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610881565b336001600160a01b038216148061093b575061093b81336106da565b6109ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610881565b6109b78383611b92565b505050565b6006546001600160a01b031633146109e65760405162461bcd60e51b815260040161088190612a9c565b80516109f990600b906020840190612458565b5050565b6000610a0860095490565b600e600281548110610a1c57610a1c612cb4565b9060005260206000200154610a3060085490565b610a3a9190612bdb565b600e600181548110610a4e57610a4e612cb4565b9060005260206000200154610a6260075490565b610a6c9190612bdb565b610a769190612b90565b610a809190612b90565b905090565b818160008211610aa75760405162461bcd60e51b815260040161088190612a37565b8060031415610b0657600e600281548110610ac457610ac4612cb4565b906000526020600020015482610ad960095490565b610ae39190612b90565b1115610b015760405162461bcd60e51b815260040161088190612ad1565b610bb1565b8060021415610b6057600e600181548110610b2357610b23612cb4565b906000526020600020015482610b3860085490565b610b429190612b90565b1115610b015760405162461bcd60e51b815260040161088190612a65565b600e600081548110610b7457610b74612cb4565b906000526020600020015482610b8960075490565b610b939190612b90565b1115610bb15760405162461bcd60e51b815260040161088190612b59565b600f5460ff1615610c045760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206973206e6f7420616374697665210000000000006044820152606401610881565b8260011415610c975783600d600081548110610c2257610c22612cb4565b9060005260206000200154610c379190612bbc565b341015610c925760405162461bcd60e51b8152602060048201526024808201527f496e73756666696369656e742066756e647320666f7220746965722031206d696044820152636e74212160e01b6064820152608401610881565b610db3565b8260021415610d255783600d600181548110610cb557610cb5612cb4565b9060005260206000200154610cca9190612bbc565b341015610c925760405162461bcd60e51b8152602060048201526024808201527f496e73756666696369656e742066756e647320666f7220746965722032206d696044820152636e74212160e01b6064820152608401610881565b8260031415610db35783600d600281548110610d4357610d43612cb4565b9060005260206000200154610d589190612bbc565b341015610db35760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742066756e647320666f7220746965722033206d696044820152626e742160e81b6064820152608401610881565b610dbe338585611c00565b50505050565b610dce3382611cc8565b610dea5760405162461bcd60e51b815260040161088190612b08565b6109b7838383611dbf565b828160008211610e175760405162461bcd60e51b815260040161088190612a37565b8060031415610e7657600e600281548110610e3457610e34612cb4565b906000526020600020015482610e4960095490565b610e539190612b90565b1115610e715760405162461bcd60e51b815260040161088190612ad1565b610f21565b8060021415610ed057600e600181548110610e9357610e93612cb4565b906000526020600020015482610ea860085490565b610eb29190612b90565b1115610e715760405162461bcd60e51b815260040161088190612a65565b600e600081548110610ee457610ee4612cb4565b906000526020600020015482610ef960075490565b610f039190612b90565b1115610f215760405162461bcd60e51b815260040161088190612b59565b6006546001600160a01b03163314610f4b5760405162461bcd60e51b815260040161088190612a9c565b610f56848685611c00565b5050505050565b6006546001600160a01b03163314610f875760405162461bcd60e51b815260040161088190612a9c565b600f805460ff1916911515919091179055565b6006546001600160a01b03163314610fc45760405162461bcd60e51b815260040161088190612a9c565b6000610fd86006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508061103557600080fd5b50565b6109b78383836040518060200160405280600081525061184d565b60606000611060836112a1565b905060008167ffffffffffffffff81111561107d5761107d612cca565b6040519080825280602002602001820160405280156110a6578160200160208202803683370190505b509050600160005b83811080156110dd57507f00000000000000000000000000000000000000000000000000000000000004578211155b156111485760006110ed8361122a565b9050866001600160a01b0316816001600160a01b03161415611135578284838151811061111c5761111c612cb4565b60209081029190910101528161113181612c59565b9250505b8261113f81612c59565b935050506110ae565b5090949350505050565b6006546001600160a01b0316331461117c5760405162461bcd60e51b815260040161088190612a9c565b80516109f990600c906020840190612458565b600b805461119c90612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890612c1e565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b600a805461119c90612c1e565b6000818152600260205260408120546001600160a01b0316806107745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610881565b60006001600160a01b03821661130c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610881565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113525760405162461bcd60e51b815260040161088190612a9c565b61135c6000611f5b565b565b6006546001600160a01b031633146113885760405162461bcd60e51b815260040161088190612a9c565b6011805460ff1916911515919091179055565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161088190612a9c565b80600114156113f35781600d6000815481106113e3576113e3612cb4565b6000918252602090912001555050565b806002141561141a5781600d60018154811061141157611411612cb4565b50600052505050565b80600314156109f95781600d60028154811061141157611411612cb4565b6006546001600160a01b031633146114625760405162461bcd60e51b815260040161088190612a9c565b80516109f990600a906020840190612458565b60606001805461078990612c1e565b8181600082116114a65760405162461bcd60e51b815260040161088190612a37565b806003141561150557600e6002815481106114c3576114c3612cb4565b9060005260206000200154826114d860095490565b6114e29190612b90565b11156115005760405162461bcd60e51b815260040161088190612ad1565b6115b0565b806002141561155f57600e60018154811061152257611522612cb4565b90600052602060002001548261153760085490565b6115419190612b90565b11156115005760405162461bcd60e51b815260040161088190612a65565b600e60008154811061157357611573612cb4565b90600052602060002001548261158860075490565b6115929190612b90565b11156115b05760405162461bcd60e51b815260040161088190612b59565b60115460ff166116025760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610881565b3360009081526010602052604090205484111561166c5760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610881565b600e611679600185612bdb565b8154811061168957611689612cb4565b90600052602060002001548461169e8561187f565b6116a89190612b90565b11156116f65760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610881565b3484600d611705600187612bdb565b8154811061171557611715612cb4565b906000526020600020015461172a9190612bbc565b11156117785760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610881565b3360009081526010602052604081208054869290611797908490612bdb565b90915550610dbe9050338585611c00565b6109f9338383611fad565b600c805461119c90612c1e565b6006546001600160a01b031633146117ea5760405162461bcd60e51b815260040161088190612a9c565b60005b82811015610dbe57816010600086868581811061180c5761180c612cb4565b9050602002016020810190611821919061258e565b6001600160a01b031681526020810191909152604001600020558061184581612c59565b9150506117ed565b6118573383611cc8565b6118735760405162461bcd60e51b815260040161088190612b08565b610dbe8484848461207c565b600081600114156118bc57600e60018154811061189e5761189e612cb4565b90600052602060002001546118b260075490565b6107749190612bdb565b81600214156118ed57600e6002815481106118d9576118d9612cb4565b90600052602060002001546118b260085490565b81600314156118fe57600954610774565b919050565b6000818152600260205260409020546060906001600160a01b031661197f5760405162461bcd60e51b815260206004820152602c60248201527f54696d65777265636b65643a2055524920717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610881565b600f54610100900460ff16611a2057600c805461199b90612c1e565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790612c1e565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b50505050509050919050565b6000611a2a6120af565b90506000815111611a4a5760405180602001604052806000815250611a78565b80611a54846120be565b600b604051602001611a689392919061288d565b6040516020818303038152906040525b9392505050565b6001600160a01b03811660009081526010602052604081205415611aa557506001919050565b506000919050565b6006546001600160a01b03163314611ad75760405162461bcd60e51b815260040161088190612a9c565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611b1b5760405162461bcd60e51b815260040161088190612a9c565b6001600160a01b038116611b805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61103581611f5b565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bc78261122a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8060011415611c465760005b82811015610dbe57611c22600780546001019055565b611c3484611c2f60075490565b6121bc565b80611c3e81612c59565b915050611c0c565b8060021415611c875760005b82811015610dbe57611c68600880546001019055565b611c7584611c2f60085490565b80611c7f81612c59565b915050611c52565b80600314156109b75760005b82811015610dbe57611ca9600980546001019055565b611cb684611c2f60095490565b80611cc081612c59565b915050611c93565b6000818152600260205260408120546001600160a01b0316611d415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610881565b6000611d4c8361122a565b9050806001600160a01b0316846001600160a01b03161480611d875750836001600160a01b0316611d7c8461080c565b6001600160a01b0316145b80611db757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dd28261122a565b6001600160a01b031614611e365760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610881565b6001600160a01b038216611e985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610881565b611ea3600082611b92565b6001600160a01b0383166000908152600360205260408120805460019290611ecc908490612bdb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611efa908490612b90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561200f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610881565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612087848484611dbf565b612093848484846121d6565b610dbe5760405162461bcd60e51b8152600401610881906129e5565b6060600a805461078990612c1e565b6060816120e25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561210c57806120f681612c59565b91506121059050600a83612ba8565b91506120e6565b60008167ffffffffffffffff81111561212757612127612cca565b6040519080825280601f01601f191660200182016040528015612151576020820181803683370190505b5090505b8415611db757612166600183612bdb565b9150612173600a86612c74565b61217e906030612b90565b60f81b81838151811061219357612193612cb4565b60200101906001600160f81b031916908160001a9053506121b5600a86612ba8565b9450612155565b6109f98282604051806020016040528060008152506122e3565b60006001600160a01b0384163b156122d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061221a903390899088908890600401612951565b602060405180830381600087803b15801561223457600080fd5b505af1925050508015612264575060408051601f3d908101601f191682019092526122619181019061279b565b60015b6122be573d808015612292576040519150601f19603f3d011682016040523d82523d6000602084013e612297565b606091505b5080516122b65760405162461bcd60e51b8152600401610881906129e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611db7565b506001949350505050565b6122ed8383612316565b6122fa60008484846121d6565b6109b75760405162461bcd60e51b8152600401610881906129e5565b6001600160a01b03821661236c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610881565b6000818152600260205260409020546001600160a01b0316156123d15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610881565b6001600160a01b03821660009081526003602052604081208054600192906123fa908490612b90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246490612c1e565b90600052602060002090601f01602090048101928261248657600085556124cc565b82601f1061249f57805160ff19168380011785556124cc565b828001600101855582156124cc579182015b828111156124cc5782518255916020019190600101906124b1565b506124d89291506124dc565b5090565b5b808211156124d857600081556001016124dd565b600067ffffffffffffffff8084111561250c5761250c612cca565b604051601f8501601f19908116603f0116810190828211818310171561253457612534612cca565b8160405280935085815286868601111561254d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118fe57600080fd5b803580151581146118fe57600080fd5b6000602082840312156125a057600080fd5b611a7882612567565b600080604083850312156125bc57600080fd5b6125c583612567565b91506125d360208401612567565b90509250929050565b6000806000606084860312156125f157600080fd5b6125fa84612567565b925061260860208501612567565b9150604084013590509250925092565b6000806000806080858703121561262e57600080fd5b61263785612567565b935061264560208601612567565b925060408501359150606085013567ffffffffffffffff81111561266857600080fd5b8501601f8101871361267957600080fd5b612688878235602084016124f1565b91505092959194509250565b600080604083850312156126a757600080fd5b6126b083612567565b91506125d36020840161257e565b600080604083850312156126d157600080fd5b6126da83612567565b946020939093013593505050565b6000806000604084860312156126fd57600080fd5b833567ffffffffffffffff8082111561271557600080fd5b818601915086601f83011261272957600080fd5b81358181111561273857600080fd5b8760208260051b850101111561274d57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561277557600080fd5b611a788261257e565b60006020828403121561279057600080fd5b8135611a7881612ce0565b6000602082840312156127ad57600080fd5b8151611a7881612ce0565b6000602082840312156127ca57600080fd5b813567ffffffffffffffff8111156127e157600080fd5b8201601f810184136127f257600080fd5b611db7848235602084016124f1565b60006020828403121561281357600080fd5b5035919050565b60008060006060848603121561282f57600080fd5b8335925061260860208501612567565b6000806040838503121561285257600080fd5b50508035926020909101359150565b60008151808452612879816020860160208601612bf2565b601f01601f19169290920160200192915050565b6000845160206128a08285838a01612bf2565b8551918401916128b38184848a01612bf2565b8554920191600090600181811c90808316806128d057607f831692505b8583108114156128ee57634e487b7160e01b85526022600452602485fd5b808015612902576001811461291357612940565b60ff19851688528388019550612940565b60008b81526020902060005b858110156129385781548a82015290840190880161291f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061298490830184612861565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129c6578351835292840192918401916001016129aa565b50909695505050505050565b602081526000611a786020830184612861565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f4d617820737570706c79206f6620546965722032206578636565646564210000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d617820737570706c79206f6620546965722033206578636565646564210000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601e908201527f4d617820737570706c79206f6620546965722031206578636565646564210000604082015260600190565b60008219821115612ba357612ba3612c88565b500190565b600082612bb757612bb7612c9e565b500490565b6000816000190483118215151615612bd657612bd6612c88565b500290565b600082821015612bed57612bed612c88565b500390565b60005b83811015612c0d578181015183820152602001612bf5565b83811115610dbe5750506000910152565b600181811c90821680612c3257607f821691505b60208210811415612c5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6d57612c6d612c88565b5060010190565b600082612c8357612c83612c9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461103557600080fdfea26469706673582212203f6137b95898f00952d2995c86099a0fe21bee61f604388519d121fa8ab3335c64736f6c63430008070033
Deployed Bytecode Sourcemap
37790:11284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20853:305;;;;;;;;;;-1:-1:-1;20853:305:0;;;;;:::i;:::-;;:::i;:::-;;;9081:14:1;;9074:22;9056:41;;9044:2;9029:18;20853:305:0;;;;;;;;21798:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23357:221::-;;;;;;;;;;-1:-1:-1;23357:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7742:32:1;;;7724:51;;7712:2;7697:18;23357:221:0;7578:203:1;22880:411:0;;;;;;;;;;-1:-1:-1;22880:411:0;;;;;:::i;:::-;;:::i;:::-;;45989:106;;;;;;;;;;-1:-1:-1;45989:106:0;;;;;:::i;:::-;;:::i;39875:208::-;;;;;;;;;;;;;:::i;:::-;;;20325:25:1;;;20313:2;20298:18;39875:208:0;20179:177:1;41023:643:0;;;;;;:::i;:::-;;:::i;24107:339::-;;;;;;;;;;-1:-1:-1;24107:339:0;;;;;:::i;:::-;;:::i;42947:190::-;;;;;;;;;;-1:-1:-1;42947:190:0;;;;;:::i;:::-;;:::i;38458:37::-;;;;;;;;;;-1:-1:-1;38458:37:0;;;;;;;;46249:103;;;;;;;;;;-1:-1:-1;46249:103:0;;;;;:::i;:::-;;:::i;46437:147::-;;;;;;;;;;;;;:::i;24517:185::-;;;;;;;;;;-1:-1:-1;24517:185:0;;;;;:::i;:::-;;:::i;43273:695::-;;;;;;;;;;-1:-1:-1;43273:695:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45460:138::-;;;;;;;;;;-1:-1:-1;45460:138:0;;;;;:::i;:::-;;:::i;38366:28::-;;;;;;;;;;-1:-1:-1;38366:28:0;;;;;;;;;;;38079:33;;;;;;;;;;;;;:::i;38044:28::-;;;;;;;;;;;;;:::i;21492:239::-;;;;;;;;;;-1:-1:-1;21492:239:0;;;;;:::i;:::-;;:::i;21222:208::-;;;;;;;;;;-1:-1:-1;21222:208:0;;;;;:::i;:::-;;:::i;36973:103::-;;;;;;;;;;;;;:::i;48936:135::-;;;;;;;;;;-1:-1:-1;48936:135:0;;;;;:::i;:::-;;:::i;45008:288::-;;;;;;;;;;-1:-1:-1;45008:288:0;;;;;:::i;:::-;;:::i;45738:106::-;;;;;;;;;;-1:-1:-1;45738:106:0;;;;;:::i;:::-;;:::i;36322:87::-;;;;;;;;;;-1:-1:-1;36395:6:0;;-1:-1:-1;;;;;36395:6:0;36322:87;;21967:104;;;;;;;;;;;;;:::i;42001:601::-;;;;;;:::i;:::-;;:::i;23650:155::-;;;;;;;;;;-1:-1:-1;23650:155:0;;;;;:::i;:::-;;:::i;38119:31::-;;;;;;;;;;;;;:::i;38324:35::-;;;;;;;;;;-1:-1:-1;38324:35:0;;;;;;;;48098:232;;;;;;;;;;-1:-1:-1;48098:232:0;;;;;:::i;:::-;;:::i;24773:328::-;;;;;;;;;;-1:-1:-1;24773:328:0;;;;;:::i;:::-;;:::i;40336:368::-;;;;;;;;;;-1:-1:-1;40336:368:0;;;;;:::i;:::-;;:::i;43976:553::-;;;;;;;;;;-1:-1:-1;43976:553:0;;;;;:::i;:::-;;:::i;48578:176::-;;;;;;;;;;-1:-1:-1;48578:176:0;;;;;:::i;:::-;;:::i;38273:42::-;;;;;;;;;;;;;;;44693:87;;;;;;;;;;-1:-1:-1;44693:87:0;;;;;:::i;:::-;;:::i;23876:164::-;;;;;;;;;;-1:-1:-1;23876:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23997:25:0;;;23973:4;23997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23876:164;37231:201;;;;;;;;;;-1:-1:-1;37231:201:0;;;;;:::i;:::-;;:::i;20853:305::-;20955:4;-1:-1:-1;;;;;;20992:40:0;;-1:-1:-1;;;20992:40:0;;:105;;-1:-1:-1;;;;;;;21049:48:0;;-1:-1:-1;;;21049:48:0;20992:105;:158;;;-1:-1:-1;;;;;;;;;;19494:40:0;;;21114:36;20972:178;20853:305;-1:-1:-1;;20853:305:0:o;21798:100::-;21852:13;21885:5;21878:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21798:100;:::o;23357:221::-;23433:7;26700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26700:16:0;23453:73;;;;-1:-1:-1;;;23453:73:0;;16091:2:1;23453:73:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;-1:-1:-1;;;16220:18:1;;;16213:42;16272:19;;23453:73:0;;;;;;;;;-1:-1:-1;23546:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23546:24:0;;23357:221::o;22880:411::-;22961:13;22977:23;22992:7;22977:14;:23::i;:::-;22961:39;;23025:5;-1:-1:-1;;;;;23019:11:0;:2;-1:-1:-1;;;;;23019:11:0;;;23011:57;;;;-1:-1:-1;;;23011:57:0;;16865:2:1;23011:57:0;;;16847:21:1;16904:2;16884:18;;;16877:30;16943:34;16923:18;;;16916:62;-1:-1:-1;;;16994:18:1;;;16987:31;17035:19;;23011:57:0;16663:397:1;23011:57:0;16443:10;-1:-1:-1;;;;;23103:21:0;;;;:62;;-1:-1:-1;23128:37:0;23145:5;16443:10;23876:164;:::i;23128:37::-;23081:168;;;;-1:-1:-1;;;23081:168:0;;14125:2:1;23081:168:0;;;14107:21:1;14164:2;14144:18;;;14137:30;14203:34;14183:18;;;14176:62;14274:26;14254:18;;;14247:54;14318:19;;23081:168:0;13923:420:1;23081:168:0;23262:21;23271:2;23275:7;23262:8;:21::i;:::-;22950:341;22880:411;;:::o;45989:106::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;46065:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45989:106:::0;:::o;39875:208::-;39919:20;40053:21;:11;34847:14;;34755:114;40053:21;40031:15;40047:1;40031:18;;;;;;;;:::i;:::-;;;;;;;;;40007:21;:11;34847:14;;34755:114;40007:21;:42;;;;:::i;:::-;39984:15;40000:1;39984:18;;;;;;;;:::i;:::-;;;;;;;;;39960:21;:11;34847:14;;34755:114;39960:21;:42;;;;:::i;:::-;39959:91;;;;:::i;:::-;:115;;;;:::i;:::-;39952:122;;39875:208;:::o;41023:643::-;41103:11;41116:5;39207:1;39193:11;:15;39185:48;;;;-1:-1:-1;;;39185:48:0;;;;;;;:::i;:::-;39247:5;39256:1;39247:10;39244:430;;;39317:15;39333:1;39317:18;;;;;;;;:::i;:::-;;;;;;;;;39302:11;39278:21;:11;34847:14;;34755:114;39278:21;:35;;;;:::i;:::-;:57;;39270:100;;;;-1:-1:-1;;;39270:100:0;;;;;;;:::i;:::-;39244:430;;;39401:5;39410:1;39401:10;39397:277;;;39471:15;39487:1;39471:18;;;;;;;;:::i;:::-;;;;;;;;;39456:11;39432:21;:11;34847:14;;34755:114;39432:21;:35;;;;:::i;:::-;:57;;39424:100;;;;-1:-1:-1;;;39424:100:0;;;;;;;:::i;39397:277::-;39609:15;39625:1;39609:18;;;;;;;;:::i;:::-;;;;;;;;;39594:11;39570:21;:11;34847:14;;34755:114;39570:21;:35;;;;:::i;:::-;:57;;39562:100;;;;-1:-1:-1;;;39562:100:0;;;;;;;:::i;:::-;41143:16:::1;::::0;::::1;;41142:17;41134:56;;;::::0;-1:-1:-1;;;41134:56:0;;13357:2:1;41134:56:0::1;::::0;::::1;13339:21:1::0;13396:2;13376:18;;;13369:30;13435:28;13415:18;;;13408:56;13481:18;;41134:56:0::1;13155:350:1::0;41134:56:0::1;41204:5;41213:1;41204:10;41201:406;;;41262:11;41247:9;41257:1;41247:12;;;;;;;;:::i;:::-;;;;;;;;;:26;;;;:::i;:::-;41234:9;:39;;41226:88;;;::::0;-1:-1:-1;;;41226:88:0;;18029:2:1;41226:88:0::1;::::0;::::1;18011:21:1::0;18068:2;18048:18;;;18041:30;18107:34;18087:18;;;18080:62;-1:-1:-1;;;18158:18:1;;;18151:34;18202:19;;41226:88:0::1;17827:400:1::0;41226:88:0::1;41201:406;;;41344:5;41353:1;41344:10;41341:266;;;41403:11;41388:9;41398:1;41388:12;;;;;;;;:::i;:::-;;;;;;;;;:26;;;;:::i;:::-;41375:9;:39;;41367:88;;;::::0;-1:-1:-1;;;41367:88:0;;11127:2:1;41367:88:0::1;::::0;::::1;11109:21:1::0;11166:2;11146:18;;;11139:30;11205:34;11185:18;;;11178:62;-1:-1:-1;;;11256:18:1;;;11249:34;11300:19;;41367:88:0::1;10925:400:1::0;41341:266:0::1;41485:5;41494:1;41485:10;41482:125;;;41544:11;41529:9;41539:1;41529:12;;;;;;;;:::i;:::-;;;;;;;;;:26;;;;:::i;:::-;41516:9;:39;;41508:87;;;::::0;-1:-1:-1;;;41508:87:0;;19977:2:1;41508:87:0::1;::::0;::::1;19959:21:1::0;20016:2;19996:18;;;19989:30;20055:34;20035:18;;;20028:62;-1:-1:-1;;;20106:18:1;;;20099:33;20149:19;;41508:87:0::1;19775:399:1::0;41508:87:0::1;41617:41;41627:10;41639:11;41652:5;41617:9;:41::i;:::-;41023:643:::0;;;;:::o;24107:339::-;24302:41;16443:10;24335:7;24302:18;:41::i;:::-;24294:103;;;;-1:-1:-1;;;24294:103:0;;;;;;;:::i;:::-;24410:28;24420:4;24426:2;24430:7;24410:9;:28::i;42947:190::-;43048:11;43061:5;39207:1;39193:11;:15;39185:48;;;;-1:-1:-1;;;39185:48:0;;;;;;;:::i;:::-;39247:5;39256:1;39247:10;39244:430;;;39317:15;39333:1;39317:18;;;;;;;;:::i;:::-;;;;;;;;;39302:11;39278:21;:11;34847:14;;34755:114;39278:21;:35;;;;:::i;:::-;:57;;39270:100;;;;-1:-1:-1;;;39270:100:0;;;;;;;:::i;:::-;39244:430;;;39401:5;39410:1;39401:10;39397:277;;;39471:15;39487:1;39471:18;;;;;;;;:::i;:::-;;;;;;;;;39456:11;39432:21;:11;34847:14;;34755:114;39432:21;:35;;;;:::i;:::-;:57;;39424:100;;;;-1:-1:-1;;;39424:100:0;;;;;;;:::i;39397:277::-;39609:15;39625:1;39609:18;;;;;;;;:::i;:::-;;;;;;;;;39594:11;39570:21;:11;34847:14;;34755:114;39570:21;:35;;;;:::i;:::-;:57;;39562:100;;;;-1:-1:-1;;;39562:100:0;;;;;;;:::i;:::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23:::1;36534:68;;;;-1:-1:-1::0;;;36534:68:0::1;;;;;;;:::i;:::-;43089:40:::2;43099:9;43110:11;43123:5;43089:9;:40::i;:::-;42947:190:::0;;;;;:::o;46249:103::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;46319:16:::1;:25:::0;;-1:-1:-1;;46319:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46249:103::o;46437:147::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;46486:7:::1;46507;36395:6:::0;;-1:-1:-1;;;;;36395:6:0;;36322:87;46507:7:::1;-1:-1:-1::0;;;;;46499:21:0::1;46528;46499:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46485:69;;;46573:2;46565:11;;;::::0;::::1;;46474:110;46437:147::o:0;24517:185::-;24655:39;24672:4;24678:2;24682:7;24655:39;;;;;;;;;;;;:16;:39::i;43273:695::-;43360:16;43394:23;43420:17;43430:6;43420:9;:17::i;:::-;43394:43;;43448:30;43495:15;43481:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43481:30:0;-1:-1:-1;43448:63:0;-1:-1:-1;43547:1:0;43522:22;43599:329;43624:15;43606;:33;:64;;;;;43661:9;43643:14;:27;;43606:64;43599:329;;;43683:25;43711:23;43719:14;43711:7;:23::i;:::-;43683:51;;43772:6;-1:-1:-1;;;;;43751:27:0;:17;-1:-1:-1;;;;;43751:27:0;;43747:141;;;43828:14;43795:13;43809:15;43795:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43859:17;;;;:::i;:::-;;;;43747:141;43900:16;;;;:::i;:::-;;;;43672:256;43599:329;;;-1:-1:-1;43947:13:0;;43273:695;-1:-1:-1;;;;43273:695:0:o;45460:138::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;45552:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38079:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38044:28::-;;;;;;;:::i;21492:239::-;21564:7;21600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21600:16:0;21635:19;21627:73;;;;-1:-1:-1;;;21627:73:0;;15320:2:1;21627:73:0;;;15302:21:1;15359:2;15339:18;;;15332:30;15398:34;15378:18;;;15371:62;-1:-1:-1;;;15449:18:1;;;15442:39;15498:19;;21627:73:0;15118:405:1;21222:208:0;21294:7;-1:-1:-1;;;;;21322:19:0;;21314:74;;;;-1:-1:-1;;;21314:74:0;;14909:2:1;21314:74:0;;;14891:21:1;14948:2;14928:18;;;14921:30;14987:34;14967:18;;;14960:62;-1:-1:-1;;;15038:18:1;;;15031:40;15088:19;;21314:74:0;14707:406:1;21314:74:0;-1:-1:-1;;;;;;21406:16:0;;;;;:9;:16;;;;;;;21222:208::o;36973:103::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;37038:30:::1;37065:1;37038:18;:30::i;:::-;36973:103::o:0;48936:135::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;49025:17:::1;:38:::0;;-1:-1:-1;;49025:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48936:135::o;45008:288::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;45086:5:::1;45095:1;45086:10;45083:206;;;45124:5;45109:9;45119:1;45109:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:20:::0;46065:22:::1;45989:106:::0;:::o;45083:206::-:1;45159:5;45168:1;45159:10;45156:133;;;45198:5;45182:9;45192:1;45182:12;;;;;;;;:::i;:::-;-1:-1:-1::0;45182:12:0::1;::::0;-1:-1:-1;46065:22:0::1;45989:106:::0;:::o;45156:133::-:1;45233:5;45242:1;45233:10;45230:59;;;45272:5;45256:9;45266:1;45256:12;;;;;;;;:::i;45738:106::-:0;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;45814:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;21967:104::-:0;22023:13;22056:7;22049:14;;;;;:::i;42001:601::-;42092:11;42105:5;39207:1;39193:11;:15;39185:48;;;;-1:-1:-1;;;39185:48:0;;;;;;;:::i;:::-;39247:5;39256:1;39247:10;39244:430;;;39317:15;39333:1;39317:18;;;;;;;;:::i;:::-;;;;;;;;;39302:11;39278:21;:11;34847:14;;34755:114;39278:21;:35;;;;:::i;:::-;:57;;39270:100;;;;-1:-1:-1;;;39270:100:0;;;;;;;:::i;:::-;39244:430;;;39401:5;39410:1;39401:10;39397:277;;;39471:15;39487:1;39471:18;;;;;;;;:::i;:::-;;;;;;;;;39456:11;39432:21;:11;34847:14;;34755:114;39432:21;:35;;;;:::i;:::-;:57;;39424:100;;;;-1:-1:-1;;;39424:100:0;;;;;;;:::i;39397:277::-;39609:15;39625:1;39609:18;;;;;;;;:::i;:::-;;;;;;;;;39594:11;39570:21;:11;34847:14;;34755:114;39570:21;:35;;;;:::i;:::-;:57;;39562:100;;;;-1:-1:-1;;;39562:100:0;;;;;;;:::i;:::-;42131:17:::1;::::0;::::1;;42123:54;;;::::0;-1:-1:-1;;;42123:54:0;;19624:2:1;42123:54:0::1;::::0;::::1;19606:21:1::0;19663:2;19643:18;;;19636:30;19702:26;19682:18;;;19675:54;19746:18;;42123:54:0::1;19422:348:1::0;42123:54:0::1;42222:10;42211:22;::::0;;;:10:::1;:22;::::0;;;;;42196:37;::::1;;42188:84;;;::::0;-1:-1:-1;;;42188:84:0;;17626:2:1;42188:84:0::1;::::0;::::1;17608:21:1::0;17665:2;17645:18;;;17638:30;17704:34;17684:18;;;17677:62;-1:-1:-1;;;17755:18:1;;;17748:32;17797:19;;42188:84:0::1;17424:398:1::0;42188:84:0::1;42327:15;42343:9;42351:1;42343:5:::0;:9:::1;:::i;:::-;42327:26;;;;;;;;:::i;:::-;;;;;;;;;42312:11;42291:18;42303:5;42291:11;:18::i;:::-;:32;;;;:::i;:::-;:62;;42283:107;;;::::0;-1:-1:-1;;;42283:107:0;;10360:2:1;42283:107:0::1;::::0;::::1;10342:21:1::0;;;10379:18;;;10372:30;10438:34;10418:18;;;10411:62;10490:18;;42283:107:0::1;10158:356:1::0;42283:107:0::1;42447:9;42432:11:::0;42409:9:::1;42419;42427:1;42419:5:::0;:9:::1;:::i;:::-;42409:20;;;;;;;;:::i;:::-;;;;;;;;;:34;;;;:::i;:::-;:47;;42401:91;;;::::0;-1:-1:-1;;;42401:91:0;;12997:2:1;42401:91:0::1;::::0;::::1;12979:21:1::0;13036:2;13016:18;;;13009:30;13075:33;13055:18;;;13048:61;13126:18;;42401:91:0::1;12795:355:1::0;42401:91:0::1;42516:10;42505:22;::::0;;;:10:::1;:22;::::0;;;;:37;;42531:11;;42505:22;:37:::1;::::0;42531:11;;42505:37:::1;:::i;:::-;::::0;;;-1:-1:-1;42553:41:0::1;::::0;-1:-1:-1;42563:10:0::1;42575:11:::0;42588:5;42553:9:::1;:41::i;23650:155::-:0;23745:52;16443:10;23778:8;23788;23745:18;:52::i;38119:31::-;;;;;;;:::i;48098:232::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;48211:9:::1;48206:117;48226:20:::0;;::::1;48206:117;;;48295:16;48268:10;:24;48279:9;;48289:1;48279:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48268:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48268:24:0;:43;48248:3;::::1;::::0;::::1;:::i;:::-;;;;48206:117;;24773:328:::0;24948:41;16443:10;24981:7;24948:18;:41::i;:::-;24940:103;;;;-1:-1:-1;;;24940:103:0;;;;;;;:::i;:::-;25054:39;25068:4;25074:2;25078:7;25087:5;25054:13;:39::i;40336:368::-;40393:20;40429:5;40438:1;40429:10;40426:271;;;40483:15;40499:1;40483:18;;;;;;;;:::i;:::-;;;;;;;;;40459:21;:11;34847:14;;34755:114;40459:21;:42;;;;:::i;40426:271::-;40532:5;40541:1;40532:10;40528:169;;;40586:15;40602:1;40586:18;;;;;;;;:::i;:::-;;;;;;;;;40562:21;:11;34847:14;;34755:114;40528:169;40634:5;40643:1;40634:10;40631:66;;;40664:11;34847:14;40664:21;34755:114;40631:66;40336:368;;;:::o;43976:553::-;26676:4;26700:16;;;:7;:16;;;;;;44095:13;;-1:-1:-1;;;;;26700:16:0;44126:103;;;;-1:-1:-1;;;44126:103:0;;19211:2:1;44126:103:0;;;19193:21:1;19250:2;19230:18;;;19223:30;19289:34;19269:18;;;19262:62;-1:-1:-1;;;19340:18:1;;;19333:42;19392:19;;44126:103:0;19009:408:1;44126:103:0;44246:8;;;;;;;44242:70;;44283:17;44276:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43976:553;;;:::o;44242:70::-;44324:28;44355:10;:8;:10::i;:::-;44324:41;;44414:1;44389:14;44383:28;:32;:138;;;;;;;;;;;;;;;;;44455:14;44471:19;:8;:17;:19::i;:::-;44492:9;44438:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44383:138;44376:145;43976:553;-1:-1:-1;;;43976:553:0:o;48578:176::-;-1:-1:-1;;;;;48663:20:0;;48643:4;48663:20;;;:10;:20;;;;;;:24;48660:64;;-1:-1:-1;48708:4:0;;48578:176;-1:-1:-1;48578:176:0:o;48660:64::-;-1:-1:-1;48741:5:0;;48578:176;-1:-1:-1;48578:176:0:o;44693:87::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;44755:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44755:17:0;;::::1;::::0;;;::::1;::::0;;44693:87::o;37231:201::-;36395:6;;-1:-1:-1;;;;;36395:6:0;16443:10;36542:23;36534:68;;;;-1:-1:-1;;;36534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37320:22:0;::::1;37312:73;;;::::0;-1:-1:-1;;;37312:73:0;;9953:2:1;37312:73:0::1;::::0;::::1;9935:21:1::0;9992:2;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;-1:-1:-1;;;10082:18:1;;;10075:36;10128:19;;37312:73:0::1;9751:402:1::0;37312:73:0::1;37396:28;37415:8;37396:18;:28::i;34877:127::-:0;34966:19;;34984:1;34966:19;;;34877:127::o;30757:174::-;30832:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30832:29:0;-1:-1:-1;;;;;30832:29:0;;;;;;;;:24;;30886:23;30832:24;30886:14;:23::i;:::-;-1:-1:-1;;;;;30877:46:0;;;;;;;;;;;30757:174;;:::o;46916:692::-;47013:5;47022:1;47013:10;47010:591;;;47041:9;47036:150;47060:11;47056:1;:15;47036:150;;;47093:23;:11;34966:19;;34984:1;34966:19;;;34877:127;47093:23;47131:43;47141:9;47152:21;:11;34847:14;;34755:114;47152:21;47131:9;:43::i;:::-;47073:3;;;;:::i;:::-;;;;47036:150;;47010:591;47215:5;47224:1;47215:10;47212:389;;;47243:9;47238:150;47262:11;47258:1;:15;47238:150;;;47295:23;:11;34966:19;;34984:1;34966:19;;;34877:127;47295:23;47333:43;47343:9;47354:21;:11;34847:14;;34755:114;47333:43;47275:3;;;;:::i;:::-;;;;47238:150;;47212:389;47417:5;47426:1;47417:10;47414:187;;;47445:9;47440:150;47464:11;47460:1;:15;47440:150;;;47497:23;:11;34966:19;;34984:1;34966:19;;;34877:127;47497:23;47535:43;47545:9;47556:21;:11;34847:14;;34755:114;47535:43;47477:3;;;;:::i;:::-;;;;47440:150;;26905:348;26998:4;26700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26700:16:0;27015:73;;;;-1:-1:-1;;;27015:73:0;;13712:2:1;27015:73:0;;;13694:21:1;13751:2;13731:18;;;13724:30;13790:34;13770:18;;;13763:62;-1:-1:-1;;;13841:18:1;;;13834:42;13893:19;;27015:73:0;13510:408:1;27015:73:0;27099:13;27115:23;27130:7;27115:14;:23::i;:::-;27099:39;;27168:5;-1:-1:-1;;;;;27157:16:0;:7;-1:-1:-1;;;;;27157:16:0;;:51;;;;27201:7;-1:-1:-1;;;;;27177:31:0;:20;27189:7;27177:11;:20::i;:::-;-1:-1:-1;;;;;27177:31:0;;27157:51;:87;;;-1:-1:-1;;;;;;23997:25:0;;;23973:4;23997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27212:32;27149:96;26905:348;-1:-1:-1;;;;26905:348:0:o;30014:625::-;30173:4;-1:-1:-1;;;;;30146:31:0;:23;30161:7;30146:14;:23::i;:::-;-1:-1:-1;;;;;30146:31:0;;30138:81;;;;-1:-1:-1;;;30138:81:0;;10721:2:1;30138:81:0;;;10703:21:1;10760:2;10740:18;;;10733:30;10799:34;10779:18;;;10772:62;-1:-1:-1;;;10850:18:1;;;10843:35;10895:19;;30138:81:0;10519:401:1;30138:81:0;-1:-1:-1;;;;;30238:16:0;;30230:65;;;;-1:-1:-1;;;30230:65:0;;12238:2:1;30230:65:0;;;12220:21:1;12277:2;12257:18;;;12250:30;12316:34;12296:18;;;12289:62;-1:-1:-1;;;12367:18:1;;;12360:34;12411:19;;30230:65:0;12036:400:1;30230:65:0;30412:29;30429:1;30433:7;30412:8;:29::i;:::-;-1:-1:-1;;;;;30454:15:0;;;;;;:9;:15;;;;;:20;;30473:1;;30454:15;:20;;30473:1;;30454:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30485:13:0;;;;;;:9;:13;;;;;:18;;30502:1;;30485:13;:18;;30502:1;;30485:18;:::i;:::-;;;;-1:-1:-1;;30514:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30514:21:0;-1:-1:-1;;;;;30514:21:0;;;;;;;;;30553:27;;30514:16;;30553:27;;;;;;;22950:341;22880:411;;:::o;37592:191::-;37685:6;;;-1:-1:-1;;;;;37702:17:0;;;-1:-1:-1;;;;;;37702:17:0;;;;;;;37735:40;;37685:6;;;37702:17;37685:6;;37735:40;;37666:16;;37735:40;37655:128;37592:191;:::o;31073:315::-;31228:8;-1:-1:-1;;;;;31219:17:0;:5;-1:-1:-1;;;;;31219:17:0;;;31211:55;;;;-1:-1:-1;;;31211:55:0;;12643:2:1;31211:55:0;;;12625:21:1;12682:2;12662:18;;;12655:30;12721:27;12701:18;;;12694:55;12766:18;;31211:55:0;12441:349:1;31211:55:0;-1:-1:-1;;;;;31277:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31277:46:0;;;;;;;;;;31339:41;;9056::1;;;31339::0;;9029:18:1;31339:41:0;;;;;;;31073:315;;;:::o;25983:::-;26140:28;26150:4;26156:2;26160:7;26140:9;:28::i;:::-;26187:48;26210:4;26216:2;26220:7;26229:5;26187:22;:48::i;:::-;26179:111;;;;-1:-1:-1;;;26179:111:0;;;;;;;:::i;47716:110::-;47776:13;47809:9;47802:16;;;;;:::i;16859:723::-;16915:13;17136:10;17132:53;;-1:-1:-1;;17163:10:0;;;;;;;;;;;;-1:-1:-1;;;17163:10:0;;;;;16859:723::o;17132:53::-;17210:5;17195:12;17251:78;17258:9;;17251:78;;17284:8;;;;:::i;:::-;;-1:-1:-1;17307:10:0;;-1:-1:-1;17315:2:0;17307:10;;:::i;:::-;;;17251:78;;;17339:19;17371:6;17361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17361:17:0;;17339:39;;17389:154;17396:10;;17389:154;;17423:11;17433:1;17423:11;;:::i;:::-;;-1:-1:-1;17492:10:0;17500:2;17492:5;:10;:::i;:::-;17479:24;;:2;:24;:::i;:::-;17466:39;;17449:6;17456;17449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17449:56:0;;;;;;;;-1:-1:-1;17520:11:0;17529:2;17520:11;;:::i;:::-;;;17389:154;;27595:110;27671:26;27681:2;27685:7;27671:26;;;;;;;;;;;;:9;:26::i;31953:799::-;32108:4;-1:-1:-1;;;;;32129:13:0;;8765:19;:23;32125:620;;32165:72;;-1:-1:-1;;;32165:72:0;;-1:-1:-1;;;;;32165:36:0;;;;;:72;;16443:10;;32216:4;;32222:7;;32231:5;;32165:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32165:72:0;;;;;;;;-1:-1:-1;;32165:72:0;;;;;;;;;;;;:::i;:::-;;;32161:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32407:13:0;;32403:272;;32450:60;;-1:-1:-1;;;32450:60:0;;;;;;;:::i;32403:272::-;32625:6;32619:13;32610:6;32606:2;32602:15;32595:38;32161:529;-1:-1:-1;;;;;;32288:51:0;-1:-1:-1;;;32288:51:0;;-1:-1:-1;32281:58:0;;32125:620;-1:-1:-1;32729:4:0;31953:799;;;;;;:::o;27932:321::-;28062:18;28068:2;28072:7;28062:5;:18::i;:::-;28113:54;28144:1;28148:2;28152:7;28161:5;28113:22;:54::i;:::-;28091:154;;;;-1:-1:-1;;;28091:154:0;;;;;;;:::i;28589:439::-;-1:-1:-1;;;;;28669:16:0;;28661:61;;;;-1:-1:-1;;;28661:61:0;;15730:2:1;28661:61:0;;;15712:21:1;;;15749:18;;;15742:30;15808:34;15788:18;;;15781:62;15860:18;;28661:61:0;15528:356:1;28661:61:0;26676:4;26700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26700:16:0;:30;28733:58;;;;-1:-1:-1;;;28733:58:0;;11532:2:1;28733:58:0;;;11514:21:1;11571:2;11551:18;;;11544:30;11610;11590:18;;;11583:58;11658:18;;28733:58:0;11330:352:1;28733:58:0;-1:-1:-1;;;;;28862:13:0;;;;;;:9;:13;;;;;:18;;28879:1;;28862:13;:18;;28879:1;;28862:18;:::i;:::-;;;;-1:-1:-1;;28891:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28891:21:0;-1:-1:-1;;;;;28891:21:0;;;;;;;;28930:33;;28891:16;;;28930:33;;28891:16;;28930:33;46065:22:::1;45989:106:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:245::-;3908:6;3961:2;3949:9;3940:7;3936:23;3932:32;3929:52;;;3977:1;3974;3967:12;3929:52;4016:9;4003:23;4035:30;4059:5;4035:30;:::i;4100:249::-;4169:6;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4270:9;4264:16;4289:30;4313:5;4289:30;:::i;4354:450::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;4532:9;4519:23;4565:18;4557:6;4554:30;4551:50;;;4597:1;4594;4587:12;4551:50;4620:22;;4673:4;4665:13;;4661:27;-1:-1:-1;4651:55:1;;4702:1;4699;4692:12;4651:55;4725:73;4790:7;4785:2;4772:16;4767:2;4763;4759:11;4725:73;:::i;4809:180::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;-1:-1:-1;4960:23:1;;4809:180;-1:-1:-1;4809:180:1:o;4994:322::-;5071:6;5079;5087;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5192:9;5179:23;5169:33;;5221:38;5255:2;5244:9;5240:18;5221:38;:::i;5321:248::-;5389:6;5397;5450:2;5438:9;5429:7;5425:23;5421:32;5418:52;;;5466:1;5463;5456:12;5418:52;-1:-1:-1;;5489:23:1;;;5559:2;5544:18;;;5531:32;;-1:-1:-1;5321:248:1:o;5574:257::-;5615:3;5653:5;5647:12;5680:6;5675:3;5668:19;5696:63;5752:6;5745:4;5740:3;5736:14;5729:4;5722:5;5718:16;5696:63;:::i;:::-;5813:2;5792:15;-1:-1:-1;;5788:29:1;5779:39;;;;5820:4;5775:50;;5574:257;-1:-1:-1;;5574:257:1:o;5836:1527::-;6060:3;6098:6;6092:13;6124:4;6137:51;6181:6;6176:3;6171:2;6163:6;6159:15;6137:51;:::i;:::-;6251:13;;6210:16;;;;6273:55;6251:13;6210:16;6295:15;;;6273:55;:::i;:::-;6417:13;;6350:20;;;6390:1;;6477;6499:18;;;;6552;;;;6579:93;;6657:4;6647:8;6643:19;6631:31;;6579:93;6720:2;6710:8;6707:16;6687:18;6684:40;6681:167;;;-1:-1:-1;;;6747:33:1;;6803:4;6800:1;6793:15;6833:4;6754:3;6821:17;6681:167;6864:18;6891:110;;;;7015:1;7010:328;;;;6857:481;;6891:110;-1:-1:-1;;6926:24:1;;6912:39;;6971:20;;;;-1:-1:-1;6891:110:1;;7010:328;20434:1;20427:14;;;20471:4;20458:18;;7105:1;7119:169;7133:8;7130:1;7127:15;7119:169;;;7215:14;;7200:13;;;7193:37;7258:16;;;;7150:10;;7119:169;;;7123:3;;7319:8;7312:5;7308:20;7301:27;;6857:481;-1:-1:-1;7354:3:1;;5836:1527;-1:-1:-1;;;;;;;;;;;5836:1527:1:o;7786:488::-;-1:-1:-1;;;;;8055:15:1;;;8037:34;;8107:15;;8102:2;8087:18;;8080:43;8154:2;8139:18;;8132:34;;;8202:3;8197:2;8182:18;;8175:31;;;7980:4;;8223:45;;8248:19;;8240:6;8223:45;:::i;:::-;8215:53;7786:488;-1:-1:-1;;;;;;7786:488:1:o;8279:632::-;8450:2;8502:21;;;8572:13;;8475:18;;;8594:22;;;8421:4;;8450:2;8673:15;;;;8647:2;8632:18;;;8421:4;8716:169;8730:6;8727:1;8724:13;8716:169;;;8791:13;;8779:26;;8860:15;;;;8825:12;;;;8752:1;8745:9;8716:169;;;-1:-1:-1;8902:3:1;;8279:632;-1:-1:-1;;;;;;8279:632:1:o;9108:219::-;9257:2;9246:9;9239:21;9220:4;9277:44;9317:2;9306:9;9302:18;9294:6;9277:44;:::i;9332:414::-;9534:2;9516:21;;;9573:2;9553:18;;;9546:30;9612:34;9607:2;9592:18;;9585:62;-1:-1:-1;;;9678:2:1;9663:18;;9656:48;9736:3;9721:19;;9332:414::o;11687:344::-;11889:2;11871:21;;;11928:2;11908:18;;;11901:30;-1:-1:-1;;;11962:2:1;11947:18;;11940:50;12022:2;12007:18;;11687:344::o;14348:354::-;14550:2;14532:21;;;14589:2;14569:18;;;14562:30;14628:32;14623:2;14608:18;;14601:60;14693:2;14678:18;;14348:354::o;16302:356::-;16504:2;16486:21;;;16523:18;;;16516:30;16582:34;16577:2;16562:18;;16555:62;16649:2;16634:18;;16302:356::o;17065:354::-;17267:2;17249:21;;;17306:2;17286:18;;;17279:30;17345:32;17340:2;17325:18;;17318:60;17410:2;17395:18;;17065:354::o;18232:413::-;18434:2;18416:21;;;18473:2;18453:18;;;18446:30;18512:34;18507:2;18492:18;;18485:62;-1:-1:-1;;;18578:2:1;18563:18;;18556:47;18635:3;18620:19;;18232:413::o;18650:354::-;18852:2;18834:21;;;18891:2;18871:18;;;18864:30;18930:32;18925:2;18910:18;;18903:60;18995:2;18980:18;;18650:354::o;20487:128::-;20527:3;20558:1;20554:6;20551:1;20548:13;20545:39;;;20564:18;;:::i;:::-;-1:-1:-1;20600:9:1;;20487:128::o;20620:120::-;20660:1;20686;20676:35;;20691:18;;:::i;:::-;-1:-1:-1;20725:9:1;;20620:120::o;20745:168::-;20785:7;20851:1;20847;20843:6;20839:14;20836:1;20833:21;20828:1;20821:9;20814:17;20810:45;20807:71;;;20858:18;;:::i;:::-;-1:-1:-1;20898:9:1;;20745:168::o;20918:125::-;20958:4;20986:1;20983;20980:8;20977:34;;;20991:18;;:::i;:::-;-1:-1:-1;21028:9:1;;20918:125::o;21048:258::-;21120:1;21130:113;21144:6;21141:1;21138:13;21130:113;;;21220:11;;;21214:18;21201:11;;;21194:39;21166:2;21159:10;21130:113;;;21261:6;21258:1;21255:13;21252:48;;;-1:-1:-1;;21296:1:1;21278:16;;21271:27;21048:258::o;21311:380::-;21390:1;21386:12;;;;21433;;;21454:61;;21508:4;21500:6;21496:17;21486:27;;21454:61;21561:2;21553:6;21550:14;21530:18;21527:38;21524:161;;;21607:10;21602:3;21598:20;21595:1;21588:31;21642:4;21639:1;21632:15;21670:4;21667:1;21660:15;21524:161;;21311:380;;;:::o;21696:135::-;21735:3;-1:-1:-1;;21756:17:1;;21753:43;;;21776:18;;:::i;:::-;-1:-1:-1;21823:1:1;21812:13;;21696:135::o;21836:112::-;21868:1;21894;21884:35;;21899:18;;:::i;:::-;-1:-1:-1;21933:9:1;;21836:112::o;21953:127::-;22014:10;22009:3;22005:20;22002:1;21995:31;22045:4;22042:1;22035:15;22069:4;22066:1;22059:15;22085:127;22146:10;22141:3;22137:20;22134:1;22127:31;22177:4;22174:1;22167:15;22201:4;22198:1;22191:15;22217:127;22278:10;22273:3;22269:20;22266:1;22259:31;22309:4;22306:1;22299:15;22333:4;22330:1;22323:15;22349:127;22410:10;22405:3;22401:20;22398:1;22391:31;22441:4;22438:1;22431:15;22465:4;22462:1;22455:15;22481:131;-1:-1:-1;;;;;;22555:32:1;;22545:43;;22535:71;;22602:1;22599;22592:12
Swarm Source
ipfs://3f6137b95898f00952d2995c86099a0fe21bee61f604388519d121fa8ab3335c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.