Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
712 TRAVELER
Holders
103
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LittleTraveler
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.11; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.11; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.11; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.11; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.11; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.11; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.11; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.11; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.11; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.11; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.11; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.11; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } interface IERC20 { function transfer(address recipient, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); } pragma solidity ^0.8.11; /// @title A 10,000 multi-chain PFP project for the travelers. /// @author Project by TripsCommunity, coding by jacmos3 /// @notice The first multichain project for the Travel Industry. First derivative of Traveler Loot in Ethereum. /// @custom:website www.littletraveler.org | www.travelerloot.com contract LittleTraveler is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint8 public chainNumber; uint8 public counterOwner = 0; uint8 public constant maxMintAmount = 10; uint8 public constant maxPerOwner = 100; uint16 public constant maxThisChain = 1000; uint16 public constant maxSupplyAllChains = 10000; uint256 public cost; uint256 public costTrips; uint256 public floorIndex; uint256 public roofIndex; address public tripsAddress; address public travelerLootAddress; address public treasurerAddress; string private constant ERROR_PAUSED = "Mintings paused."; string private constant ERROR_TOO_MUCH = "Cannot mint so many."; string private constant ERROR_MINT_FINISHED = "Minting is finished."; string private constant ERROR_DONT_OWN_TRAVELER_LOOT = "You do not own any Traveler Loot."; string private constant ERROR_NOT_POSSIBLE_ON_THIS_CHAIN = "This minting method is not available for this chain. Use Another method!"; string private constant ERROR_TOKEN_ID_DOES_NOT_EXISTS = "This tokenId doesnt exist"; bool public paused = true; bool public revealed = false; string public notRevealedUri; event PermanentURI(string _value, uint256 indexed _id); constructor(string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri, uint256 _cost, uint256 _costTrips, uint8 _chainNumber, address _tripsAddress, address _travelerLootAddress, address _treasurerAddress) ERC721(_name, _symbol) { baseURI = _initBaseURI; notRevealedUri = _initNotRevealedUri; cost = _cost; costTrips = _costTrips; tripsAddress = _tripsAddress; travelerLootAddress = _travelerLootAddress; treasurerAddress = _treasurerAddress; chainNumber = _chainNumber; floorIndex = chainNumber * maxThisChain + maxPerOwner; roofIndex = floorIndex + maxThisChain - maxPerOwner; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _processingMints(uint256 _mintAmount) internal { uint256 baseSupply = totalSupply(); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, floorIndex + baseSupply + i); } } /// @notice Mints Little Traveler by paying native coin. /// @param _mintAmount the number of Little Traveler you want to mint /// @dev check requirements: different chains have different configurations and not in every chains it is possible to mint using this function function mint(uint256 _mintAmount) external payable nonReentrant{ require(!paused, ERROR_PAUSED); require(travelerLootAddress == address(0) || tripsAddress == address(0), ERROR_NOT_POSSIBLE_ON_THIS_CHAIN); require(_mintAmount <= maxMintAmount, ERROR_TOO_MUCH); _mintAmount = _mintAmount > 0 ? _mintAmount : 1; require((floorIndex + totalSupply()) + _mintAmount <= roofIndex, ERROR_MINT_FINISHED); require(msg.value >= cost * _mintAmount); _processingMints(_mintAmount); } /// @notice Mints Little Traveler by holding a Little Traveler. /// @dev This is only thought for ethereum network and it is leaded by a configuration param function mintByTravelerLoot() external nonReentrant{ require(!paused, ERROR_PAUSED); require(travelerLootAddress != address(0), ERROR_NOT_POSSIBLE_ON_THIS_CHAIN); require(IERC721(travelerLootAddress).balanceOf(_msgSender()) > 0, ERROR_DONT_OWN_TRAVELER_LOOT); _processingMints(1); } /// @notice Mints Little Traveler by paying Trips coin. /// @dev check requirements: different chains have different configurations and not in every chains it is possible to mint using this function /// @param _mintAmount the amount of Little Traveler you want to mint function mintWithTrips(uint8 _mintAmount) external nonReentrant{ require(!paused, ERROR_PAUSED); require(tripsAddress != address(0), ERROR_NOT_POSSIBLE_ON_THIS_CHAIN); require(_mintAmount <= maxMintAmount, ERROR_TOO_MUCH); _mintAmount = _mintAmount > 0 ? _mintAmount : 1; IERC20(tripsAddress).transferFrom(msg.sender, treasurerAddress, costTrips * _mintAmount); _processingMints(_mintAmount); } /// @notice Mints Little Traveler by proving to be the owner of the contract /// @dev contract owner has 100 reserved Little Traveler to be used as airdrops or self-funding function mintByOwner() external onlyOwner nonReentrant{ require(!paused, ERROR_PAUSED); uint256 adjustedTokenId = floorIndex - maxPerOwner + counterOwner + 1; require(adjustedTokenId > floorIndex - maxPerOwner && adjustedTokenId <= floorIndex, ERROR_TOO_MUCH); _safeMint(msg.sender, adjustedTokenId); counterOwner++; } /// @notice If you want to check which tokenId owns a particular address. /// @param _owner address of the owner to check /// @return an array of tokenId owned by the input address function walletOfOwner(address _owner) external view returns (uint256[] memory){ uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint16 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } /// @notice Provides URI of the metadata and image. /// @param tokenId the tokenId of the Little Traveler to check /// @return the metadata & image URI json function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ require( _exists(tokenId), ERROR_TOKEN_ID_DOES_NOT_EXISTS); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)): ""; } /// @notice Freeze metadata on opensea /// @dev to call after all the nft are minted function freezeMetadata() external onlyOwner { for (uint256 tokenId = floorIndex - maxPerOwner; tokenId <= roofIndex; tokenId++){ emit PermanentURI(tokenURI(tokenId), tokenId); } } /// @notice Reveal images /// @dev only owner can call it function reveal() external onlyOwner { revealed = true; } /// @notice setter cost variable /// @dev onlyowner can call it /// @param _newCost insert the new native coin cost function setCost(uint256 _newCost) external onlyOwner { cost = _newCost; } /// @notice setter costTrips variable /// @dev onlyowner can call it /// @param _newCostTrips insert the new Trips coin cost function setCostTrips(uint256 _newCostTrips) external onlyOwner { costTrips = _newCostTrips; } /// @notice setter NotRevealedURI variable /// @dev onlyowner can call it /// @param _notRevealedURI insert the new url of the not revealed Little Traveler function setNotRevealedURI(string memory _notRevealedURI) external onlyOwner { notRevealedUri = _notRevealedURI; } /// @notice setter baseURI variable /// @dev onlyowner can call it /// @param _newBaseURI insert the new url of the baseUri function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /// @notice setter baseExtension variable /// @dev onlyowner can call it /// @param _newBaseExtension insert the new baseExtension function setBaseExtension(string memory _newBaseExtension) external onlyOwner { baseExtension = _newBaseExtension; } /// @notice setter tripsAddress variable /// @dev onlyowner can call it /// @param _tripsAddress insert the tripsAddress function setTripsAddress(address _tripsAddress) external onlyOwner{ tripsAddress = _tripsAddress; } /// @notice setter travelerLootAddress variable /// @dev onlyowner can call it /// @param _travelerLootAddress insert the new travelerLootAddress function setTravelerLootAddress(address _travelerLootAddress) external onlyOwner{ travelerLootAddress = _travelerLootAddress; } /// @notice setter treasurerAddress variable /// @dev onlyowner can call it /// @param _treasurerAddress insert the new treasurerAddress function setTreasurerAddress(address _treasurerAddress) external onlyOwner{ treasurerAddress = _treasurerAddress; } /// @notice pause/unpause the mintings /// @dev onlyowner can call it /// @param _state if true it pauses the mintings, if false it allows new mintings function pause(bool _state) external onlyOwner { paused = _state; } /// @notice withdraw native coin funds from the contract /// @dev onlyowner can call it. NOTE: TRIPS coin are directly going to the treasurerAddress. Never transit from here. function withdraw() external onlyOwner { payable(treasurerAddress).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_costTrips","type":"uint256"},{"internalType":"uint8","name":"_chainNumber","type":"uint8"},{"internalType":"address","name":"_tripsAddress","type":"address"},{"internalType":"address","name":"_travelerLootAddress","type":"address"},{"internalType":"address","name":"_treasurerAddress","type":"address"}],"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":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainNumber","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costTrips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterOwner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"floorIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOwner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyAllChains","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxThisChain","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintByTravelerLoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mintWithTrips","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roofIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostTrips","type":"uint256"}],"name":"setCostTrips","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_travelerLootAddress","type":"address"}],"name":"setTravelerLootAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasurerAddress","type":"address"}],"name":"setTreasurerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tripsAddress","type":"address"}],"name":"setTripsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"travelerLootAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasurerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tripsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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
60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620001fe565b50600e805461ff00191690556015805461ffff60a01b1916600160a01b1790553480156200005557600080fd5b50604051620035b4380380620035b48339810160408190526200007891620003a0565b89518a908a9062000091906000906020850190620001fe565b508051620000a7906001906020840190620001fe565b505050620000c4620000be620001a860201b60201c565b620001ac565b6001600b558751620000de90600c9060208b0190620001fe565b508651620000f49060169060208a0190620001fe565b50600f8690556010859055601380546001600160a01b038086166001600160a01b031992831617909255601480548584169083161790556015805492841692909116919091179055600e805460ff861660ff19909116811790915560649062000161906103e890620004cf565b6200016d9190620004fc565b61ffff16601181905560649062000188906103e89062000525565b62000194919062000540565b601255506200059798505050505050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020c906200055a565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002cc57600080fd5b81516001600160401b0380821115620002e957620002e9620002a4565b604051601f8301601f19908116603f01168101908282118183101715620003145762000314620002a4565b816040528381526020925086838588010111156200033157600080fd5b600091505b8382101562000355578582018301518183018401529082019062000336565b83821115620003675760008385830101525b9695505050505050565b805160ff811681146200038357600080fd5b919050565b80516001600160a01b03811681146200038357600080fd5b6000806000806000806000806000806101408b8d031215620003c157600080fd5b8a516001600160401b0380821115620003d957600080fd5b620003e78e838f01620002ba565b9b5060208d0151915080821115620003fe57600080fd5b6200040c8e838f01620002ba565b9a5060408d01519150808211156200042357600080fd5b620004318e838f01620002ba565b995060608d01519150808211156200044857600080fd5b50620004578d828e01620002ba565b97505060808b0151955060a08b015194506200047660c08c0162000371565b93506200048660e08c0162000388565b9250620004976101008c0162000388565b9150620004a86101208c0162000388565b90509295989b9194979a5092959850565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851681830481118215151615620004f357620004f3620004b9565b02949350505050565b600061ffff8083168185168083038211156200051c576200051c620004b9565b01949350505050565b600082198211156200053b576200053b620004b9565b500190565b600082821015620005555762000555620004b9565b500390565b600181811c908216806200056f57607f821691505b602082108114156200059157634e487b7160e01b600052602260045260246000fd5b50919050565b61300d80620005a76000396000f3fe60806040526004361061031a5760003560e01c80636b34a45a116101ab578063a475b5dd116100f7578063dd7c986111610095578063e985e9c51161006f578063e985e9c5146108e7578063f2c4ce1e14610930578063f2fde38b14610950578063fd2c58f21461097057600080fd5b8063dd7c986114610891578063ddcb30a9146108b1578063e38d93a4146108c757600080fd5b8063c6682862116100d1578063c668286214610827578063c87b56dd1461083c578063d111515d1461085c578063da3ef23f1461087157600080fd5b8063a475b5dd146107d8578063b88d4fde146107ed578063c2f318d31461080d57600080fd5b806395d89b41116101645780639bc643a81161013e5780639bc643a814610770578063a0712d6814610785578063a22cb46514610798578063a351f75a146107b857600080fd5b806395d89b411461072557806395fc4d831461073a5780639758d46f1461075a57600080fd5b80636b34a45a1461067d5780636b74a5981461069d5780636eedf952146106b257806370a08231146106d2578063715018a6146106f25780638da5cb5b1461070757600080fd5b80632b0dac0d1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146105fb57806355f804b31461061c5780635c975abb1461063c5780636352211e1461065d57600080fd5b806344a0d68a1461059b5780634bce50ee146105bb5780634f6ccce7146105db57600080fd5b80632b0dac0d146104e35780632f745c591461050357806335cc70d4146105235780633ccfd60b1461053957806342842e0e1461054e578063438b63001461056e57600080fd5b8063095ea7b3116102d757806315a1f542116102b157806315a1f5421461048357806318160ddd14610499578063239c70ae146104ae57806323b872dd146104c357600080fd5b8063095ea7b31461040e57806310c333931461042e57806313faede61461045f57600080fd5b806301ffc9a71461031f57806302329a2914610354578063064412221461037657806306fdde031461039f578063081812fc146103c1578063081c8c44146103f9575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461281a565b610985565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612845565b6109b0565b005b34801561038257600080fd5b5061038c6103e881565b60405161ffff909116815260200161034b565b3480156103ab57600080fd5b506103b4610a01565b60405161034b91906128ba565b3480156103cd57600080fd5b506103e16103dc3660046128cd565b610a93565b6040516001600160a01b03909116815260200161034b565b34801561040557600080fd5b506103b4610b28565b34801561041a57600080fd5b50610374610429366004612902565b610bb6565b34801561043a57600080fd5b50600e5461044d90610100900460ff1681565b60405160ff909116815260200161034b565b34801561046b57600080fd5b50610475600f5481565b60405190815260200161034b565b34801561048f57600080fd5b5061047560125481565b3480156104a557600080fd5b50600854610475565b3480156104ba57600080fd5b5061044d600a81565b3480156104cf57600080fd5b506103746104de36600461292c565b610ccc565b3480156104ef57600080fd5b506014546103e1906001600160a01b031681565b34801561050f57600080fd5b5061047561051e366004612902565b610cfd565b34801561052f57600080fd5b5061047560105481565b34801561054557600080fd5b50610374610d93565b34801561055a57600080fd5b5061037461056936600461292c565b610df9565b34801561057a57600080fd5b5061058e610589366004612968565b610e14565b60405161034b9190612983565b3480156105a757600080fd5b506103746105b63660046128cd565b610ec2565b3480156105c757600080fd5b506103746105d6366004612968565b610ef1565b3480156105e757600080fd5b506104756105f63660046128cd565b610f3d565b34801561060757600080fd5b5060155461033f90600160a81b900460ff1681565b34801561062857600080fd5b50610374610637366004612a53565b610fd0565b34801561064857600080fd5b5060155461033f90600160a01b900460ff1681565b34801561066957600080fd5b506103e16106783660046128cd565b611011565b34801561068957600080fd5b506015546103e1906001600160a01b031681565b3480156106a957600080fd5b50610374611088565b3480156106be57600080fd5b506103746106cd366004612968565b611215565b3480156106de57600080fd5b506104756106ed366004612968565b611261565b3480156106fe57600080fd5b506103746112e8565b34801561071357600080fd5b50600a546001600160a01b03166103e1565b34801561073157600080fd5b506103b461131e565b34801561074657600080fd5b50610374610755366004612a9c565b61132d565b34801561076657600080fd5b5061038c61271081565b34801561077c57600080fd5b5061044d606481565b6103746107933660046128cd565b611513565b3480156107a457600080fd5b506103746107b3366004612abf565b6116de565b3480156107c457600080fd5b506103746107d3366004612968565b6117a3565b3480156107e457600080fd5b506103746117ef565b3480156107f957600080fd5b50610374610808366004612af6565b61182e565b34801561081957600080fd5b50600e5461044d9060ff1681565b34801561083357600080fd5b506103b4611866565b34801561084857600080fd5b506103b46108573660046128cd565b611873565b34801561086857600080fd5b506103746119e7565b34801561087d57600080fd5b5061037461088c366004612a53565b611a81565b34801561089d57600080fd5b506013546103e1906001600160a01b031681565b3480156108bd57600080fd5b5061047560115481565b3480156108d357600080fd5b506103746108e23660046128cd565b611abe565b3480156108f357600080fd5b5061033f610902366004612b72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093c57600080fd5b5061037461094b366004612a53565b611aed565b34801561095c57600080fd5b5061037461096b366004612968565b611b2a565b34801561097c57600080fd5b50610374611bc2565b60006001600160e01b0319821663780e9d6360e01b14806109aa57506109aa82611d4d565b92915050565b600a546001600160a01b031633146109e35760405162461bcd60e51b81526004016109da90612ba5565b60405180910390fd5b60158054911515600160a01b0260ff60a01b19909216919091179055565b606060008054610a1090612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90612bda565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109da565b506000908152600460205260409020546001600160a01b031690565b60168054610b3590612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612bda565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b505050505081565b6000610bc182611011565b9050806001600160a01b0316836001600160a01b03161415610c2f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109da565b336001600160a01b0382161480610c4b5750610c4b8133610902565b610cbd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109da565b610cc78383611d9d565b505050565b610cd63382611e0b565b610cf25760405162461bcd60e51b81526004016109da90612c15565b610cc7838383611f02565b6000610d0883611261565b8210610d6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109da565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109da90612ba5565b6015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610df6573d6000803e3d6000fd5b50565b610cc78383836040518060200160405280600081525061182e565b60606000610e2183611261565b905060008167ffffffffffffffff811115610e3e57610e3e6129c7565b604051908082528060200260200182016040528015610e67578160200160208202803683370190505b50905060005b828161ffff161015610eba57610e87858261ffff16610cfd565b828261ffff1681518110610e9d57610e9d612c66565b602090810291909101015280610eb281612c92565b915050610e6d565b509392505050565b600a546001600160a01b03163314610eec5760405162461bcd60e51b81526004016109da90612ba5565b600f55565b600a546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016109da90612ba5565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f4860085490565b8210610fab5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109da565b60088281548110610fbe57610fbe612c66565b90600052602060002001549050919050565b600a546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016109da90612ba5565b805161100d90600c90602084019061276b565b5050565b6000818152600260205260408120546001600160a01b0316806109aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109da565b600a546001600160a01b031633146110b25760405162461bcd60e51b81526004016109da90612ba5565b6002600b5414156110d55760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff161561112d5760405162461bcd60e51b81526004016109da91906128ba565b50600e54601154600091610100900460ff169061114c90606490612ceb565b6111569190612d02565b611161906001612d02565b60115490915061117390606490612ceb565b8111801561118357506011548111155b6040518060400160405280601481526020017321b0b73737ba1036b4b73a1039b79036b0b73c9760611b815250906111ce5760405162461bcd60e51b81526004016109da91906128ba565b506111d933826120ad565b600e8054610100900460ff169060016111f183612d1a565b91906101000a81548160ff021916908360ff16021790555050506001600b81905550565b600a546001600160a01b0316331461123f5760405162461bcd60e51b81526004016109da90612ba5565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166112cc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109da565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113125760405162461bcd60e51b81526004016109da90612ba5565b61131c60006120c7565b565b606060018054610a1090612bda565b6002600b5414156113505760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff16156113a85760405162461bcd60e51b81526004016109da91906128ba565b50601354604080516080810190915260488082526001600160a01b03909216151591612f6f6020830139906113f05760405162461bcd60e51b81526004016109da91906128ba565b5060408051808201909152601481527321b0b73737ba1036b4b73a1039b79036b0b73c9760611b6020820152600a60ff831611156114415760405162461bcd60e51b81526004016109da91906128ba565b5060008160ff1611611454576001611456565b805b6013546015546010549293506001600160a01b03918216926323b872dd92339216906114869060ff871690612d3a565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af11580156114da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fe9190612d59565b5061150b8160ff16612119565b506001600b55565b6002600b5414156115365760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff161561158e5760405162461bcd60e51b81526004016109da91906128ba565b506014546001600160a01b031615806115b057506013546001600160a01b0316155b604051806080016040528060488152602001612f6f60489139906115e75760405162461bcd60e51b81526004016109da91906128ba565b5060408051808201909152601481527321b0b73737ba1036b4b73a1039b79036b0b73c9760611b6020820152600a8211156116355760405162461bcd60e51b81526004016109da91906128ba565b5060008111611645576001611647565b805b90506012548161165660085490565b6011546116639190612d02565b61166d9190612d02565b11156040518060400160405280601481526020017326b4b73a34b7339034b9903334b734b9b432b21760611b815250906116ba5760405162461bcd60e51b81526004016109da91906128ba565b5080600f546116c99190612d3a565b3410156116d557600080fd5b61150b81612119565b6001600160a01b0382163314156117375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109da565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117cd5760405162461bcd60e51b81526004016109da90612ba5565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118195760405162461bcd60e51b81526004016109da90612ba5565b6015805460ff60a81b1916600160a81b179055565b6118383383611e0b565b6118545760405162461bcd60e51b81526004016109da90612c15565b61186084848484612164565b50505050565b600d8054610b3590612bda565b6000818152600260205260409020546060906001600160a01b031615156040518060400160405280601981526020017f5468697320746f6b656e496420646f65736e7420657869737400000000000000815250906118e45760405162461bcd60e51b81526004016109da91906128ba565b50601554600160a81b900460ff16611988576016805461190390612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461192f90612bda565b801561197c5780601f106119515761010080835404028352916020019161197c565b820191906000526020600020905b81548152906001019060200180831161195f57829003601f168201915b50505050509050919050565b6000611992612197565b905060008151116119b257604051806020016040528060008152506119e0565b806119bc846121a6565b600d6040516020016119d093929190612d76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a115760405162461bcd60e51b81526004016109da90612ba5565b601154600090611a2390606490612ceb565b90505b6012548111610df657807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611a5a83611873565b604051611a6791906128ba565b60405180910390a280611a7981612e3a565b915050611a26565b600a546001600160a01b03163314611aab5760405162461bcd60e51b81526004016109da90612ba5565b805161100d90600d90602084019061276b565b600a546001600160a01b03163314611ae85760405162461bcd60e51b81526004016109da90612ba5565b601055565b600a546001600160a01b03163314611b175760405162461bcd60e51b81526004016109da90612ba5565b805161100d90601690602084019061276b565b600a546001600160a01b03163314611b545760405162461bcd60e51b81526004016109da90612ba5565b6001600160a01b038116611bb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109da565b610df6816120c7565b6002600b541415611be55760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff1615611c3d5760405162461bcd60e51b81526004016109da91906128ba565b50601454604080516080810190915260488082526001600160a01b03909216151591612f6f602083013990611c855760405162461bcd60e51b81526004016109da91906128ba565b506014546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611cdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d039190612e55565b11604051806060016040528060218152602001612fb76021913990611d3b5760405162461bcd60e51b81526004016109da91906128ba565b50611d466001612119565b6001600b55565b60006001600160e01b031982166380ac58cd60e01b1480611d7e57506001600160e01b03198216635b5e139f60e01b145b806109aa57506301ffc9a760e01b6001600160e01b03198316146109aa565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dd282611011565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109da565b6000611e8f83611011565b9050806001600160a01b0316846001600160a01b03161480611eca5750836001600160a01b0316611ebf84610a93565b6001600160a01b0316145b80611efa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f1582611011565b6001600160a01b031614611f7d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109da565b6001600160a01b038216611fdf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109da565b611fea8383836122a4565b611ff5600082611d9d565b6001600160a01b038316600090815260036020526040812080546001929061201e908490612ceb565b90915550506001600160a01b038216600090815260036020526040812080546001929061204c908490612d02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61100d82826040518060200160405280600081525061235c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061212460085490565b905060015b828111610cc7576121523382846011546121439190612d02565b61214d9190612d02565b6120ad565b8061215c81612e3a565b915050612129565b61216f848484611f02565b61217b8484848461238f565b6118605760405162461bcd60e51b81526004016109da90612e6e565b6060600c8054610a1090612bda565b6060816121ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121f457806121de81612e3a565b91506121ed9050600a83612ed6565b91506121ce565b60008167ffffffffffffffff81111561220f5761220f6129c7565b6040519080825280601f01601f191660200182016040528015612239576020820181803683370190505b5090505b8415611efa5761224e600183612ceb565b915061225b600a86612eea565b612266906030612d02565b60f81b81838151811061227b5761227b612c66565b60200101906001600160f81b031916908160001a90535061229d600a86612ed6565b945061223d565b6001600160a01b0383166122ff576122fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612322565b816001600160a01b0316836001600160a01b03161461232257612322838261248d565b6001600160a01b03821661233957610cc78161252a565b826001600160a01b0316826001600160a01b031614610cc757610cc782826125d9565b612366838361261d565b612373600084848461238f565b610cc75760405162461bcd60e51b81526004016109da90612e6e565b60006001600160a01b0384163b1561248257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d3903390899088908890600401612efe565b6020604051808303816000875af192505050801561240e575060408051601f3d908101601f1916820190925261240b91810190612f3b565b60015b612468573d80801561243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b5080516124605760405162461bcd60e51b81526004016109da90612e6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611efa565b506001949350505050565b6000600161249a84611261565b6124a49190612ceb565b6000838152600760205260409020549091508082146124f7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061253c90600190612ceb565b6000838152600960205260408120546008805493945090928490811061256457612564612c66565b90600052602060002001549050806008838154811061258557612585612c66565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125bd576125bd612f58565b6001900381819060005260206000200160009055905550505050565b60006125e483611261565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109da565b6000818152600260205260409020546001600160a01b0316156126d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109da565b6126e4600083836122a4565b6001600160a01b038216600090815260036020526040812080546001929061270d908490612d02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461277790612bda565b90600052602060002090601f01602090048101928261279957600085556127df565b82601f106127b257805160ff19168380011785556127df565b828001600101855582156127df579182015b828111156127df5782518255916020019190600101906127c4565b506127eb9291506127ef565b5090565b5b808211156127eb57600081556001016127f0565b6001600160e01b031981168114610df657600080fd5b60006020828403121561282c57600080fd5b81356119e081612804565b8015158114610df657600080fd5b60006020828403121561285757600080fd5b81356119e081612837565b60005b8381101561287d578181015183820152602001612865565b838111156118605750506000910152565b600081518084526128a6816020860160208601612862565b601f01601f19169290920160200192915050565b6020815260006119e0602083018461288e565b6000602082840312156128df57600080fd5b5035919050565b80356001600160a01b03811681146128fd57600080fd5b919050565b6000806040838503121561291557600080fd5b61291e836128e6565b946020939093013593505050565b60008060006060848603121561294157600080fd5b61294a846128e6565b9250612958602085016128e6565b9150604084013590509250925092565b60006020828403121561297a57600080fd5b6119e0826128e6565b6020808252825182820181905260009190848201906040850190845b818110156129bb5783518352928401929184019160010161299f565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156129f8576129f86129c7565b604051601f8501601f19908116603f01168101908282118183101715612a2057612a206129c7565b81604052809350858152868686011115612a3957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a6557600080fd5b813567ffffffffffffffff811115612a7c57600080fd5b8201601f81018413612a8d57600080fd5b611efa848235602084016129dd565b600060208284031215612aae57600080fd5b813560ff811681146119e057600080fd5b60008060408385031215612ad257600080fd5b612adb836128e6565b91506020830135612aeb81612837565b809150509250929050565b60008060008060808587031215612b0c57600080fd5b612b15856128e6565b9350612b23602086016128e6565b925060408501359150606085013567ffffffffffffffff811115612b4657600080fd5b8501601f81018713612b5757600080fd5b612b66878235602084016129dd565b91505092959194509250565b60008060408385031215612b8557600080fd5b612b8e836128e6565b9150612b9c602084016128e6565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612bee57607f821691505b60208210811415612c0f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681811415612caa57612caa612c7c565b6001019392505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082821015612cfd57612cfd612c7c565b500390565b60008219821115612d1557612d15612c7c565b500190565b600060ff821660ff811415612d3157612d31612c7c565b60010192915050565b6000816000190483118215151615612d5457612d54612c7c565b500290565b600060208284031215612d6b57600080fd5b81516119e081612837565b600084516020612d898285838a01612862565b855191840191612d9c8184848a01612862565b8554920191600090600181811c9080831680612db957607f831692505b858310811415612dd757634e487b7160e01b85526022600452602485fd5b808015612deb5760018114612dfc57612e29565b60ff19851688528388019550612e29565b60008b81526020902060005b85811015612e215781548a820152908401908801612e08565b505083880195505b50939b9a5050505050505050505050565b6000600019821415612e4e57612e4e612c7c565b5060010190565b600060208284031215612e6757600080fd5b5051919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ee557612ee5612ec0565b500490565b600082612ef957612ef9612ec0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f319083018461288e565b9695505050505050565b600060208284031215612f4d57600080fd5b81516119e081612804565b634e487b7160e01b600052603160045260246000fdfe54686973206d696e74696e67206d6574686f64206973206e6f7420617661696c61626c6520666f72207468697320636861696e2e2055736520416e6f74686572206d6574686f6421596f7520646f206e6f74206f776e20616e792054726176656c6572204c6f6f742ea264697066735822122004c0cc1b42c4f8d7bd1351f0e7258358c088209069ca4346459cc9b04c97f6fc64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c6b935b8bbd40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001350fbe8ce27762ec19134bf8fc405a427fe9bf100000000000000000000000038cd9992e44064cb8bd68cdf17d164b82b25277c0000000000000000000000009e202e5d45fc8ae7cef6b845de7c91ac3230469a000000000000000000000000000000000000000000000000000000000000000f4c6974746c652054726176656c65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000854524156454c455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031a5760003560e01c80636b34a45a116101ab578063a475b5dd116100f7578063dd7c986111610095578063e985e9c51161006f578063e985e9c5146108e7578063f2c4ce1e14610930578063f2fde38b14610950578063fd2c58f21461097057600080fd5b8063dd7c986114610891578063ddcb30a9146108b1578063e38d93a4146108c757600080fd5b8063c6682862116100d1578063c668286214610827578063c87b56dd1461083c578063d111515d1461085c578063da3ef23f1461087157600080fd5b8063a475b5dd146107d8578063b88d4fde146107ed578063c2f318d31461080d57600080fd5b806395d89b41116101645780639bc643a81161013e5780639bc643a814610770578063a0712d6814610785578063a22cb46514610798578063a351f75a146107b857600080fd5b806395d89b411461072557806395fc4d831461073a5780639758d46f1461075a57600080fd5b80636b34a45a1461067d5780636b74a5981461069d5780636eedf952146106b257806370a08231146106d2578063715018a6146106f25780638da5cb5b1461070757600080fd5b80632b0dac0d1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146105fb57806355f804b31461061c5780635c975abb1461063c5780636352211e1461065d57600080fd5b806344a0d68a1461059b5780634bce50ee146105bb5780634f6ccce7146105db57600080fd5b80632b0dac0d146104e35780632f745c591461050357806335cc70d4146105235780633ccfd60b1461053957806342842e0e1461054e578063438b63001461056e57600080fd5b8063095ea7b3116102d757806315a1f542116102b157806315a1f5421461048357806318160ddd14610499578063239c70ae146104ae57806323b872dd146104c357600080fd5b8063095ea7b31461040e57806310c333931461042e57806313faede61461045f57600080fd5b806301ffc9a71461031f57806302329a2914610354578063064412221461037657806306fdde031461039f578063081812fc146103c1578063081c8c44146103f9575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461281a565b610985565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612845565b6109b0565b005b34801561038257600080fd5b5061038c6103e881565b60405161ffff909116815260200161034b565b3480156103ab57600080fd5b506103b4610a01565b60405161034b91906128ba565b3480156103cd57600080fd5b506103e16103dc3660046128cd565b610a93565b6040516001600160a01b03909116815260200161034b565b34801561040557600080fd5b506103b4610b28565b34801561041a57600080fd5b50610374610429366004612902565b610bb6565b34801561043a57600080fd5b50600e5461044d90610100900460ff1681565b60405160ff909116815260200161034b565b34801561046b57600080fd5b50610475600f5481565b60405190815260200161034b565b34801561048f57600080fd5b5061047560125481565b3480156104a557600080fd5b50600854610475565b3480156104ba57600080fd5b5061044d600a81565b3480156104cf57600080fd5b506103746104de36600461292c565b610ccc565b3480156104ef57600080fd5b506014546103e1906001600160a01b031681565b34801561050f57600080fd5b5061047561051e366004612902565b610cfd565b34801561052f57600080fd5b5061047560105481565b34801561054557600080fd5b50610374610d93565b34801561055a57600080fd5b5061037461056936600461292c565b610df9565b34801561057a57600080fd5b5061058e610589366004612968565b610e14565b60405161034b9190612983565b3480156105a757600080fd5b506103746105b63660046128cd565b610ec2565b3480156105c757600080fd5b506103746105d6366004612968565b610ef1565b3480156105e757600080fd5b506104756105f63660046128cd565b610f3d565b34801561060757600080fd5b5060155461033f90600160a81b900460ff1681565b34801561062857600080fd5b50610374610637366004612a53565b610fd0565b34801561064857600080fd5b5060155461033f90600160a01b900460ff1681565b34801561066957600080fd5b506103e16106783660046128cd565b611011565b34801561068957600080fd5b506015546103e1906001600160a01b031681565b3480156106a957600080fd5b50610374611088565b3480156106be57600080fd5b506103746106cd366004612968565b611215565b3480156106de57600080fd5b506104756106ed366004612968565b611261565b3480156106fe57600080fd5b506103746112e8565b34801561071357600080fd5b50600a546001600160a01b03166103e1565b34801561073157600080fd5b506103b461131e565b34801561074657600080fd5b50610374610755366004612a9c565b61132d565b34801561076657600080fd5b5061038c61271081565b34801561077c57600080fd5b5061044d606481565b6103746107933660046128cd565b611513565b3480156107a457600080fd5b506103746107b3366004612abf565b6116de565b3480156107c457600080fd5b506103746107d3366004612968565b6117a3565b3480156107e457600080fd5b506103746117ef565b3480156107f957600080fd5b50610374610808366004612af6565b61182e565b34801561081957600080fd5b50600e5461044d9060ff1681565b34801561083357600080fd5b506103b4611866565b34801561084857600080fd5b506103b46108573660046128cd565b611873565b34801561086857600080fd5b506103746119e7565b34801561087d57600080fd5b5061037461088c366004612a53565b611a81565b34801561089d57600080fd5b506013546103e1906001600160a01b031681565b3480156108bd57600080fd5b5061047560115481565b3480156108d357600080fd5b506103746108e23660046128cd565b611abe565b3480156108f357600080fd5b5061033f610902366004612b72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093c57600080fd5b5061037461094b366004612a53565b611aed565b34801561095c57600080fd5b5061037461096b366004612968565b611b2a565b34801561097c57600080fd5b50610374611bc2565b60006001600160e01b0319821663780e9d6360e01b14806109aa57506109aa82611d4d565b92915050565b600a546001600160a01b031633146109e35760405162461bcd60e51b81526004016109da90612ba5565b60405180910390fd5b60158054911515600160a01b0260ff60a01b19909216919091179055565b606060008054610a1090612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90612bda565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109da565b506000908152600460205260409020546001600160a01b031690565b60168054610b3590612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612bda565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b505050505081565b6000610bc182611011565b9050806001600160a01b0316836001600160a01b03161415610c2f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109da565b336001600160a01b0382161480610c4b5750610c4b8133610902565b610cbd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109da565b610cc78383611d9d565b505050565b610cd63382611e0b565b610cf25760405162461bcd60e51b81526004016109da90612c15565b610cc7838383611f02565b6000610d0883611261565b8210610d6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109da565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109da90612ba5565b6015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610df6573d6000803e3d6000fd5b50565b610cc78383836040518060200160405280600081525061182e565b60606000610e2183611261565b905060008167ffffffffffffffff811115610e3e57610e3e6129c7565b604051908082528060200260200182016040528015610e67578160200160208202803683370190505b50905060005b828161ffff161015610eba57610e87858261ffff16610cfd565b828261ffff1681518110610e9d57610e9d612c66565b602090810291909101015280610eb281612c92565b915050610e6d565b509392505050565b600a546001600160a01b03163314610eec5760405162461bcd60e51b81526004016109da90612ba5565b600f55565b600a546001600160a01b03163314610f1b5760405162461bcd60e51b81526004016109da90612ba5565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f4860085490565b8210610fab5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109da565b60088281548110610fbe57610fbe612c66565b90600052602060002001549050919050565b600a546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016109da90612ba5565b805161100d90600c90602084019061276b565b5050565b6000818152600260205260408120546001600160a01b0316806109aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109da565b600a546001600160a01b031633146110b25760405162461bcd60e51b81526004016109da90612ba5565b6002600b5414156110d55760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff161561112d5760405162461bcd60e51b81526004016109da91906128ba565b50600e54601154600091610100900460ff169061114c90606490612ceb565b6111569190612d02565b611161906001612d02565b60115490915061117390606490612ceb565b8111801561118357506011548111155b6040518060400160405280601481526020017321b0b73737ba1036b4b73a1039b79036b0b73c9760611b815250906111ce5760405162461bcd60e51b81526004016109da91906128ba565b506111d933826120ad565b600e8054610100900460ff169060016111f183612d1a565b91906101000a81548160ff021916908360ff16021790555050506001600b81905550565b600a546001600160a01b0316331461123f5760405162461bcd60e51b81526004016109da90612ba5565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166112cc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109da565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113125760405162461bcd60e51b81526004016109da90612ba5565b61131c60006120c7565b565b606060018054610a1090612bda565b6002600b5414156113505760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff16156113a85760405162461bcd60e51b81526004016109da91906128ba565b50601354604080516080810190915260488082526001600160a01b03909216151591612f6f6020830139906113f05760405162461bcd60e51b81526004016109da91906128ba565b5060408051808201909152601481527321b0b73737ba1036b4b73a1039b79036b0b73c9760611b6020820152600a60ff831611156114415760405162461bcd60e51b81526004016109da91906128ba565b5060008160ff1611611454576001611456565b805b6013546015546010549293506001600160a01b03918216926323b872dd92339216906114869060ff871690612d3a565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af11580156114da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fe9190612d59565b5061150b8160ff16612119565b506001600b55565b6002600b5414156115365760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff161561158e5760405162461bcd60e51b81526004016109da91906128ba565b506014546001600160a01b031615806115b057506013546001600160a01b0316155b604051806080016040528060488152602001612f6f60489139906115e75760405162461bcd60e51b81526004016109da91906128ba565b5060408051808201909152601481527321b0b73737ba1036b4b73a1039b79036b0b73c9760611b6020820152600a8211156116355760405162461bcd60e51b81526004016109da91906128ba565b5060008111611645576001611647565b805b90506012548161165660085490565b6011546116639190612d02565b61166d9190612d02565b11156040518060400160405280601481526020017326b4b73a34b7339034b9903334b734b9b432b21760611b815250906116ba5760405162461bcd60e51b81526004016109da91906128ba565b5080600f546116c99190612d3a565b3410156116d557600080fd5b61150b81612119565b6001600160a01b0382163314156117375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109da565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117cd5760405162461bcd60e51b81526004016109da90612ba5565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118195760405162461bcd60e51b81526004016109da90612ba5565b6015805460ff60a81b1916600160a81b179055565b6118383383611e0b565b6118545760405162461bcd60e51b81526004016109da90612c15565b61186084848484612164565b50505050565b600d8054610b3590612bda565b6000818152600260205260409020546060906001600160a01b031615156040518060400160405280601981526020017f5468697320746f6b656e496420646f65736e7420657869737400000000000000815250906118e45760405162461bcd60e51b81526004016109da91906128ba565b50601554600160a81b900460ff16611988576016805461190390612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461192f90612bda565b801561197c5780601f106119515761010080835404028352916020019161197c565b820191906000526020600020905b81548152906001019060200180831161195f57829003601f168201915b50505050509050919050565b6000611992612197565b905060008151116119b257604051806020016040528060008152506119e0565b806119bc846121a6565b600d6040516020016119d093929190612d76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a115760405162461bcd60e51b81526004016109da90612ba5565b601154600090611a2390606490612ceb565b90505b6012548111610df657807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611a5a83611873565b604051611a6791906128ba565b60405180910390a280611a7981612e3a565b915050611a26565b600a546001600160a01b03163314611aab5760405162461bcd60e51b81526004016109da90612ba5565b805161100d90600d90602084019061276b565b600a546001600160a01b03163314611ae85760405162461bcd60e51b81526004016109da90612ba5565b601055565b600a546001600160a01b03163314611b175760405162461bcd60e51b81526004016109da90612ba5565b805161100d90601690602084019061276b565b600a546001600160a01b03163314611b545760405162461bcd60e51b81526004016109da90612ba5565b6001600160a01b038116611bb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109da565b610df6816120c7565b6002600b541415611be55760405162461bcd60e51b81526004016109da90612cb4565b6002600b5560155460408051808201909152601081526f26b4b73a34b733b9903830bab9b2b21760811b602082015290600160a01b900460ff1615611c3d5760405162461bcd60e51b81526004016109da91906128ba565b50601454604080516080810190915260488082526001600160a01b03909216151591612f6f602083013990611c855760405162461bcd60e51b81526004016109da91906128ba565b506014546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611cdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d039190612e55565b11604051806060016040528060218152602001612fb76021913990611d3b5760405162461bcd60e51b81526004016109da91906128ba565b50611d466001612119565b6001600b55565b60006001600160e01b031982166380ac58cd60e01b1480611d7e57506001600160e01b03198216635b5e139f60e01b145b806109aa57506301ffc9a760e01b6001600160e01b03198316146109aa565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dd282611011565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109da565b6000611e8f83611011565b9050806001600160a01b0316846001600160a01b03161480611eca5750836001600160a01b0316611ebf84610a93565b6001600160a01b0316145b80611efa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f1582611011565b6001600160a01b031614611f7d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109da565b6001600160a01b038216611fdf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109da565b611fea8383836122a4565b611ff5600082611d9d565b6001600160a01b038316600090815260036020526040812080546001929061201e908490612ceb565b90915550506001600160a01b038216600090815260036020526040812080546001929061204c908490612d02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61100d82826040518060200160405280600081525061235c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061212460085490565b905060015b828111610cc7576121523382846011546121439190612d02565b61214d9190612d02565b6120ad565b8061215c81612e3a565b915050612129565b61216f848484611f02565b61217b8484848461238f565b6118605760405162461bcd60e51b81526004016109da90612e6e565b6060600c8054610a1090612bda565b6060816121ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121f457806121de81612e3a565b91506121ed9050600a83612ed6565b91506121ce565b60008167ffffffffffffffff81111561220f5761220f6129c7565b6040519080825280601f01601f191660200182016040528015612239576020820181803683370190505b5090505b8415611efa5761224e600183612ceb565b915061225b600a86612eea565b612266906030612d02565b60f81b81838151811061227b5761227b612c66565b60200101906001600160f81b031916908160001a90535061229d600a86612ed6565b945061223d565b6001600160a01b0383166122ff576122fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612322565b816001600160a01b0316836001600160a01b03161461232257612322838261248d565b6001600160a01b03821661233957610cc78161252a565b826001600160a01b0316826001600160a01b031614610cc757610cc782826125d9565b612366838361261d565b612373600084848461238f565b610cc75760405162461bcd60e51b81526004016109da90612e6e565b60006001600160a01b0384163b1561248257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d3903390899088908890600401612efe565b6020604051808303816000875af192505050801561240e575060408051601f3d908101601f1916820190925261240b91810190612f3b565b60015b612468573d80801561243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b5080516124605760405162461bcd60e51b81526004016109da90612e6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611efa565b506001949350505050565b6000600161249a84611261565b6124a49190612ceb565b6000838152600760205260409020549091508082146124f7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061253c90600190612ceb565b6000838152600960205260408120546008805493945090928490811061256457612564612c66565b90600052602060002001549050806008838154811061258557612585612c66565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125bd576125bd612f58565b6001900381819060005260206000200160009055905550505050565b60006125e483611261565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109da565b6000818152600260205260409020546001600160a01b0316156126d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109da565b6126e4600083836122a4565b6001600160a01b038216600090815260036020526040812080546001929061270d908490612d02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461277790612bda565b90600052602060002090601f01602090048101928261279957600085556127df565b82601f106127b257805160ff19168380011785556127df565b828001600101855582156127df579182015b828111156127df5782518255916020019190600101906127c4565b506127eb9291506127ef565b5090565b5b808211156127eb57600081556001016127f0565b6001600160e01b031981168114610df657600080fd5b60006020828403121561282c57600080fd5b81356119e081612804565b8015158114610df657600080fd5b60006020828403121561285757600080fd5b81356119e081612837565b60005b8381101561287d578181015183820152602001612865565b838111156118605750506000910152565b600081518084526128a6816020860160208601612862565b601f01601f19169290920160200192915050565b6020815260006119e0602083018461288e565b6000602082840312156128df57600080fd5b5035919050565b80356001600160a01b03811681146128fd57600080fd5b919050565b6000806040838503121561291557600080fd5b61291e836128e6565b946020939093013593505050565b60008060006060848603121561294157600080fd5b61294a846128e6565b9250612958602085016128e6565b9150604084013590509250925092565b60006020828403121561297a57600080fd5b6119e0826128e6565b6020808252825182820181905260009190848201906040850190845b818110156129bb5783518352928401929184019160010161299f565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156129f8576129f86129c7565b604051601f8501601f19908116603f01168101908282118183101715612a2057612a206129c7565b81604052809350858152868686011115612a3957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a6557600080fd5b813567ffffffffffffffff811115612a7c57600080fd5b8201601f81018413612a8d57600080fd5b611efa848235602084016129dd565b600060208284031215612aae57600080fd5b813560ff811681146119e057600080fd5b60008060408385031215612ad257600080fd5b612adb836128e6565b91506020830135612aeb81612837565b809150509250929050565b60008060008060808587031215612b0c57600080fd5b612b15856128e6565b9350612b23602086016128e6565b925060408501359150606085013567ffffffffffffffff811115612b4657600080fd5b8501601f81018713612b5757600080fd5b612b66878235602084016129dd565b91505092959194509250565b60008060408385031215612b8557600080fd5b612b8e836128e6565b9150612b9c602084016128e6565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612bee57607f821691505b60208210811415612c0f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681811415612caa57612caa612c7c565b6001019392505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082821015612cfd57612cfd612c7c565b500390565b60008219821115612d1557612d15612c7c565b500190565b600060ff821660ff811415612d3157612d31612c7c565b60010192915050565b6000816000190483118215151615612d5457612d54612c7c565b500290565b600060208284031215612d6b57600080fd5b81516119e081612837565b600084516020612d898285838a01612862565b855191840191612d9c8184848a01612862565b8554920191600090600181811c9080831680612db957607f831692505b858310811415612dd757634e487b7160e01b85526022600452602485fd5b808015612deb5760018114612dfc57612e29565b60ff19851688528388019550612e29565b60008b81526020902060005b85811015612e215781548a820152908401908801612e08565b505083880195505b50939b9a5050505050505050505050565b6000600019821415612e4e57612e4e612c7c565b5060010190565b600060208284031215612e6757600080fd5b5051919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ee557612ee5612ec0565b500490565b600082612ef957612ef9612ec0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f319083018461288e565b9695505050505050565b600060208284031215612f4d57600080fd5b81516119e081612804565b634e487b7160e01b600052603160045260246000fdfe54686973206d696e74696e67206d6574686f64206973206e6f7420617661696c61626c6520666f72207468697320636861696e2e2055736520416e6f74686572206d6574686f6421596f7520646f206e6f74206f776e20616e792054726176656c6572204c6f6f742ea264697066735822122004c0cc1b42c4f8d7bd1351f0e7258358c088209069ca4346459cc9b04c97f6fc64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c6b935b8bbd40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001350fbe8ce27762ec19134bf8fc405a427fe9bf100000000000000000000000038cd9992e44064cb8bd68cdf17d164b82b25277c0000000000000000000000009e202e5d45fc8ae7cef6b845de7c91ac3230469a000000000000000000000000000000000000000000000000000000000000000f4c6974746c652054726176656c65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000854524156454c455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Little Traveler
Arg [1] : _symbol (string): TRAVELER
Arg [2] : _initBaseURI (string): /
Arg [3] : _initNotRevealedUri (string): /
Arg [4] : _cost (uint256): 0
Arg [5] : _costTrips (uint256): 2000000000000000000000
Arg [6] : _chainNumber (uint8): 0
Arg [7] : _tripsAddress (address): 0x1350Fbe8Ce27762ec19134bf8FC405a427fe9Bf1
Arg [8] : _travelerLootAddress (address): 0x38Cd9992E44064Cb8bd68cDF17D164b82b25277c
Arg [9] : _treasurerAddress (address): 0x9E202E5d45fC8ae7cef6B845De7C91AC3230469a
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 00000000000000000000000000000000000000000000006c6b935b8bbd400000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000001350fbe8ce27762ec19134bf8fc405a427fe9bf1
Arg [8] : 00000000000000000000000038cd9992e44064cb8bd68cdf17d164b82b25277c
Arg [9] : 0000000000000000000000009e202e5d45fc8ae7cef6b845de7c91ac3230469a
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [11] : 4c6974746c652054726176656c65720000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 54524156454c4552000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46228:8994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34673:224;;;;;;;;;;-1:-1:-1;34673:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34673:224:0;;;;;;;;54848:75;;;;;;;;;;-1:-1:-1;54848:75:0;;;;;:::i;:::-;;:::i;:::-;;46548:42;;;;;;;;;;;;46586:4;46548:42;;;;;1135:6:1;1123:19;;;1105:38;;1093:2;1078:18;46548:42:0;961:188:1;22564:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24123:221::-;;;;;;;;;;-1:-1:-1;24123:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2254:32:1;;;2236:51;;2224:2;2209:18;24123:221:0;2090:203:1;47456:28:0;;;;;;;;;;;;;:::i;23646:411::-;;;;;;;;;;-1:-1:-1;23646:411:0;;;;;:::i;:::-;;:::i;46425:29::-;;;;;;;;;;-1:-1:-1;46425:29:0;;;;;;;;;;;;;;2907:4:1;2895:17;;;2877:36;;2865:2;2850:18;46425:29:0;2735:184:1;46649:19:0;;;;;;;;;;;;;;;;;;;3070:25:1;;;3058:2;3043:18;46649:19:0;2924:177:1;46732:24:0;;;;;;;;;;;;;;;;35313:113;;;;;;;;;;-1:-1:-1;35401:10:0;:17;35313:113;;46459:40;;;;;;;;;;;;46497:2;46459:40;;25013:339;;;;;;;;;;-1:-1:-1;25013:339:0;;;;;:::i;:::-;;:::i;46793:34::-;;;;;;;;;;-1:-1:-1;46793:34:0;;;;-1:-1:-1;;;;;46793:34:0;;;34981:256;;;;;;;;;;-1:-1:-1;34981:256:0;;;;;:::i;:::-;;:::i;46673:24::-;;;;;;;;;;;;;;;;55110:109;;;;;;;;;;;;;:::i;25423:185::-;;;;;;;;;;-1:-1:-1;25423:185:0;;;;;:::i;:::-;;:::i;51270:330::-;;;;;;;;;;-1:-1:-1;51270:330:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52741:82::-;;;;;;;;;;-1:-1:-1;52741:82:0;;;;;:::i;:::-;;:::i;54003:107::-;;;;;;;;;;-1:-1:-1;54003:107:0;;;;;:::i;:::-;;:::i;35503:233::-;;;;;;;;;;-1:-1:-1;35503:233:0;;;;;:::i;:::-;;:::i;47423:28::-;;;;;;;;;;-1:-1:-1;47423:28:0;;;;-1:-1:-1;;;47423:28:0;;;;;;53497:100;;;;;;;;;;-1:-1:-1;53497:100:0;;;;;:::i;:::-;;:::i;47393:25::-;;;;;;;;;;-1:-1:-1;47393:25:0;;;;-1:-1:-1;;;47393:25:0;;;;;;22258:239;;;;;;;;;;-1:-1:-1;22258:239:0;;;;;:::i;:::-;;:::i;46832:31::-;;;;;;;;;;-1:-1:-1;46832:31:0;;;;-1:-1:-1;;;;;46832:31:0;;;50728:348;;;;;;;;;;;;;:::i;54271:135::-;;;;;;;;;;-1:-1:-1;54271:135:0;;;;;:::i;:::-;;:::i;21988:208::-;;;;;;;;;;-1:-1:-1;21988:208:0;;;;;:::i;:::-;;:::i;42463:94::-;;;;;;;;;;;;;:::i;41812:87::-;;;;;;;;;;-1:-1:-1;41885:6:0;;-1:-1:-1;;;;;41885:6:0;41812:87;;22733:104;;;;;;;;;;;;;:::i;50116:427::-;;;;;;;;;;-1:-1:-1;50116:427:0;;;;;:::i;:::-;;:::i;46595:49::-;;;;;;;;;;;;46639:5;46595:49;;46504:39;;;;;;;;;;;;46540:3;46504:39;;48849:509;;;;;;:::i;:::-;;:::i;24416:295::-;;;;;;;;;;-1:-1:-1;24416:295:0;;;;;:::i;:::-;;:::i;54558:123::-;;;;;;;;;;-1:-1:-1;54558:123:0;;;;;:::i;:::-;;:::i;52543:67::-;;;;;;;;;;;;;:::i;25679:328::-;;;;;;;;;;-1:-1:-1;25679:328:0;;;;;:::i;:::-;;:::i;46396:24::-;;;;;;;;;;-1:-1:-1;46396:24:0;;;;;;;;46354:37;;;;;;;;;;;;;:::i;51770:404::-;;;;;;;;;;-1:-1:-1;51770:404:0;;;;;:::i;:::-;;:::i;52271:200::-;;;;;;;;;;;;;:::i;53743:124::-;;;;;;;;;;-1:-1:-1;53743:124:0;;;;;:::i;:::-;;:::i;46761:27::-;;;;;;;;;;-1:-1:-1;46761:27:0;;;;-1:-1:-1;;;;;46761:27:0;;;46702:25;;;;;;;;;;;;;;;;52963:102;;;;;;;;;;-1:-1:-1;52963:102:0;;;;;:::i;:::-;;:::i;24782:164::-;;;;;;;;;;-1:-1:-1;24782:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24903:25:0;;;24879:4;24903:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24782:164;53236:122;;;;;;;;;;-1:-1:-1;53236:122:0;;;;;:::i;:::-;;:::i;42712:192::-;;;;;;;;;;-1:-1:-1;42712:192:0;;;;;:::i;:::-;;:::i;49527:305::-;;;;;;;;;;;;;:::i;34673:224::-;34775:4;-1:-1:-1;;;;;;34799:50:0;;-1:-1:-1;;;34799:50:0;;:90;;;34853:36;34877:11;34853:23;:36::i;:::-;34792:97;34673:224;-1:-1:-1;;34673:224:0:o;54848:75::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;;;;;;;;;54902:6:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;54902:15:0::1;-1:-1:-1::0;;;;54902:15:0;;::::1;::::0;;;::::1;::::0;;54848:75::o;22564:100::-;22618:13;22651:5;22644:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22564:100;:::o;24123:221::-;24199:7;27606:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27606:16:0;24219:73;;;;-1:-1:-1;;;24219:73:0;;7971:2:1;24219:73:0;;;7953:21:1;8010:2;7990:18;;;7983:30;8049:34;8029:18;;;8022:62;-1:-1:-1;;;8100:18:1;;;8093:42;8152:19;;24219:73:0;7769:408:1;24219:73:0;-1:-1:-1;24312:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24312:24:0;;24123:221::o;47456:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23646:411::-;23727:13;23743:23;23758:7;23743:14;:23::i;:::-;23727:39;;23791:5;-1:-1:-1;;;;;23785:11:0;:2;-1:-1:-1;;;;;23785:11:0;;;23777:57;;;;-1:-1:-1;;;23777:57:0;;8384:2:1;23777:57:0;;;8366:21:1;8423:2;8403:18;;;8396:30;8462:34;8442:18;;;8435:62;-1:-1:-1;;;8513:18:1;;;8506:31;8554:19;;23777:57:0;8182:397:1;23777:57:0;20172:10;-1:-1:-1;;;;;23869:21:0;;;;:62;;-1:-1:-1;23894:37:0;23911:5;20172:10;24782:164;:::i;23894:37::-;23847:168;;;;-1:-1:-1;;;23847:168:0;;8786:2:1;23847:168:0;;;8768:21:1;8825:2;8805:18;;;8798:30;8864:34;8844:18;;;8837:62;8935:26;8915:18;;;8908:54;8979:19;;23847:168:0;8584:420:1;23847:168:0;24028:21;24037:2;24041:7;24028:8;:21::i;:::-;23716:341;23646:411;;:::o;25013:339::-;25208:41;20172:10;25241:7;25208:18;:41::i;:::-;25200:103;;;;-1:-1:-1;;;25200:103:0;;;;;;;:::i;:::-;25316:28;25326:4;25332:2;25336:7;25316:9;:28::i;34981:256::-;35078:7;35114:23;35131:5;35114:16;:23::i;:::-;35106:5;:31;35098:87;;;;-1:-1:-1;;;35098:87:0;;9629:2:1;35098:87:0;;;9611:21:1;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:41;9809:19;;35098:87:0;9427:407:1;35098:87:0;-1:-1:-1;;;;;;35203:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34981:256::o;55110:109::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;55164:16:::1;::::0;55156:57:::1;::::0;-1:-1:-1;;;;;55164:16:0;;::::1;::::0;55191:21:::1;55156:57:::0;::::1;;;::::0;55164:16:::1;55156:57:::0;55164:16;55156:57;55191:21;55164:16;55156:57;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55110:109::o:0;25423:185::-;25561:39;25578:4;25584:2;25588:7;25561:39;;;;;;;;;;;;:16;:39::i;51270:330::-;51332:16;51356:23;51382:17;51392:6;51382:9;:17::i;:::-;51356:43;;51406:25;51448:15;51434:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51434:30:0;;51406:58;;51476:8;51471:102;51490:15;51486:1;:19;;;51471:102;;;51535:30;51555:6;51563:1;51535:30;;:19;:30::i;:::-;51521:8;51530:1;51521:11;;;;;;;;;;:::i;:::-;;;;;;;;;;:44;51507:3;;;;:::i;:::-;;;;51471:102;;;-1:-1:-1;51586:8:0;51270:330;-1:-1:-1;;;51270:330:0:o;52741:82::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;52802:4:::1;:15:::0;52741:82::o;54003:107::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;54076:12:::1;:28:::0;;-1:-1:-1;;;;;;54076:28:0::1;-1:-1:-1::0;;;;;54076:28:0;;;::::1;::::0;;;::::1;::::0;;54003:107::o;35503:233::-;35578:7;35614:30;35401:10;:17;;35313:113;35614:30;35606:5;:38;35598:95;;;;-1:-1:-1;;;35598:95:0;;10507:2:1;35598:95:0;;;10489:21:1;10546:2;10526:18;;;10519:30;10585:34;10565:18;;;10558:62;-1:-1:-1;;;10636:18:1;;;10629:42;10688:19;;35598:95:0;10305:408:1;35598:95:0;35711:10;35722:5;35711:17;;;;;;;;:::i;:::-;;;;;;;;;35704:24;;35503:233;;;:::o;53497:100::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;53570:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53497:100:::0;:::o;22258:239::-;22330:7;22366:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22366:16:0;22401:19;22393:73;;;;-1:-1:-1;;;22393:73:0;;10920:2:1;22393:73:0;;;10902:21:1;10959:2;10939:18;;;10932:30;10998:34;10978:18;;;10971:62;-1:-1:-1;;;11049:18:1;;;11042:39;11098:19;;22393:73:0;10718:405:1;50728:348:0;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;44743:1:::1;45339:7;;:19;;45331:63;;;;-1:-1:-1::0;;;45331:63:0::1;;;;;;;:::i;:::-;44743:1;45472:7;:18:::0;50798:6:::2;::::0;50806:12:::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;50806:12:0::2;::::0;::::2;::::0;;-1:-1:-1;;;50798:6:0;::::2;;;50797:7;50789:30;;;;-1:-1:-1::0;;;50789:30:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;50879:12:0::2;::::0;50852:10:::2;::::0;50826:23:::2;::::0;50879:12:::2;::::0;::::2;;;::::0;50852:24:::2;::::0;46540:3:::2;::::0;50852:24:::2;:::i;:::-;:39;;;;:::i;:::-;:43;::::0;50894:1:::2;50852:43;:::i;:::-;50928:10;::::0;50826:69;;-1:-1:-1;50928:24:0::2;::::0;46540:3:::2;::::0;50928:24:::2;:::i;:::-;50910:15;:42;:75;;;;;50975:10;;50956:15;:29;;50910:75;50987:14;;;;;;;;;;;;;-1:-1:-1::0;;;50987:14:0::2;;::::0;50902:100:::2;;;;;-1:-1:-1::0;;;50902:100:0::2;;;;;;;;:::i;:::-;;51010:38;51020:10;51032:15;51010:9;:38::i;:::-;51056:12;:14:::0;;::::2;::::0;::::2;;;::::0;:12:::2;:14;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;50782:294;44699:1:::1;45651:7;:22;;;;50728:348::o:0;54271:135::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;54358:19:::1;:42:::0;;-1:-1:-1;;;;;;54358:42:0::1;-1:-1:-1::0;;;;;54358:42:0;;;::::1;::::0;;;::::1;::::0;;54271:135::o;21988:208::-;22060:7;-1:-1:-1;;;;;22088:19:0;;22080:74;;;;-1:-1:-1;;;22080:74:0;;12133:2:1;22080:74:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:34;12191:18;;;12184:62;-1:-1:-1;;;12262:18:1;;;12255:40;12312:19;;22080:74:0;11931:406:1;22080:74:0;-1:-1:-1;;;;;;22172:16:0;;;;;:9;:16;;;;;;;21988:208::o;42463:94::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;42528:21:::1;42546:1;42528:9;:21::i;:::-;42463:94::o:0;22733:104::-;22789:13;22822:7;22815:14;;;;;:::i;50116:427::-;44743:1;45339:7;;:19;;45331:63;;;;-1:-1:-1;;;45331:63:0;;;;;;;:::i;:::-;44743:1;45472:7;:18;50195:6:::1;::::0;50203:12:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;50203:12:0::1;::::0;::::1;::::0;;-1:-1:-1;;;50195:6:0;::::1;;;50194:7;50186:30;;;;-1:-1:-1::0;;;50186:30:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;50231:12:0::1;::::0;50259:32:::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;;;50231:12:0;;::::1;:26:::0;::::1;::::0;50259:32:::1;;::::0;::::1;;50223:69;;;;;-1:-1:-1::0;;;50223:69:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;50337:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;50337:14:0::1;::::0;::::1;::::0;46497:2:::1;50307:28;::::0;::::1;;;50299:53;;;;-1:-1:-1::0;;;50299:53:0::1;;;;;;;;:::i;:::-;;50387:1;50373:11;:15;;;:33;;50405:1;50373:33;;;50391:11;50373:33;50420:12;::::0;50459:16:::1;::::0;50477:9:::1;::::0;50359:47;;-1:-1:-1;;;;;;50420:12:0;;::::1;::::0;50413:33:::1;::::0;50447:10:::1;::::0;50459:16:::1;::::0;50477:23:::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;50413:88;::::0;-1:-1:-1;;;;;;50413:88:0::1;::::0;;;;;;-1:-1:-1;;;;;12773:15:1;;;50413:88:0::1;::::0;::::1;12755:34:1::0;12825:15;;;;12805:18;;;12798:43;12857:18;;;12850:34;12690:18;;50413:88:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50508:29;50525:11;50508:29;;:16;:29::i;:::-;-1:-1:-1::0;44699:1:0;45651:7;:22;50116:427::o;48849:509::-;44743:1;45339:7;;:19;;45331:63;;;;-1:-1:-1;;;45331:63:0;;;;;;;:::i;:::-;44743:1;45472:7;:18;48929:6:::1;::::0;48937:12:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;48937:12:0::1;::::0;::::1;::::0;;-1:-1:-1;;;48929:6:0;::::1;;;48928:7;48920:30;;;;-1:-1:-1::0;;;48920:30:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;48965:19:0::1;::::0;-1:-1:-1;;;;;48965:19:0::1;:33:::0;;:63:::1;;-1:-1:-1::0;49002:12:0::1;::::0;-1:-1:-1;;;;;49002:12:0::1;:26:::0;48965:63:::1;49030:32;;;;;;;;;;;;;;;;;48957:106;;;;;-1:-1:-1::0;;;48957:106:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;49108:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;49108:14:0::1;::::0;::::1;::::0;46497:2:::1;49078:28:::0;::::1;;49070:53;;;;-1:-1:-1::0;;;49070:53:0::1;;;;;;;;:::i;:::-;;49158:1;49144:11;:15;:33;;49176:1;49144:33;;;49162:11;49144:33;49130:47;;49238:9;;49223:11;49206:13;35401:10:::0;:17;;35313:113;49206:13:::1;49193:10;;:26;;;;:::i;:::-;49192:42;;;;:::i;:::-;:55;;49249:19;;;;;;;;;;;;;-1:-1:-1::0;;;49249:19:0::1;;::::0;49184:85:::1;;;;;-1:-1:-1::0;;;49184:85:0::1;;;;;;;;:::i;:::-;;49304:11;49297:4;;:18;;;;:::i;:::-;49284:9;:31;;49276:40;;;::::0;::::1;;49323:29;49340:11;49323:16;:29::i;24416:295::-:0;-1:-1:-1;;;;;24519:24:0;;20172:10;24519:24;;24511:62;;;;-1:-1:-1;;;24511:62:0;;13347:2:1;24511:62:0;;;13329:21:1;13386:2;13366:18;;;13359:30;13425:27;13405:18;;;13398:55;13470:18;;24511:62:0;13145:349:1;24511:62:0;20172:10;24586:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24586:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24586:53:0;;;;;;;;;;24655:48;;540:41:1;;;24586:42:0;;20172:10;24655:48;;513:18:1;24655:48:0;;;;;;;24416:295;;:::o;54558:123::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;54639:16:::1;:36:::0;;-1:-1:-1;;;;;;54639:36:0::1;-1:-1:-1::0;;;;;54639:36:0;;;::::1;::::0;;;::::1;::::0;;54558:123::o;52543:67::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;52589:8:::1;:15:::0;;-1:-1:-1;;;;52589:15:0::1;-1:-1:-1::0;;;52589:15:0::1;::::0;;52543:67::o;25679:328::-;25854:41;20172:10;25887:7;25854:18;:41::i;:::-;25846:103;;;;-1:-1:-1;;;25846:103:0;;;;;;;:::i;:::-;25960:39;25974:4;25980:2;25984:7;25993:5;25960:13;:39::i;:::-;25679:328;;;;:::o;46354:37::-;;;;;;;:::i;51770:404::-;27582:4;27606:16;;;:7;:16;;;;;;51843:13;;-1:-1:-1;;;;;27606:16:0;:30;;51891;;;;;;;;;;;;;;;;;51864:58;;;;;-1:-1:-1;;;51864:58:0;;;;;;;;:::i;:::-;-1:-1:-1;51934:8:0;;-1:-1:-1;;;51934:8:0;;;;51931:60;;51969:14;51962:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51770:404;;;:::o;51931:60::-;51999:28;52030:10;:8;:10::i;:::-;51999:41;;52085:1;52060:14;52054:28;:32;:114;;;;;;;;;;;;;;;;;52113:14;52129:18;:7;:16;:18::i;:::-;52149:13;52096:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52054:114;52047:121;51770:404;-1:-1:-1;;;51770:404:0:o;52271:200::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;52346:10:::1;::::0;52328:15:::1;::::0;52346:24:::1;::::0;46540:3:::1;::::0;52346:24:::1;:::i;:::-;52328:42;;52323:143;52383:9;;52372:7;:20;52323:143;;52450:7;52418:40;52431:17;52440:7;52431:8;:17::i;:::-;52418:40;;;;;;:::i;:::-;;;;;;;;52394:9:::0;::::1;::::0;::::1;:::i;:::-;;;;52323:143;;53743:124:::0;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;53828:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;52963:102::-:0;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;53034:9:::1;:25:::0;52963:102::o;53236:122::-;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;53320:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42712:192::-:0;41885:6;;-1:-1:-1;;;;;41885:6:0;20172:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42801:22:0;::::1;42793:73;;;::::0;-1:-1:-1;;;42793:73:0;;15499:2:1;42793:73:0::1;::::0;::::1;15481:21:1::0;15538:2;15518:18;;;15511:30;15577:34;15557:18;;;15550:62;-1:-1:-1;;;15628:18:1;;;15621:36;15674:19;;42793:73:0::1;15297:402:1::0;42793:73:0::1;42877:19;42887:8;42877:9;:19::i;49527:305::-:0;44743:1;45339:7;;:19;;45331:63;;;;-1:-1:-1;;;45331:63:0;;;;;;;:::i;:::-;44743:1;45472:7;:18;49594:6:::1;::::0;49602:12:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;49602:12:0::1;::::0;::::1;::::0;;-1:-1:-1;;;49594:6:0;::::1;;;49593:7;49585:30;;;;-1:-1:-1::0;;;49585:30:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;49630:19:0::1;::::0;49665:32:::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;;;49630:19:0;;::::1;:33:::0;::::1;::::0;49665:32:::1;;::::0;::::1;;49622:76;;;;;-1:-1:-1::0;;;49622:76:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;49721:19:0::1;::::0;49768:1:::1;::::0;-1:-1:-1;;;;;49721:19:0::1;49713:38;20172:10:::0;49713:52:::1;::::0;-1:-1:-1;;;;;;49713:52:0::1;::::0;;;;;;-1:-1:-1;;;;;2254:32:1;;;49713:52:0::1;::::0;::::1;2236:51:1::0;2209:18;;49713:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;49771:28;;;;;;;;;;;;;;;;;49705:95;;;;;-1:-1:-1::0;;;49705:95:0::1;;;;;;;;:::i;:::-;;49807:19;49824:1;49807:16;:19::i;:::-;44699:1:::0;45651:7;:22;49527:305::o;21619:::-;21721:4;-1:-1:-1;;;;;;21758:40:0;;-1:-1:-1;;;21758:40:0;;:105;;-1:-1:-1;;;;;;;21815:48:0;;-1:-1:-1;;;21815:48:0;21758:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21880:36;7444:157;31499:174;31574:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31574:29:0;-1:-1:-1;;;;;31574:29:0;;;;;;;;:24;;31628:23;31574:24;31628:14;:23::i;:::-;-1:-1:-1;;;;;31619:46:0;;;;;;;;;;;31499:174;;:::o;27811:348::-;27904:4;27606:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27606:16:0;27921:73;;;;-1:-1:-1;;;27921:73:0;;16095:2:1;27921:73:0;;;16077:21:1;16134:2;16114:18;;;16107:30;16173:34;16153:18;;;16146:62;-1:-1:-1;;;16224:18:1;;;16217:42;16276:19;;27921:73:0;15893:408:1;27921:73:0;28005:13;28021:23;28036:7;28021:14;:23::i;:::-;28005:39;;28074:5;-1:-1:-1;;;;;28063:16:0;:7;-1:-1:-1;;;;;28063:16:0;;:51;;;;28107:7;-1:-1:-1;;;;;28083:31:0;:20;28095:7;28083:11;:20::i;:::-;-1:-1:-1;;;;;28083:31:0;;28063:51;:87;;;-1:-1:-1;;;;;;24903:25:0;;;24879:4;24903:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28118:32;28055:96;27811:348;-1:-1:-1;;;;27811:348:0:o;30803:578::-;30962:4;-1:-1:-1;;;;;30935:31:0;:23;30950:7;30935:14;:23::i;:::-;-1:-1:-1;;;;;30935:31:0;;30927:85;;;;-1:-1:-1;;;30927:85:0;;16508:2:1;30927:85:0;;;16490:21:1;16547:2;16527:18;;;16520:30;16586:34;16566:18;;;16559:62;-1:-1:-1;;;16637:18:1;;;16630:39;16686:19;;30927:85:0;16306:405:1;30927:85:0;-1:-1:-1;;;;;31031:16:0;;31023:65;;;;-1:-1:-1;;;31023:65:0;;16918:2:1;31023:65:0;;;16900:21:1;16957:2;16937:18;;;16930:30;16996:34;16976:18;;;16969:62;-1:-1:-1;;;17047:18:1;;;17040:34;17091:19;;31023:65:0;16716:400:1;31023:65:0;31101:39;31122:4;31128:2;31132:7;31101:20;:39::i;:::-;31205:29;31222:1;31226:7;31205:8;:29::i;:::-;-1:-1:-1;;;;;31247:15:0;;;;;;:9;:15;;;;;:20;;31266:1;;31247:15;:20;;31266:1;;31247:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31278:13:0;;;;;;:9;:13;;;;;:18;;31295:1;;31278:13;:18;;31295:1;;31278:18;:::i;:::-;;;;-1:-1:-1;;31307:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31307:21:0;-1:-1:-1;;;;;31307:21:0;;;;;;;;;31346:27;;31307:16;;31346:27;;;;;;;30803:578;;;:::o;28501:110::-;28577:26;28587:2;28591:7;28577:26;;;;;;;;;;;;:9;:26::i;42912:173::-;42987:6;;;-1:-1:-1;;;;;43004:17:0;;;-1:-1:-1;;;;;;43004:17:0;;;;;;;43037:40;;42987:6;;;43004:17;42987:6;;43037:40;;42968:16;;43037:40;42957:128;42912:173;:::o;48347:219::-;48410:18;48431:13;35401:10;:17;;35313:113;48431:13;48410:34;-1:-1:-1;48468:1:0;48451:110;48476:11;48471:1;:16;48451:110;;48503:50;48513:10;48551:1;48538:10;48525;;:23;;;;:::i;:::-;:27;;;;:::i;:::-;48503:9;:50::i;:::-;48489:3;;;;:::i;:::-;;;;48451:110;;26889:315;27046:28;27056:4;27062:2;27066:7;27046:9;:28::i;:::-;27093:48;27116:4;27122:2;27126:7;27135:5;27093:22;:48::i;:::-;27085:111;;;;-1:-1:-1;;;27085:111:0;;;;;;;:::i;48239:102::-;48299:13;48328:7;48321:14;;;;;:::i;7920:723::-;7976:13;8197:10;8193:53;;-1:-1:-1;;8224:10:0;;;;;;;;;;;;-1:-1:-1;;;8224:10:0;;;;;7920:723::o;8193:53::-;8271:5;8256:12;8312:78;8319:9;;8312:78;;8345:8;;;;:::i;:::-;;-1:-1:-1;8368:10:0;;-1:-1:-1;8376:2:0;8368:10;;:::i;:::-;;;8312:78;;;8400:19;8432:6;8422:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8422:17:0;;8400:39;;8450:154;8457:10;;8450:154;;8484:11;8494:1;8484:11;;:::i;:::-;;-1:-1:-1;8553:10:0;8561:2;8553:5;:10;:::i;:::-;8540:24;;:2;:24;:::i;:::-;8527:39;;8510:6;8517;8510:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8510:56:0;;;;;;;;-1:-1:-1;8581:11:0;8590:2;8581:11;;:::i;:::-;;;8450:154;;36349:589;-1:-1:-1;;;;;36555:18:0;;36551:187;;36590:40;36622:7;37765:10;:17;;37738:24;;;;:15;:24;;;;;:44;;;37793:24;;;;;;;;;;;;37661:164;36590:40;36551:187;;;36660:2;-1:-1:-1;;;;;36652:10:0;:4;-1:-1:-1;;;;;36652:10:0;;36648:90;;36679:47;36712:4;36718:7;36679:32;:47::i;:::-;-1:-1:-1;;;;;36752:16:0;;36748:183;;36785:45;36822:7;36785:36;:45::i;36748:183::-;36858:4;-1:-1:-1;;;;;36852:10:0;:2;-1:-1:-1;;;;;36852:10:0;;36848:83;;36879:40;36907:2;36911:7;36879:27;:40::i;28838:321::-;28968:18;28974:2;28978:7;28968:5;:18::i;:::-;29019:54;29050:1;29054:2;29058:7;29067:5;29019:22;:54::i;:::-;28997:154;;;;-1:-1:-1;;;28997:154:0;;;;;;;:::i;32238:799::-;32393:4;-1:-1:-1;;;;;32414:13:0;;10769:20;10817:8;32410:620;;32450:72;;-1:-1:-1;;;32450:72:0;;-1:-1:-1;;;;;32450:36:0;;;;;:72;;20172:10;;32501:4;;32507:7;;32516:5;;32450:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32450:72:0;;;;;;;;-1:-1:-1;;32450:72:0;;;;;;;;;;;;:::i;:::-;;;32446:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32692:13:0;;32688:272;;32735:60;;-1:-1:-1;;;32735:60:0;;;;;;;:::i;32688:272::-;32910:6;32904:13;32895:6;32891:2;32887:15;32880:38;32446:529;-1:-1:-1;;;;;;32573:51:0;-1:-1:-1;;;32573:51:0;;-1:-1:-1;32566:58:0;;32410:620;-1:-1:-1;33014:4:0;32238:799;;;;;;:::o;38452:988::-;38718:22;38768:1;38743:22;38760:4;38743:16;:22::i;:::-;:26;;;;:::i;:::-;38780:18;38801:26;;;:17;:26;;;;;;38718:51;;-1:-1:-1;38934:28:0;;;38930:328;;-1:-1:-1;;;;;39001:18:0;;38979:19;39001:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39052:30;;;;;;:44;;;39169:30;;:17;:30;;;;;:43;;;38930:328;-1:-1:-1;39354:26:0;;;;:17;:26;;;;;;;;39347:33;;;-1:-1:-1;;;;;39398:18:0;;;;;:12;:18;;;;;:34;;;;;;;39391:41;38452:988::o;39735:1079::-;40013:10;:17;39988:22;;40013:21;;40033:1;;40013:21;:::i;:::-;40045:18;40066:24;;;:15;:24;;;;;;40439:10;:26;;39988:46;;-1:-1:-1;40066:24:0;;39988:46;;40439:26;;;;;;:::i;:::-;;;;;;;;;40417:48;;40503:11;40478:10;40489;40478:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40583:28;;;:15;:28;;;;;;;:41;;;40755:24;;;;;40748:31;40790:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39806:1008;;;39735:1079;:::o;37239:221::-;37324:14;37341:20;37358:2;37341:16;:20::i;:::-;-1:-1:-1;;;;;37372:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37417:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37239:221:0:o;29495:382::-;-1:-1:-1;;;;;29575:16:0;;29567:61;;;;-1:-1:-1;;;29567:61:0;;18996:2:1;29567:61:0;;;18978:21:1;;;19015:18;;;19008:30;19074:34;19054:18;;;19047:62;19126:18;;29567:61:0;18794:356:1;29567:61:0;27582:4;27606:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27606:16:0;:30;29639:58;;;;-1:-1:-1;;;29639:58:0;;19357:2:1;29639:58:0;;;19339:21:1;19396:2;19376:18;;;19369:30;19435;19415:18;;;19408:58;19483:18;;29639:58:0;19155:352:1;29639:58:0;29710:45;29739:1;29743:2;29747:7;29710:20;:45::i;:::-;-1:-1:-1;;;;;29768:13:0;;;;;;:9;:13;;;;;:18;;29785:1;;29768:13;:18;;29785:1;;29768:18;:::i;:::-;;;;-1:-1:-1;;29797:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29797:21:0;-1:-1:-1;;;;;29797:21:0;;;;;;;;29836:33;;29797:16;;;29836:33;;29797:16;;29836:33;29495:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;1154:258::-;1226:1;1236:113;1250:6;1247:1;1244:13;1236:113;;;1326:11;;;1320:18;1307:11;;;1300:39;1272:2;1265:10;1236:113;;;1367:6;1364:1;1361:13;1358:48;;;-1:-1:-1;;1402:1:1;1384:16;;1377:27;1154:258::o;1417:::-;1459:3;1497:5;1491:12;1524:6;1519:3;1512:19;1540:63;1596:6;1589:4;1584:3;1580:14;1573:4;1566:5;1562:16;1540:63;:::i;:::-;1657:2;1636:15;-1:-1:-1;;1632:29:1;1623:39;;;;1664:4;1619:50;;1417:258;-1:-1:-1;;1417:258:1:o;1680:220::-;1829:2;1818:9;1811:21;1792:4;1849:45;1890:2;1879:9;1875:18;1867:6;1849:45;:::i;1905:180::-;1964:6;2017:2;2005:9;1996:7;1992:23;1988:32;1985:52;;;2033:1;2030;2023:12;1985:52;-1:-1:-1;2056:23:1;;1905:180;-1:-1:-1;1905:180:1:o;2298:173::-;2366:20;;-1:-1:-1;;;;;2415:31:1;;2405:42;;2395:70;;2461:1;2458;2451:12;2395:70;2298:173;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;3106:328::-;3183:6;3191;3199;3252:2;3240:9;3231:7;3227:23;3223:32;3220:52;;;3268:1;3265;3258:12;3220:52;3291:29;3310:9;3291:29;:::i;:::-;3281:39;;3339:38;3373:2;3362:9;3358:18;3339:38;:::i;:::-;3329:48;;3424:2;3413:9;3409:18;3396:32;3386:42;;3106:328;;;;;:::o;3439:186::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3590:29;3609:9;3590:29;:::i;3630:632::-;3801:2;3853:21;;;3923:13;;3826:18;;;3945:22;;;3772:4;;3801:2;4024:15;;;;3998:2;3983:18;;;3772:4;4067:169;4081:6;4078:1;4075:13;4067:169;;;4142:13;;4130:26;;4211:15;;;;4176:12;;;;4103:1;4096:9;4067:169;;;-1:-1:-1;4253:3:1;;3630:632;-1:-1:-1;;;;;;3630:632:1:o;4267:127::-;4328:10;4323:3;4319:20;4316:1;4309:31;4359:4;4356:1;4349:15;4383:4;4380:1;4373:15;4399:632;4464:5;4494:18;4535:2;4527:6;4524:14;4521:40;;;4541:18;;:::i;:::-;4616:2;4610:9;4584:2;4670:15;;-1:-1:-1;;4666:24:1;;;4692:2;4662:33;4658:42;4646:55;;;4716:18;;;4736:22;;;4713:46;4710:72;;;4762:18;;:::i;:::-;4802:10;4798:2;4791:22;4831:6;4822:15;;4861:6;4853;4846:22;4901:3;4892:6;4887:3;4883:16;4880:25;4877:45;;;4918:1;4915;4908:12;4877:45;4968:6;4963:3;4956:4;4948:6;4944:17;4931:44;5023:1;5016:4;5007:6;4999;4995:19;4991:30;4984:41;;;;4399:632;;;;;:::o;5036:451::-;5105:6;5158:2;5146:9;5137:7;5133:23;5129:32;5126:52;;;5174:1;5171;5164:12;5126:52;5214:9;5201:23;5247:18;5239:6;5236:30;5233:50;;;5279:1;5276;5269:12;5233:50;5302:22;;5355:4;5347:13;;5343:27;-1:-1:-1;5333:55:1;;5384:1;5381;5374:12;5333:55;5407:74;5473:7;5468:2;5455:16;5450:2;5446;5442:11;5407:74;:::i;5492:269::-;5549:6;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;5657:9;5644:23;5707:4;5700:5;5696:16;5689:5;5686:27;5676:55;;5727:1;5724;5717:12;5766:315;5831:6;5839;5892:2;5880:9;5871:7;5867:23;5863:32;5860:52;;;5908:1;5905;5898:12;5860:52;5931:29;5950:9;5931:29;:::i;:::-;5921:39;;6010:2;5999:9;5995:18;5982:32;6023:28;6045:5;6023:28;:::i;:::-;6070:5;6060:15;;;5766:315;;;;;:::o;6086:667::-;6181:6;6189;6197;6205;6258:3;6246:9;6237:7;6233:23;6229:33;6226:53;;;6275:1;6272;6265:12;6226:53;6298:29;6317:9;6298:29;:::i;:::-;6288:39;;6346:38;6380:2;6369:9;6365:18;6346:38;:::i;:::-;6336:48;;6431:2;6420:9;6416:18;6403:32;6393:42;;6486:2;6475:9;6471:18;6458:32;6513:18;6505:6;6502:30;6499:50;;;6545:1;6542;6535:12;6499:50;6568:22;;6621:4;6613:13;;6609:27;-1:-1:-1;6599:55:1;;6650:1;6647;6640:12;6599:55;6673:74;6739:7;6734:2;6721:16;6716:2;6712;6708:11;6673:74;:::i;:::-;6663:84;;;6086:667;;;;;;;:::o;6758:260::-;6826:6;6834;6887:2;6875:9;6866:7;6862:23;6858:32;6855:52;;;6903:1;6900;6893:12;6855:52;6926:29;6945:9;6926:29;:::i;:::-;6916:39;;6974:38;7008:2;6997:9;6993:18;6974:38;:::i;:::-;6964:48;;6758:260;;;;;:::o;7023:356::-;7225:2;7207:21;;;7244:18;;;7237:30;7303:34;7298:2;7283:18;;7276:62;7370:2;7355:18;;7023:356::o;7384:380::-;7463:1;7459:12;;;;7506;;;7527:61;;7581:4;7573:6;7569:17;7559:27;;7527:61;7634:2;7626:6;7623:14;7603:18;7600:38;7597:161;;;7680:10;7675:3;7671:20;7668:1;7661:31;7715:4;7712:1;7705:15;7743:4;7740:1;7733:15;7597:161;;7384:380;;;:::o;9009:413::-;9211:2;9193:21;;;9250:2;9230:18;;;9223:30;9289:34;9284:2;9269:18;;9262:62;-1:-1:-1;;;9355:2:1;9340:18;;9333:47;9412:3;9397:19;;9009:413::o;9839:127::-;9900:10;9895:3;9891:20;9888:1;9881:31;9931:4;9928:1;9921:15;9955:4;9952:1;9945:15;9971:127;10032:10;10027:3;10023:20;10020:1;10013:31;10063:4;10060:1;10053:15;10087:4;10084:1;10077:15;10103:197;10141:3;10169:6;10210:2;10203:5;10199:14;10237:2;10228:7;10225:15;10222:41;;;10243:18;;:::i;:::-;10292:1;10279:15;;10103:197;-1:-1:-1;;;10103:197:1:o;11128:355::-;11330:2;11312:21;;;11369:2;11349:18;;;11342:30;11408:33;11403:2;11388:18;;11381:61;11474:2;11459:18;;11128:355::o;11488:125::-;11528:4;11556:1;11553;11550:8;11547:34;;;11561:18;;:::i;:::-;-1:-1:-1;11598:9:1;;11488:125::o;11618:128::-;11658:3;11689:1;11685:6;11682:1;11679:13;11676:39;;;11695:18;;:::i;:::-;-1:-1:-1;11731:9:1;;11618:128::o;11751:175::-;11788:3;11832:4;11825:5;11821:16;11861:4;11852:7;11849:17;11846:43;;;11869:18;;:::i;:::-;11918:1;11905:15;;11751:175;-1:-1:-1;;11751:175:1:o;12342:168::-;12382:7;12448:1;12444;12440:6;12436:14;12433:1;12430:21;12425:1;12418:9;12411:17;12407:45;12404:71;;;12455:18;;:::i;:::-;-1:-1:-1;12495:9:1;;12342:168::o;12895:245::-;12962:6;13015:2;13003:9;12994:7;12990:23;12986:32;12983:52;;;13031:1;13028;13021:12;12983:52;13063:9;13057:16;13082:28;13104:5;13082:28;:::i;13625:1527::-;13849:3;13887:6;13881:13;13913:4;13926:51;13970:6;13965:3;13960:2;13952:6;13948:15;13926:51;:::i;:::-;14040:13;;13999:16;;;;14062:55;14040:13;13999:16;14084:15;;;14062:55;:::i;:::-;14206:13;;14139:20;;;14179:1;;14266;14288:18;;;;14341;;;;14368:93;;14446:4;14436:8;14432:19;14420:31;;14368:93;14509:2;14499:8;14496:16;14476:18;14473:40;14470:167;;;-1:-1:-1;;;14536:33:1;;14592:4;14589:1;14582:15;14622:4;14543:3;14610:17;14470:167;14653:18;14680:110;;;;14804:1;14799:328;;;;14646:481;;14680:110;-1:-1:-1;;14715:24:1;;14701:39;;14760:20;;;;-1:-1:-1;14680:110:1;;14799:328;13572:1;13565:14;;;13609:4;13596:18;;14894:1;14908:169;14922:8;14919:1;14916:15;14908:169;;;15004:14;;14989:13;;;14982:37;15047:16;;;;14939:10;;14908:169;;;14912:3;;15108:8;15101:5;15097:20;15090:27;;14646:481;-1:-1:-1;15143:3:1;;13625:1527;-1:-1:-1;;;;;;;;;;;13625:1527:1:o;15157:135::-;15196:3;-1:-1:-1;;15217:17:1;;15214:43;;;15237:18;;:::i;:::-;-1:-1:-1;15284:1:1;15273:13;;15157:135::o;15704:184::-;15774:6;15827:2;15815:9;15806:7;15802:23;15798:32;15795:52;;;15843:1;15840;15833:12;15795:52;-1:-1:-1;15866:16:1;;15704:184;-1:-1:-1;15704:184:1:o;17121:414::-;17323:2;17305:21;;;17362:2;17342:18;;;17335:30;17401:34;17396:2;17381:18;;17374:62;-1:-1:-1;;;17467:2:1;17452:18;;17445:48;17525:3;17510:19;;17121:414::o;17540:127::-;17601:10;17596:3;17592:20;17589:1;17582:31;17632:4;17629:1;17622:15;17656:4;17653:1;17646:15;17672:120;17712:1;17738;17728:35;;17743:18;;:::i;:::-;-1:-1:-1;17777:9:1;;17672:120::o;17797:112::-;17829:1;17855;17845:35;;17860:18;;:::i;:::-;-1:-1:-1;17894:9:1;;17797:112::o;17914:489::-;-1:-1:-1;;;;;18183:15:1;;;18165:34;;18235:15;;18230:2;18215:18;;18208:43;18282:2;18267:18;;18260:34;;;18330:3;18325:2;18310:18;;18303:31;;;18108:4;;18351:46;;18377:19;;18369:6;18351:46;:::i;:::-;18343:54;17914:489;-1:-1:-1;;;;;;17914:489:1:o;18408:249::-;18477:6;18530:2;18518:9;18509:7;18505:23;18501:32;18498:52;;;18546:1;18543;18536:12;18498:52;18578:9;18572:16;18597:30;18621:5;18597:30;:::i;18662:127::-;18723:10;18718:3;18714:20;18711:1;18704:31;18754:4;18751:1;18744:15;18778:4;18775:1;18768:15
Swarm Source
ipfs://04c0cc1b42c4f8d7bd1351f0e7258358c088209069ca4346459cc9b04c97f6fc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.