ETH Price: $2,589.30 (-2.81%)

Token

Travel Fever (TRFV)
 

Overview

Max Total Supply

2 TRFV

Holders

2

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TravelFever

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-09
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/interfaces/IERC721.sol



pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/TravelFever.sol



pragma solidity ^0.8.4;





contract TravelFever is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    using Strings for uint256;
    string public baseExtension = ".json";
    
    bool public _isSaleActive = false;
    string private _baseURIExtended;
    uint256 public maxMintPerRqst = 1;
    uint256 public maxMintFree = 100;
    uint256 public constant maximSupply = 200;
    uint256 public price = .01 ether;
    
    mapping(address => bool) public freeMintLog;
    address[] arrFreeMintLog;

    event SaleStarted();
    event SaleStopped();
    event TokenMinted(uint256 supply);
    
    constructor() ERC721('Travel Fever', 'TRFV') {
        setBaseURI("ipfs://QmPUCt8VC6aBUr9DDHwFhaTzgpzocR33reEnf1kTmF6D8C/");
    }
    
    function getTokensByOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }
    
    function _doMint (uint256 num_tokens, address to) internal {
        require(totalSupply().add(num_tokens) <= maximSupply, 'Not enough tokens, try lower value.');
        uint256 supply = totalSupply();
        for (uint i=0; i < num_tokens; i++) {
            _safeMint(to, supply + i);
        }
        emit TokenMinted(totalSupply());
    }

    function mint(address _to, uint _count) public payable {
        require(_isSaleActive, 'Minting session is currently not active');
        
        if(arrFreeMintLog.length < maxMintFree){
            price = 0.0;
        }
        else{
            require( msg.value >= price * _count, "Ether sent is not correct." );
        }
        
        require(arrFreeMintLog.length <= maximSupply, "Tokens have all been minted");
        require(freeMintLog[_to] == false, "You have already minted the FREE token!");
        require(_count == 1, "You can only mint 1 token.");
        
        _doMint(_count, msg.sender);
        arrFreeMintLog.push(_to);
        freeMintLog[_to] = true;
    }
    
    function ownerMint(address[] memory recipients, uint256[] memory amount) external onlyOwner {
        require(recipients.length == amount.length, 'Arrays needs to be of equal lenght');
        uint256 totalToMint = 0;
        for (uint256 i=0; i<amount.length; i++) {
            totalToMint = totalToMint + amount[i];
        }
        require(totalSupply().add(totalToMint) <= maximSupply, 'Not enough Tokens to mint.');

        for (uint256 i=0; i<recipients.length; i++) {
            _doMint(amount[i], recipients[i]);
        }
    }
    
    function pauseSale() external onlyOwner {
        _isSaleActive = false;
        emit SaleStopped();
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _baseURIExtended = _newBaseURI;
    }

    function setMaxMintPerRqst(uint256 newMax) external onlyOwner {
        maxMintPerRqst = newMax;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }
    
    function setFreeNftTokensAvailable(uint256 available) external onlyOwner {
        maxMintFree = available;
    }

    function startSale() external onlyOwner {
        _isSaleActive = true;
        emit SaleStarted();
    }
    
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
        );
    
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintLog","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"maxMintFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerRqst","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"available","type":"uint256"}],"name":"setFreeNftTokensAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMintPerRqst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001d1565b50600c805460ff191690556001600e556064600f55662386f26fc100006010553480156200005557600080fd5b50604080518082018252600c81526b2a3930bb32b6102332bb32b960a11b6020808301918252835180850190945260048452632a29232b60e11b908401528151919291620000a691600091620001d1565b508051620000bc906001906020840190620001d1565b505050620000d9620000d36200010360201b60201c565b62000107565b620000fd60405180606001604052806036815260200162002b726036913962000159565b620002b4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001cd90600d906020840190620001d1565b5050565b828054620001df9062000277565b90600052602060002090601f0160209004810192826200020357600085556200024e565b82601f106200021e57805160ff19168380011785556200024e565b828001600101855582156200024e579182015b828111156200024e57825182559160200191906001019062000231565b506200025c92915062000260565b5090565b5b808211156200025c576000815560010162000261565b600181811c908216806200028c57607f821691505b60208210811415620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b6128ae80620002c46000396000f3fe60806040526004361061020f5760003560e01c80637080d6fc11610118578063b261ac16116100a0578063c66828621161006f578063c6682862146105d6578063c87b56dd146105eb578063e3ae638c1461060b578063e985e9c514610621578063f2fde38b1461066a57600080fd5b8063b261ac161461056c578063b66a0e5d1461058c578063b88d4fde146105a1578063c032e9d3146105c157600080fd5b80638da5cb5b116100e75780638da5cb5b146104e357806391b7f5ed1461050157806395d89b4114610521578063a035b1fe14610536578063a22cb4651461054c57600080fd5b80637080d6fc1461047e57806370a0823114610498578063715018a6146104b85780637e5157f3146104cd57600080fd5b806340398d671161019b5780634f6ccce71161016a5780634f6ccce7146103e957806355367ba91461040957806355f804b31461041e5780636352211e1461043e57806369f7d2f21461045e57600080fd5b806340398d671461035957806340c10f191461038657806342842e0e146103995780634c709163146103b957600080fd5b806318160ddd116101e257806318160ddd146102c55780632128cb38146102e457806323b872dd146103045780632f745c59146103245780633ccfd60b1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123af565b61068a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b5565b60405161024091906125bc565b34801561027757600080fd5b5061028b610286366004612432565b610747565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046122be565b6107e1565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612432565b6108f7565b34801561031057600080fd5b506102c361031f3660046121ca565b610926565b34801561033057600080fd5b506102d661033f3660046122be565b610957565b34801561035057600080fd5b506102c36109ed565b34801561036557600080fd5b5061037961037436600461217c565b610a4a565b6040516102409190612578565b6102c36103943660046122be565b610aec565b3480156103a557600080fd5b506102c36103b43660046121ca565b610d4f565b3480156103c557600080fd5b506102346103d436600461217c565b60116020526000908152604090205460ff1681565b3480156103f557600080fd5b506102d6610404366004612432565b610d6a565b34801561041557600080fd5b506102c3610dfd565b34801561042a57600080fd5b506102c36104393660046123e9565b610e5c565b34801561044a57600080fd5b5061028b610459366004612432565b610e99565b34801561046a57600080fd5b506102c36104793660046122e8565b610f10565b34801561048a57600080fd5b50600c546102349060ff1681565b3480156104a457600080fd5b506102d66104b336600461217c565b6110a0565b3480156104c457600080fd5b506102c3611127565b3480156104d957600080fd5b506102d6600f5481565b3480156104ef57600080fd5b50600a546001600160a01b031661028b565b34801561050d57600080fd5b506102c361051c366004612432565b61115d565b34801561052d57600080fd5b5061025e61118c565b34801561054257600080fd5b506102d660105481565b34801561055857600080fd5b506102c3610567366004612282565b61119b565b34801561057857600080fd5b506102c3610587366004612432565b611260565b34801561059857600080fd5b506102c361128f565b3480156105ad57600080fd5b506102c36105bc366004612206565b6112f1565b3480156105cd57600080fd5b506102d660c881565b3480156105e257600080fd5b5061025e611323565b3480156105f757600080fd5b5061025e610606366004612432565b6113b1565b34801561061757600080fd5b506102d6600e5481565b34801561062d57600080fd5b5061023461063c366004612197565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067657600080fd5b506102c361068536600461217c565b61149c565b60006001600160e01b0319821663780e9d6360e01b14806106af57506106af82611537565b92915050565b6060600080546106c49061278a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f09061278a565b801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107ec82610e99565b9050806001600160a01b0316836001600160a01b0316141561085a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bc565b336001600160a01b03821614806108765750610876813361063c565b6108e85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bc565b6108f28383611587565b505050565b600a546001600160a01b031633146109215760405162461bcd60e51b81526004016107bc90612621565b600f55565b61093033826115f5565b61094c5760405162461bcd60e51b81526004016107bc90612656565b6108f28383836116ec565b6000610962836110a0565b82106109c45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107bc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a175760405162461bcd60e51b81526004016107bc90612621565b6040514790339082156108fc029083906000818181858888f19350505050158015610a46573d6000803e3d6000fd5b5050565b60606000610a57836110a0565b905060008167ffffffffffffffff811115610a7457610a7461284c565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b50905060005b82811015610ae457610ab58582610957565b828281518110610ac757610ac7612836565b602090810291909101015280610adc816127c5565b915050610aa3565b509392505050565b600c5460ff16610b4e5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e672073657373696f6e2069732063757272656e746c79206e6f746044820152662061637469766560c81b60648201526084016107bc565b600f546012541015610b64576000601055610bc1565b80601054610b729190612728565b341015610bc15760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e74206973206e6f7420636f72726563742e00000000000060448201526064016107bc565b60125460c81015610c145760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e73206861766520616c6c206265656e206d696e746564000000000060448201526064016107bc565b6001600160a01b03821660009081526011602052604090205460ff1615610c8d5760405162461bcd60e51b815260206004820152602760248201527f596f75206861766520616c7265616479206d696e74656420746865204652454560448201526620746f6b656e2160c81b60648201526084016107bc565b80600114610cdd5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203120746f6b656e2e00000000000060448201526064016107bc565b610ce78133611897565b506012805460018181019092557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b039093166001600160a01b031990931683179055600091825260116020526040909120805460ff19169091179055565b6108f2838383604051806020016040528060008152506112f1565b6000610d7560085490565b8210610dd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107bc565b60088281548110610deb57610deb612836565b90600052602060002001549050919050565b600a546001600160a01b03163314610e275760405162461bcd60e51b81526004016107bc90612621565b600c805460ff191690556040517fdf515ab57ec796fd111da4dd488177601b9465ce9c442de16857682b7f10297a90600090a1565b600a546001600160a01b03163314610e865760405162461bcd60e51b81526004016107bc90612621565b8051610a4690600d906020840190611ffd565b6000818152600260205260408120546001600160a01b0316806106af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bc565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016107bc90612621565b8051825114610f965760405162461bcd60e51b815260206004820152602260248201527f417272617973206e6565647320746f206265206f6620657175616c206c656e676044820152611a1d60f21b60648201526084016107bc565b6000805b8251811015610fdc57828181518110610fb557610fb5612836565b602002602001015182610fc891906126fc565b915080610fd4816127c5565b915050610f9a565b5060c8610ff282610fec60085490565b9061197e565b11156110405760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820546f6b656e7320746f206d696e742e00000000000060448201526064016107bc565b60005b835181101561109a5761108883828151811061106157611061612836565b602002602001015185838151811061107b5761107b612836565b6020026020010151611897565b80611092816127c5565b915050611043565b50505050565b60006001600160a01b03821661110b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111515760405162461bcd60e51b81526004016107bc90612621565b61115b600061198a565b565b600a546001600160a01b031633146111875760405162461bcd60e51b81526004016107bc90612621565b601055565b6060600180546106c49061278a565b6001600160a01b0382163314156111f45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461128a5760405162461bcd60e51b81526004016107bc90612621565b600e55565b600a546001600160a01b031633146112b95760405162461bcd60e51b81526004016107bc90612621565b600c805460ff191660011790556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b6112fb33836115f5565b6113175760405162461bcd60e51b81526004016107bc90612656565b61109a848484846119dc565b600b80546113309061278a565b80601f016020809104026020016040519081016040528092919081815260200182805461135c9061278a565b80156113a95780601f1061137e576101008083540402835291602001916113a9565b820191906000526020600020905b81548152906001019060200180831161138c57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bc565b600061144760408051602081019091526000815290565b905060008151116114675760405180602001604052806000815250611495565b8061147184611a0f565b600b60405160200161148593929190612477565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114c65760405162461bcd60e51b81526004016107bc90612621565b6001600160a01b03811661152b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6115348161198a565b50565b60006001600160e01b031982166380ac58cd60e01b148061156857506001600160e01b03198216635b5e139f60e01b145b806106af57506301ffc9a760e01b6001600160e01b03198316146106af565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115bc82610e99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661166e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bc565b600061167983610e99565b9050806001600160a01b0316846001600160a01b031614806116b45750836001600160a01b03166116a984610747565b6001600160a01b0316145b806116e457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ff82610e99565b6001600160a01b0316146117675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bc565b6001600160a01b0382166117c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bc565b6117d4838383611b0d565b6117df600082611587565b6001600160a01b0383166000908152600360205260408120805460019290611808908490612747565b90915550506001600160a01b03821660009081526003602052604081208054600192906118369084906126fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c86118a683610fec60085490565b11156119005760405162461bcd60e51b815260206004820152602360248201527f4e6f7420656e6f75676820746f6b656e732c20747279206c6f7765722076616c6044820152623ab29760e91b60648201526084016107bc565b600061190b60085490565b905060005b8381101561193d5761192b8361192683856126fc565b611bc5565b80611935816127c5565b915050611910565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61196860085490565b60405190815260200160405180910390a1505050565b600061149582846126fc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e78484846116ec565b6119f384848484611bdf565b61109a5760405162461bcd60e51b81526004016107bc906125cf565b606081611a335750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5d5780611a47816127c5565b9150611a569050600a83612714565b9150611a37565b60008167ffffffffffffffff811115611a7857611a7861284c565b6040519080825280601f01601f191660200182016040528015611aa2576020820181803683370190505b5090505b84156116e457611ab7600183612747565b9150611ac4600a866127e0565b611acf9060306126fc565b60f81b818381518110611ae457611ae4612836565b60200101906001600160f81b031916908160001a905350611b06600a86612714565b9450611aa6565b6001600160a01b038316611b6857611b6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b8b565b816001600160a01b0316836001600160a01b031614611b8b57611b8b8382611cec565b6001600160a01b038216611ba2576108f281611d89565b826001600160a01b0316826001600160a01b0316146108f2576108f28282611e38565b610a46828260405180602001604052806000815250611e7c565b60006001600160a01b0384163b15611ce157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2390339089908890889060040161253b565b602060405180830381600087803b158015611c3d57600080fd5b505af1925050508015611c6d575060408051601f3d908101601f19168201909252611c6a918101906123cc565b60015b611cc7573d808015611c9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ca0565b606091505b508051611cbf5760405162461bcd60e51b81526004016107bc906125cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116e4565b506001949350505050565b60006001611cf9846110a0565b611d039190612747565b600083815260076020526040902054909150808214611d56576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d9b90600190612747565b60008381526009602052604081205460088054939450909284908110611dc357611dc3612836565b906000526020600020015490508060088381548110611de457611de4612836565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1c57611e1c612820565b6001900381819060005260206000200160009055905550505050565b6000611e43836110a0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611e868383611eaf565b611e936000848484611bdf565b6108f25760405162461bcd60e51b81526004016107bc906125cf565b6001600160a01b038216611f055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bc565b6000818152600260205260409020546001600160a01b031615611f6a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bc565b611f7660008383611b0d565b6001600160a01b0382166000908152600360205260408120805460019290611f9f9084906126fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120099061278a565b90600052602060002090601f01602090048101928261202b5760008555612071565b82601f1061204457805160ff1916838001178555612071565b82800160010185558215612071579182015b82811115612071578251825591602001919060010190612056565b5061207d929150612081565b5090565b5b8082111561207d5760008155600101612082565b600067ffffffffffffffff8311156120b0576120b061284c565b6120c3601f8401601f19166020016126a7565b90508281528383830111156120d757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461210557600080fd5b919050565b600082601f83011261211b57600080fd5b8135602061213061212b836126d8565b6126a7565b80838252828201915082860187848660051b890101111561215057600080fd5b60005b8581101561216f57813584529284019290840190600101612153565b5090979650505050505050565b60006020828403121561218e57600080fd5b611495826120ee565b600080604083850312156121aa57600080fd5b6121b3836120ee565b91506121c1602084016120ee565b90509250929050565b6000806000606084860312156121df57600080fd5b6121e8846120ee565b92506121f6602085016120ee565b9150604084013590509250925092565b6000806000806080858703121561221c57600080fd5b612225856120ee565b9350612233602086016120ee565b925060408501359150606085013567ffffffffffffffff81111561225657600080fd5b8501601f8101871361226757600080fd5b61227687823560208401612096565b91505092959194509250565b6000806040838503121561229557600080fd5b61229e836120ee565b9150602083013580151581146122b357600080fd5b809150509250929050565b600080604083850312156122d157600080fd5b6122da836120ee565b946020939093013593505050565b600080604083850312156122fb57600080fd5b823567ffffffffffffffff8082111561231357600080fd5b818501915085601f83011261232757600080fd5b8135602061233761212b836126d8565b8083825282820191508286018a848660051b890101111561235757600080fd5b600096505b848710156123815761236d816120ee565b83526001969096019591830191830161235c565b509650508601359250508082111561239857600080fd5b506123a58582860161210a565b9150509250929050565b6000602082840312156123c157600080fd5b813561149581612862565b6000602082840312156123de57600080fd5b815161149581612862565b6000602082840312156123fb57600080fd5b813567ffffffffffffffff81111561241257600080fd5b8201601f8101841361242357600080fd5b6116e484823560208401612096565b60006020828403121561244457600080fd5b5035919050565b6000815180845261246381602086016020860161275e565b601f01601f19169290920160200192915050565b60008451602061248a8285838a0161275e565b85519184019161249d8184848a0161275e565b8554920191600090600181811c90808316806124ba57607f831692505b8583108114156124d857634e487b7160e01b85526022600452602485fd5b8080156124ec57600181146124fd5761252a565b60ff1985168852838801955061252a565b60008b81526020902060005b858110156125225781548a820152908401908801612509565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256e9083018461244b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125b057835183529284019291840191600101612594565b50909695505050505050565b602081526000611495602083018461244b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126d0576126d061284c565b604052919050565b600067ffffffffffffffff8211156126f2576126f261284c565b5060051b60200190565b6000821982111561270f5761270f6127f4565b500190565b6000826127235761272361280a565b500490565b6000816000190483118215151615612742576127426127f4565b500290565b600082821015612759576127596127f4565b500390565b60005b83811015612779578181015183820152602001612761565b8381111561109a5750506000910152565b600181811c9082168061279e57607f821691505b602082108114156127bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d9576127d96127f4565b5060010190565b6000826127ef576127ef61280a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461153457600080fdfea26469706673582212208dce3831a6cee4086ac9e9a2ab456129461ea02692ad459fc7269ef1509ec48864736f6c63430008070033697066733a2f2f516d5055437438564336614255723944444877466861547a67707a6f635233337265456e66316b546d46364438432f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637080d6fc11610118578063b261ac16116100a0578063c66828621161006f578063c6682862146105d6578063c87b56dd146105eb578063e3ae638c1461060b578063e985e9c514610621578063f2fde38b1461066a57600080fd5b8063b261ac161461056c578063b66a0e5d1461058c578063b88d4fde146105a1578063c032e9d3146105c157600080fd5b80638da5cb5b116100e75780638da5cb5b146104e357806391b7f5ed1461050157806395d89b4114610521578063a035b1fe14610536578063a22cb4651461054c57600080fd5b80637080d6fc1461047e57806370a0823114610498578063715018a6146104b85780637e5157f3146104cd57600080fd5b806340398d671161019b5780634f6ccce71161016a5780634f6ccce7146103e957806355367ba91461040957806355f804b31461041e5780636352211e1461043e57806369f7d2f21461045e57600080fd5b806340398d671461035957806340c10f191461038657806342842e0e146103995780634c709163146103b957600080fd5b806318160ddd116101e257806318160ddd146102c55780632128cb38146102e457806323b872dd146103045780632f745c59146103245780633ccfd60b1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123af565b61068a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b5565b60405161024091906125bc565b34801561027757600080fd5b5061028b610286366004612432565b610747565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046122be565b6107e1565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612432565b6108f7565b34801561031057600080fd5b506102c361031f3660046121ca565b610926565b34801561033057600080fd5b506102d661033f3660046122be565b610957565b34801561035057600080fd5b506102c36109ed565b34801561036557600080fd5b5061037961037436600461217c565b610a4a565b6040516102409190612578565b6102c36103943660046122be565b610aec565b3480156103a557600080fd5b506102c36103b43660046121ca565b610d4f565b3480156103c557600080fd5b506102346103d436600461217c565b60116020526000908152604090205460ff1681565b3480156103f557600080fd5b506102d6610404366004612432565b610d6a565b34801561041557600080fd5b506102c3610dfd565b34801561042a57600080fd5b506102c36104393660046123e9565b610e5c565b34801561044a57600080fd5b5061028b610459366004612432565b610e99565b34801561046a57600080fd5b506102c36104793660046122e8565b610f10565b34801561048a57600080fd5b50600c546102349060ff1681565b3480156104a457600080fd5b506102d66104b336600461217c565b6110a0565b3480156104c457600080fd5b506102c3611127565b3480156104d957600080fd5b506102d6600f5481565b3480156104ef57600080fd5b50600a546001600160a01b031661028b565b34801561050d57600080fd5b506102c361051c366004612432565b61115d565b34801561052d57600080fd5b5061025e61118c565b34801561054257600080fd5b506102d660105481565b34801561055857600080fd5b506102c3610567366004612282565b61119b565b34801561057857600080fd5b506102c3610587366004612432565b611260565b34801561059857600080fd5b506102c361128f565b3480156105ad57600080fd5b506102c36105bc366004612206565b6112f1565b3480156105cd57600080fd5b506102d660c881565b3480156105e257600080fd5b5061025e611323565b3480156105f757600080fd5b5061025e610606366004612432565b6113b1565b34801561061757600080fd5b506102d6600e5481565b34801561062d57600080fd5b5061023461063c366004612197565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067657600080fd5b506102c361068536600461217c565b61149c565b60006001600160e01b0319821663780e9d6360e01b14806106af57506106af82611537565b92915050565b6060600080546106c49061278a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f09061278a565b801561073d5780601f106107125761010080835404028352916020019161073d565b820191906000526020600020905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107ec82610e99565b9050806001600160a01b0316836001600160a01b0316141561085a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bc565b336001600160a01b03821614806108765750610876813361063c565b6108e85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bc565b6108f28383611587565b505050565b600a546001600160a01b031633146109215760405162461bcd60e51b81526004016107bc90612621565b600f55565b61093033826115f5565b61094c5760405162461bcd60e51b81526004016107bc90612656565b6108f28383836116ec565b6000610962836110a0565b82106109c45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107bc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a175760405162461bcd60e51b81526004016107bc90612621565b6040514790339082156108fc029083906000818181858888f19350505050158015610a46573d6000803e3d6000fd5b5050565b60606000610a57836110a0565b905060008167ffffffffffffffff811115610a7457610a7461284c565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b50905060005b82811015610ae457610ab58582610957565b828281518110610ac757610ac7612836565b602090810291909101015280610adc816127c5565b915050610aa3565b509392505050565b600c5460ff16610b4e5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e672073657373696f6e2069732063757272656e746c79206e6f746044820152662061637469766560c81b60648201526084016107bc565b600f546012541015610b64576000601055610bc1565b80601054610b729190612728565b341015610bc15760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e74206973206e6f7420636f72726563742e00000000000060448201526064016107bc565b60125460c81015610c145760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e73206861766520616c6c206265656e206d696e746564000000000060448201526064016107bc565b6001600160a01b03821660009081526011602052604090205460ff1615610c8d5760405162461bcd60e51b815260206004820152602760248201527f596f75206861766520616c7265616479206d696e74656420746865204652454560448201526620746f6b656e2160c81b60648201526084016107bc565b80600114610cdd5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203120746f6b656e2e00000000000060448201526064016107bc565b610ce78133611897565b506012805460018181019092557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b039093166001600160a01b031990931683179055600091825260116020526040909120805460ff19169091179055565b6108f2838383604051806020016040528060008152506112f1565b6000610d7560085490565b8210610dd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107bc565b60088281548110610deb57610deb612836565b90600052602060002001549050919050565b600a546001600160a01b03163314610e275760405162461bcd60e51b81526004016107bc90612621565b600c805460ff191690556040517fdf515ab57ec796fd111da4dd488177601b9465ce9c442de16857682b7f10297a90600090a1565b600a546001600160a01b03163314610e865760405162461bcd60e51b81526004016107bc90612621565b8051610a4690600d906020840190611ffd565b6000818152600260205260408120546001600160a01b0316806106af5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bc565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016107bc90612621565b8051825114610f965760405162461bcd60e51b815260206004820152602260248201527f417272617973206e6565647320746f206265206f6620657175616c206c656e676044820152611a1d60f21b60648201526084016107bc565b6000805b8251811015610fdc57828181518110610fb557610fb5612836565b602002602001015182610fc891906126fc565b915080610fd4816127c5565b915050610f9a565b5060c8610ff282610fec60085490565b9061197e565b11156110405760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820546f6b656e7320746f206d696e742e00000000000060448201526064016107bc565b60005b835181101561109a5761108883828151811061106157611061612836565b602002602001015185838151811061107b5761107b612836565b6020026020010151611897565b80611092816127c5565b915050611043565b50505050565b60006001600160a01b03821661110b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111515760405162461bcd60e51b81526004016107bc90612621565b61115b600061198a565b565b600a546001600160a01b031633146111875760405162461bcd60e51b81526004016107bc90612621565b601055565b6060600180546106c49061278a565b6001600160a01b0382163314156111f45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461128a5760405162461bcd60e51b81526004016107bc90612621565b600e55565b600a546001600160a01b031633146112b95760405162461bcd60e51b81526004016107bc90612621565b600c805460ff191660011790556040517f912ee23dde46ec889d6748212cce445d667f7041597691dc89e8549ad8bc0acb90600090a1565b6112fb33836115f5565b6113175760405162461bcd60e51b81526004016107bc90612656565b61109a848484846119dc565b600b80546113309061278a565b80601f016020809104026020016040519081016040528092919081815260200182805461135c9061278a565b80156113a95780601f1061137e576101008083540402835291602001916113a9565b820191906000526020600020905b81548152906001019060200180831161138c57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bc565b600061144760408051602081019091526000815290565b905060008151116114675760405180602001604052806000815250611495565b8061147184611a0f565b600b60405160200161148593929190612477565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114c65760405162461bcd60e51b81526004016107bc90612621565b6001600160a01b03811661152b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6115348161198a565b50565b60006001600160e01b031982166380ac58cd60e01b148061156857506001600160e01b03198216635b5e139f60e01b145b806106af57506301ffc9a760e01b6001600160e01b03198316146106af565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115bc82610e99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661166e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bc565b600061167983610e99565b9050806001600160a01b0316846001600160a01b031614806116b45750836001600160a01b03166116a984610747565b6001600160a01b0316145b806116e457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ff82610e99565b6001600160a01b0316146117675760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bc565b6001600160a01b0382166117c95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bc565b6117d4838383611b0d565b6117df600082611587565b6001600160a01b0383166000908152600360205260408120805460019290611808908490612747565b90915550506001600160a01b03821660009081526003602052604081208054600192906118369084906126fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60c86118a683610fec60085490565b11156119005760405162461bcd60e51b815260206004820152602360248201527f4e6f7420656e6f75676820746f6b656e732c20747279206c6f7765722076616c6044820152623ab29760e91b60648201526084016107bc565b600061190b60085490565b905060005b8381101561193d5761192b8361192683856126fc565b611bc5565b80611935816127c5565b915050611910565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61196860085490565b60405190815260200160405180910390a1505050565b600061149582846126fc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e78484846116ec565b6119f384848484611bdf565b61109a5760405162461bcd60e51b81526004016107bc906125cf565b606081611a335750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5d5780611a47816127c5565b9150611a569050600a83612714565b9150611a37565b60008167ffffffffffffffff811115611a7857611a7861284c565b6040519080825280601f01601f191660200182016040528015611aa2576020820181803683370190505b5090505b84156116e457611ab7600183612747565b9150611ac4600a866127e0565b611acf9060306126fc565b60f81b818381518110611ae457611ae4612836565b60200101906001600160f81b031916908160001a905350611b06600a86612714565b9450611aa6565b6001600160a01b038316611b6857611b6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b8b565b816001600160a01b0316836001600160a01b031614611b8b57611b8b8382611cec565b6001600160a01b038216611ba2576108f281611d89565b826001600160a01b0316826001600160a01b0316146108f2576108f28282611e38565b610a46828260405180602001604052806000815250611e7c565b60006001600160a01b0384163b15611ce157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2390339089908890889060040161253b565b602060405180830381600087803b158015611c3d57600080fd5b505af1925050508015611c6d575060408051601f3d908101601f19168201909252611c6a918101906123cc565b60015b611cc7573d808015611c9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ca0565b606091505b508051611cbf5760405162461bcd60e51b81526004016107bc906125cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116e4565b506001949350505050565b60006001611cf9846110a0565b611d039190612747565b600083815260076020526040902054909150808214611d56576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d9b90600190612747565b60008381526009602052604081205460088054939450909284908110611dc357611dc3612836565b906000526020600020015490508060088381548110611de457611de4612836565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1c57611e1c612820565b6001900381819060005260206000200160009055905550505050565b6000611e43836110a0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611e868383611eaf565b611e936000848484611bdf565b6108f25760405162461bcd60e51b81526004016107bc906125cf565b6001600160a01b038216611f055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bc565b6000818152600260205260409020546001600160a01b031615611f6a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bc565b611f7660008383611b0d565b6001600160a01b0382166000908152600360205260408120805460019290611f9f9084906126fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120099061278a565b90600052602060002090601f01602090048101928261202b5760008555612071565b82601f1061204457805160ff1916838001178555612071565b82800160010185558215612071579182015b82811115612071578251825591602001919060010190612056565b5061207d929150612081565b5090565b5b8082111561207d5760008155600101612082565b600067ffffffffffffffff8311156120b0576120b061284c565b6120c3601f8401601f19166020016126a7565b90508281528383830111156120d757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461210557600080fd5b919050565b600082601f83011261211b57600080fd5b8135602061213061212b836126d8565b6126a7565b80838252828201915082860187848660051b890101111561215057600080fd5b60005b8581101561216f57813584529284019290840190600101612153565b5090979650505050505050565b60006020828403121561218e57600080fd5b611495826120ee565b600080604083850312156121aa57600080fd5b6121b3836120ee565b91506121c1602084016120ee565b90509250929050565b6000806000606084860312156121df57600080fd5b6121e8846120ee565b92506121f6602085016120ee565b9150604084013590509250925092565b6000806000806080858703121561221c57600080fd5b612225856120ee565b9350612233602086016120ee565b925060408501359150606085013567ffffffffffffffff81111561225657600080fd5b8501601f8101871361226757600080fd5b61227687823560208401612096565b91505092959194509250565b6000806040838503121561229557600080fd5b61229e836120ee565b9150602083013580151581146122b357600080fd5b809150509250929050565b600080604083850312156122d157600080fd5b6122da836120ee565b946020939093013593505050565b600080604083850312156122fb57600080fd5b823567ffffffffffffffff8082111561231357600080fd5b818501915085601f83011261232757600080fd5b8135602061233761212b836126d8565b8083825282820191508286018a848660051b890101111561235757600080fd5b600096505b848710156123815761236d816120ee565b83526001969096019591830191830161235c565b509650508601359250508082111561239857600080fd5b506123a58582860161210a565b9150509250929050565b6000602082840312156123c157600080fd5b813561149581612862565b6000602082840312156123de57600080fd5b815161149581612862565b6000602082840312156123fb57600080fd5b813567ffffffffffffffff81111561241257600080fd5b8201601f8101841361242357600080fd5b6116e484823560208401612096565b60006020828403121561244457600080fd5b5035919050565b6000815180845261246381602086016020860161275e565b601f01601f19169290920160200192915050565b60008451602061248a8285838a0161275e565b85519184019161249d8184848a0161275e565b8554920191600090600181811c90808316806124ba57607f831692505b8583108114156124d857634e487b7160e01b85526022600452602485fd5b8080156124ec57600181146124fd5761252a565b60ff1985168852838801955061252a565b60008b81526020902060005b858110156125225781548a820152908401908801612509565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256e9083018461244b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125b057835183529284019291840191600101612594565b50909695505050505050565b602081526000611495602083018461244b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126d0576126d061284c565b604052919050565b600067ffffffffffffffff8211156126f2576126f261284c565b5060051b60200190565b6000821982111561270f5761270f6127f4565b500190565b6000826127235761272361280a565b500490565b6000816000190483118215151615612742576127426127f4565b500290565b600082821015612759576127596127f4565b500390565b60005b83811015612779578181015183820152602001612761565b8381111561109a5750506000910152565b600181811c9082168061279e57607f821691505b602082108114156127bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d9576127d96127f4565b5060010190565b6000826127ef576127ef61280a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461153457600080fdfea26469706673582212208dce3831a6cee4086ac9e9a2ab456129461ea02692ad459fc7269ef1509ec48864736f6c63430008070033

Deployed Bytecode Sourcemap

50280:4063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41777:224;;;;;;;;;;-1:-1:-1;41777:224:0;;;;;:::i;:::-;;:::i;:::-;;;8955:14:1;;8948:22;8930:41;;8918:2;8903:18;41777:224:0;;;;;;;;29669:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31228:221::-;;;;;;;;;;-1:-1:-1;31228:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7616:32:1;;;7598:51;;7586:2;7571:18;31228:221:0;7452:203:1;30751:411:0;;;;;;;;;;-1:-1:-1;30751:411:0;;;;;:::i;:::-;;:::i;:::-;;42417:113;;;;;;;;;;-1:-1:-1;42505:10:0;:17;42417:113;;;19603:25:1;;;19591:2;19576:18;42417:113:0;19457:177:1;53477:115:0;;;;;;;;;;-1:-1:-1;53477:115:0;;;;;:::i;:::-;;:::i;32118:339::-;;;;;;;;;;-1:-1:-1;32118:339:0;;;;;:::i;:::-;;:::i;42085:256::-;;;;;;;;;;-1:-1:-1;42085:256:0;;;;;:::i;:::-;;:::i;54191:143::-;;;;;;;;;;;;;:::i;51029:346::-;;;;;;;;;;-1:-1:-1;51029:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51746:708::-;;;;;;:::i;:::-;;:::i;32528:185::-;;;;;;;;;;-1:-1:-1;32528:185:0;;;;;:::i;:::-;;:::i;50704:43::-;;;;;;;;;;-1:-1:-1;50704:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42607:233;;;;;;;;;;-1:-1:-1;42607:233:0;;;;;:::i;:::-;;:::i;53029:109::-;;;;;;;;;;;;;:::i;53146:113::-;;;;;;;;;;-1:-1:-1;53146:113:0;;;;;:::i;:::-;;:::i;29363:239::-;;;;;;;;;;-1:-1:-1;29363:239:0;;;;;:::i;:::-;;:::i;52466:551::-;;;;;;;;;;-1:-1:-1;52466:551:0;;;;;:::i;:::-;;:::i;50454:33::-;;;;;;;;;;-1:-1:-1;50454:33:0;;;;;;;;29093:208;;;;;;;;;;-1:-1:-1;29093:208:0;;;;;:::i;:::-;;:::i;49574:94::-;;;;;;;;;;;;;:::i;50572:32::-;;;;;;;;;;;;;;;;48923:87;;;;;;;;;;-1:-1:-1;48996:6:0;;-1:-1:-1;;;;;48996:6:0;48923:87;;53379:86;;;;;;;;;;-1:-1:-1;53379:86:0;;;;;:::i;:::-;;:::i;29838:104::-;;;;;;;;;;;;;:::i;50659:32::-;;;;;;;;;;;;;;;;31521:295;;;;;;;;;;-1:-1:-1;31521:295:0;;;;;:::i;:::-;;:::i;53267:104::-;;;;;;;;;;-1:-1:-1;53267:104:0;;;;;:::i;:::-;;:::i;53600:108::-;;;;;;;;;;;;;:::i;32784:328::-;;;;;;;;;;-1:-1:-1;32784:328:0;;;;;:::i;:::-;;:::i;50611:41::-;;;;;;;;;;;;50649:3;50611:41;;50404:37;;;;;;;;;;;;;:::i;53720:463::-;;;;;;;;;;-1:-1:-1;53720:463:0;;;;;:::i;:::-;;:::i;50532:33::-;;;;;;;;;;;;;;;;31887:164;;;;;;;;;;-1:-1:-1;31887:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32008:25:0;;;31984:4;32008:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31887:164;49823:192;;;;;;;;;;-1:-1:-1;49823:192:0;;;;;:::i;:::-;;:::i;41777:224::-;41879:4;-1:-1:-1;;;;;;41903:50:0;;-1:-1:-1;;;41903:50:0;;:90;;;41957:36;41981:11;41957:23;:36::i;:::-;41896:97;41777:224;-1:-1:-1;;41777:224:0:o;29669:100::-;29723:13;29756:5;29749:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29669:100;:::o;31228:221::-;31304:7;34711:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34711:16:0;31324:73;;;;-1:-1:-1;;;31324:73:0;;15252:2:1;31324:73:0;;;15234:21:1;15291:2;15271:18;;;15264:30;15330:34;15310:18;;;15303:62;-1:-1:-1;;;15381:18:1;;;15374:42;15433:19;;31324:73:0;;;;;;;;;-1:-1:-1;31417:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31417:24:0;;31228:221::o;30751:411::-;30832:13;30848:23;30863:7;30848:14;:23::i;:::-;30832:39;;30896:5;-1:-1:-1;;;;;30890:11:0;:2;-1:-1:-1;;;;;30890:11:0;;;30882:57;;;;-1:-1:-1;;;30882:57:0;;17207:2:1;30882:57:0;;;17189:21:1;17246:2;17226:18;;;17219:30;17285:34;17265:18;;;17258:62;-1:-1:-1;;;17336:18:1;;;17329:31;17377:19;;30882:57:0;17005:397:1;30882:57:0;27258:10;-1:-1:-1;;;;;30974:21:0;;;;:62;;-1:-1:-1;30999:37:0;31016:5;27258:10;31887:164;:::i;30999:37::-;30952:168;;;;-1:-1:-1;;;30952:168:0;;13645:2:1;30952:168:0;;;13627:21:1;13684:2;13664:18;;;13657:30;13723:34;13703:18;;;13696:62;13794:26;13774:18;;;13767:54;13838:19;;30952:168:0;13443:420:1;30952:168:0;31133:21;31142:2;31146:7;31133:8;:21::i;:::-;30821:341;30751:411;;:::o;53477:115::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53561:11:::1;:23:::0;53477:115::o;32118:339::-;32313:41;27258:10;32346:7;32313:18;:41::i;:::-;32305:103;;;;-1:-1:-1;;;32305:103:0;;;;;;;:::i;:::-;32421:28;32431:4;32437:2;32441:7;32421:9;:28::i;42085:256::-;42182:7;42218:23;42235:5;42218:16;:23::i;:::-;42210:5;:31;42202:87;;;;-1:-1:-1;;;42202:87:0;;10522:2:1;42202:87:0;;;10504:21:1;10561:2;10541:18;;;10534:30;10600:34;10580:18;;;10573:62;-1:-1:-1;;;10651:18:1;;;10644:41;10702:19;;42202:87:0;10320:407:1;42202:87:0;-1:-1:-1;;;;;;42307:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42085:256::o;54191:143::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;54289:37:::1;::::0;54257:21:::1;::::0;54297:10:::1;::::0;54289:37;::::1;;;::::0;54257:21;;54239:15:::1;54289:37:::0;54239:15;54289:37;54257:21;54297:10;54289:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54228:106;54191:143::o:0;51029:346::-;51092:16;51121:18;51142:17;51152:6;51142:9;:17::i;:::-;51121:38;;51170:25;51212:10;51198:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51198:25:0;;51170:53;;51239:9;51234:108;51254:10;51250:1;:14;51234:108;;;51300:30;51320:6;51328:1;51300:19;:30::i;:::-;51286:8;51295:1;51286:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51266:3;;;;:::i;:::-;;;;51234:108;;;-1:-1:-1;51359:8:0;51029:346;-1:-1:-1;;;51029:346:0:o;51746:708::-;51820:13;;;;51812:65;;;;-1:-1:-1;;;51812:65:0;;18843:2:1;51812:65:0;;;18825:21:1;18882:2;18862:18;;;18855:30;18921:34;18901:18;;;18894:62;-1:-1:-1;;;18972:18:1;;;18965:37;19019:19;;51812:65:0;18641:403:1;51812:65:0;51925:11;;51901:14;:21;:35;51898:186;;;51960:3;51952:5;:11;51898:186;;;52034:6;52026:5;;:14;;;;:::i;:::-;52013:9;:27;;52004:68;;;;-1:-1:-1;;;52004:68:0;;16852:2:1;52004:68:0;;;16834:21:1;16891:2;16871:18;;;16864:30;16930:28;16910:18;;;16903:56;16976:18;;52004:68:0;16650:350:1;52004:68:0;52112:14;:21;50649:3;-1:-1:-1;52112:36:0;52104:76;;;;-1:-1:-1;;;52104:76:0;;12117:2:1;52104:76:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:29;12175:18;;;12168:57;12242:18;;52104:76:0;11915:351:1;52104:76:0;-1:-1:-1;;;;;52199:16:0;;;;;;:11;:16;;;;;;;;:25;52191:77;;;;-1:-1:-1;;;52191:77:0;;19251:2:1;52191:77:0;;;19233:21:1;19290:2;19270:18;;;19263:30;19329:34;19309:18;;;19302:62;-1:-1:-1;;;19380:18:1;;;19373:37;19427:19;;52191:77:0;19049:403:1;52191:77:0;52287:6;52297:1;52287:11;52279:50;;;;-1:-1:-1;;;52279:50:0;;10167:2:1;52279:50:0;;;10149:21:1;10206:2;10186:18;;;10179:30;10245:28;10225:18;;;10218:56;10291:18;;52279:50:0;9965:350:1;52279:50:0;52350:27;52358:6;52366:10;52350:7;:27::i;:::-;-1:-1:-1;52388:14:0;:24;;;;;;;;;;;;;-1:-1:-1;;;;;52388:24:0;;;-1:-1:-1;;;;;;52388:24:0;;;;;;;-1:-1:-1;52423:16:0;;;:11;52388:24;52423:16;;;;;:23;;-1:-1:-1;;52423:23:0;;;;;;51746:708::o;32528:185::-;32666:39;32683:4;32689:2;32693:7;32666:39;;;;;;;;;;;;:16;:39::i;42607:233::-;42682:7;42718:30;42505:10;:17;;42417:113;42718:30;42710:5;:38;42702:95;;;;-1:-1:-1;;;42702:95:0;;18430:2:1;42702:95:0;;;18412:21:1;18469:2;18449:18;;;18442:30;18508:34;18488:18;;;18481:62;-1:-1:-1;;;18559:18:1;;;18552:42;18611:19;;42702:95:0;18228:408:1;42702:95:0;42815:10;42826:5;42815:17;;;;;;;;:::i;:::-;;;;;;;;;42808:24;;42607:233;;;:::o;53029:109::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53080:13:::1;:21:::0;;-1:-1:-1;;53080:21:0::1;::::0;;53117:13:::1;::::0;::::1;::::0;53096:5:::1;::::0;53117:13:::1;53029:109::o:0;53146:113::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53221:30;;::::1;::::0;:16:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;29363:239::-:0;29435:7;29471:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29471:16:0;29506:19;29498:73;;;;-1:-1:-1;;;29498:73:0;;14481:2:1;29498:73:0;;;14463:21:1;14520:2;14500:18;;;14493:30;14559:34;14539:18;;;14532:62;-1:-1:-1;;;14610:18:1;;;14603:39;14659:19;;29498:73:0;14279:405:1;52466:551:0;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;52598:6:::1;:13;52577:10;:17;:34;52569:81;;;::::0;-1:-1:-1;;;52569:81:0;;17609:2:1;52569:81:0::1;::::0;::::1;17591:21:1::0;17648:2;17628:18;;;17621:30;17687:34;17667:18;;;17660:62;-1:-1:-1;;;17738:18:1;;;17731:32;17780:19;;52569:81:0::1;17407:398:1::0;52569:81:0::1;52661:19;52700:9:::0;52695:104:::1;52715:6;:13;52713:1;:15;52695:104;;;52778:6;52785:1;52778:9;;;;;;;;:::i;:::-;;;;;;;52764:11;:23;;;;:::i;:::-;52750:37:::0;-1:-1:-1;52730:3:0;::::1;::::0;::::1;:::i;:::-;;;;52695:104;;;;50649:3;52817:30;52835:11;52817:13;42505:10:::0;:17;;42417:113;52817:13:::1;:17:::0;::::1;:30::i;:::-;:45;;52809:84;;;::::0;-1:-1:-1;;;52809:84:0;;9408:2:1;52809:84:0::1;::::0;::::1;9390:21:1::0;9447:2;9427:18;;;9420:30;9486:28;9466:18;;;9459:56;9532:18;;52809:84:0::1;9206:350:1::0;52809:84:0::1;52911:9;52906:104;52926:10;:17;52924:1;:19;52906:104;;;52965:33;52973:6;52980:1;52973:9;;;;;;;;:::i;:::-;;;;;;;52984:10;52995:1;52984:13;;;;;;;;:::i;:::-;;;;;;;52965:7;:33::i;:::-;52945:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52906:104;;;;52558:459;52466:551:::0;;:::o;29093:208::-;29165:7;-1:-1:-1;;;;;29193:19:0;;29185:74;;;;-1:-1:-1;;;29185:74:0;;14070:2:1;29185:74:0;;;14052:21:1;14109:2;14089:18;;;14082:30;14148:34;14128:18;;;14121:62;-1:-1:-1;;;14199:18:1;;;14192:40;14249:19;;29185:74:0;13868:406:1;29185:74:0;-1:-1:-1;;;;;;29277:16:0;;;;;:9;:16;;;;;;;29093:208::o;49574:94::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;49639:21:::1;49657:1;49639:9;:21::i;:::-;49574:94::o:0;53379:86::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53443:5:::1;:14:::0;53379:86::o;29838:104::-;29894:13;29927:7;29920:14;;;;;:::i;31521:295::-;-1:-1:-1;;;;;31624:24:0;;27258:10;31624:24;;31616:62;;;;-1:-1:-1;;;31616:62:0;;12878:2:1;31616:62:0;;;12860:21:1;12917:2;12897:18;;;12890:30;12956:27;12936:18;;;12929:55;13001:18;;31616:62:0;12676:349:1;31616:62:0;27258:10;31691:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31691:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31691:53:0;;;;;;;;;;31760:48;;8930:41:1;;;31691:42:0;;27258:10;31760:48;;8903:18:1;31760:48:0;;;;;;;31521:295;;:::o;53267:104::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53340:14:::1;:23:::0;53267:104::o;53600:108::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;53651:13:::1;:20:::0;;-1:-1:-1;;53651:20:0::1;53667:4;53651:20;::::0;;53687:13:::1;::::0;::::1;::::0;53651::::1;::::0;53687::::1;53600:108::o:0;32784:328::-;32959:41;27258:10;32992:7;32959:18;:41::i;:::-;32951:103;;;;-1:-1:-1;;;32951:103:0;;;;;;;:::i;:::-;33065:39;33079:4;33085:2;33089:7;33098:5;33065:13;:39::i;50404:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53720:463::-;34687:4;34711:16;;;:7;:16;;;;;;53818:13;;-1:-1:-1;;;;;34711:16:0;53849:109;;;;-1:-1:-1;;;53849:109:0;;16436:2:1;53849:109:0;;;16418:21:1;16475:2;16455:18;;;16448:30;16514:34;16494:18;;;16487:62;-1:-1:-1;;;16565:18:1;;;16558:45;16620:19;;53849:109:0;16234:411:1;53849:109:0;53975:28;54006:10;30672:9;;;;;;;;;-1:-1:-1;30672:9:0;;;30595:94;54006:10;53975:41;;54065:1;54040:14;54034:28;:32;:141;;;;;;;;;;;;;;;;;54106:14;54122:18;:7;:16;:18::i;:::-;54142:13;54089:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54034:141;54027:148;53720:463;-1:-1:-1;;;53720:463:0:o;49823:192::-;48996:6;;-1:-1:-1;;;;;48996:6:0;27258:10;49143:23;49135:68;;;;-1:-1:-1;;;49135:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49912:22:0;::::1;49904:73;;;::::0;-1:-1:-1;;;49904:73:0;;11353:2:1;49904:73:0::1;::::0;::::1;11335:21:1::0;11392:2;11372:18;;;11365:30;11431:34;11411:18;;;11404:62;-1:-1:-1;;;11482:18:1;;;11475:36;11528:19;;49904:73:0::1;11151:402:1::0;49904:73:0::1;49988:19;49998:8;49988:9;:19::i;:::-;49823:192:::0;:::o;28724:305::-;28826:4;-1:-1:-1;;;;;;28863:40:0;;-1:-1:-1;;;28863:40:0;;:105;;-1:-1:-1;;;;;;;28920:48:0;;-1:-1:-1;;;28920:48:0;28863:105;:158;;;-1:-1:-1;;;;;;;;;;19881:40:0;;;28985:36;19772:157;38604:174;38679:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38679:29:0;-1:-1:-1;;;;;38679:29:0;;;;;;;;:24;;38733:23;38679:24;38733:14;:23::i;:::-;-1:-1:-1;;;;;38724:46:0;;;;;;;;;;;38604:174;;:::o;34916:348::-;35009:4;34711:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34711:16:0;35026:73;;;;-1:-1:-1;;;35026:73:0;;13232:2:1;35026:73:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:42;13413:19;;35026:73:0;13030:408:1;35026:73:0;35110:13;35126:23;35141:7;35126:14;:23::i;:::-;35110:39;;35179:5;-1:-1:-1;;;;;35168:16:0;:7;-1:-1:-1;;;;;35168:16:0;;:51;;;;35212:7;-1:-1:-1;;;;;35188:31:0;:20;35200:7;35188:11;:20::i;:::-;-1:-1:-1;;;;;35188:31:0;;35168:51;:87;;;-1:-1:-1;;;;;;32008:25:0;;;31984:4;32008:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35223:32;35160:96;34916:348;-1:-1:-1;;;;34916:348:0:o;37908:578::-;38067:4;-1:-1:-1;;;;;38040:31:0;:23;38055:7;38040:14;:23::i;:::-;-1:-1:-1;;;;;38040:31:0;;38032:85;;;;-1:-1:-1;;;38032:85:0;;16026:2:1;38032:85:0;;;16008:21:1;16065:2;16045:18;;;16038:30;16104:34;16084:18;;;16077:62;-1:-1:-1;;;16155:18:1;;;16148:39;16204:19;;38032:85:0;15824:405:1;38032:85:0;-1:-1:-1;;;;;38136:16:0;;38128:65;;;;-1:-1:-1;;;38128:65:0;;12473:2:1;38128:65:0;;;12455:21:1;12512:2;12492:18;;;12485:30;12551:34;12531:18;;;12524:62;-1:-1:-1;;;12602:18:1;;;12595:34;12646:19;;38128:65:0;12271:400:1;38128:65:0;38206:39;38227:4;38233:2;38237:7;38206:20;:39::i;:::-;38310:29;38327:1;38331:7;38310:8;:29::i;:::-;-1:-1:-1;;;;;38352:15:0;;;;;;:9;:15;;;;;:20;;38371:1;;38352:15;:20;;38371:1;;38352:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38383:13:0;;;;;;:9;:13;;;;;:18;;38400:1;;38383:13;:18;;38400:1;;38383:18;:::i;:::-;;;;-1:-1:-1;;38412:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38412:21:0;-1:-1:-1;;;;;38412:21:0;;;;;;;;;38451:27;;38412:16;;38451:27;;;;;;;37908:578;;;:::o;51387:351::-;50649:3;51465:29;51483:10;51465:13;42505:10;:17;;42417:113;51465:29;:44;;51457:92;;;;-1:-1:-1;;;51457:92:0;;9763:2:1;51457:92:0;;;9745:21:1;9802:2;9782:18;;;9775:30;9841:34;9821:18;;;9814:62;-1:-1:-1;;;9892:18:1;;;9885:33;9935:19;;51457:92:0;9561:399:1;51457:92:0;51560:14;51577:13;42505:10;:17;;42417:113;51577:13;51560:30;;51606:6;51601:88;51620:10;51616:1;:14;51601:88;;;51652:25;51662:2;51666:10;51675:1;51666:6;:10;:::i;:::-;51652:9;:25::i;:::-;51632:3;;;;:::i;:::-;;;;51601:88;;;;51704:26;51716:13;42505:10;:17;;42417:113;51716:13;51704:26;;19603:25:1;;;19591:2;19576:18;51704:26:0;;;;;;;51446:292;51387:351;;:::o;2831:98::-;2889:7;2916:5;2920:1;2916;:5;:::i;50023:173::-;50098:6;;;-1:-1:-1;;;;;50115:17:0;;;-1:-1:-1;;;;;;50115:17:0;;;;;;;50148:40;;50098:6;;;50115:17;50098:6;;50148:40;;50079:16;;50148:40;50068:128;50023:173;:::o;33994:315::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34198:48;34221:4;34227:2;34231:7;34240:5;34198:22;:48::i;:::-;34190:111;;;;-1:-1:-1;;;34190:111:0;;;;;;;:::i;7307:723::-;7363:13;7584:10;7580:53;;-1:-1:-1;;7611:10:0;;;;;;;;;;;;-1:-1:-1;;;7611:10:0;;;;;7307:723::o;7580:53::-;7658:5;7643:12;7699:78;7706:9;;7699:78;;7732:8;;;;:::i;:::-;;-1:-1:-1;7755:10:0;;-1:-1:-1;7763:2:0;7755:10;;:::i;:::-;;;7699:78;;;7787:19;7819:6;7809:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7809:17:0;;7787:39;;7837:154;7844:10;;7837:154;;7871:11;7881:1;7871:11;;:::i;:::-;;-1:-1:-1;7940:10:0;7948:2;7940:5;:10;:::i;:::-;7927:24;;:2;:24;:::i;:::-;7914:39;;7897:6;7904;7897:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7897:56:0;;;;;;;;-1:-1:-1;7968:11:0;7977:2;7968:11;;:::i;:::-;;;7837:154;;43453:589;-1:-1:-1;;;;;43659:18:0;;43655:187;;43694:40;43726:7;44869:10;:17;;44842:24;;;;:15;:24;;;;;:44;;;44897:24;;;;;;;;;;;;44765:164;43694:40;43655:187;;;43764:2;-1:-1:-1;;;;;43756:10:0;:4;-1:-1:-1;;;;;43756:10:0;;43752:90;;43783:47;43816:4;43822:7;43783:32;:47::i;:::-;-1:-1:-1;;;;;43856:16:0;;43852:183;;43889:45;43926:7;43889:36;:45::i;43852:183::-;43962:4;-1:-1:-1;;;;;43956:10:0;:2;-1:-1:-1;;;;;43956:10:0;;43952:83;;43983:40;44011:2;44015:7;43983:27;:40::i;35606:110::-;35682:26;35692:2;35696:7;35682:26;;;;;;;;;;;;:9;:26::i;39343:799::-;39498:4;-1:-1:-1;;;;;39519:13:0;;10155:20;10203:8;39515:620;;39555:72;;-1:-1:-1;;;39555:72:0;;-1:-1:-1;;;;;39555:36:0;;;;;:72;;27258:10;;39606:4;;39612:7;;39621:5;;39555:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39555:72:0;;;;;;;;-1:-1:-1;;39555:72:0;;;;;;;;;;;;:::i;:::-;;;39551:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39797:13:0;;39793:272;;39840:60;;-1:-1:-1;;;39840:60:0;;;;;;;:::i;39793:272::-;40015:6;40009:13;40000:6;39996:2;39992:15;39985:38;39551:529;-1:-1:-1;;;;;;39678:51:0;-1:-1:-1;;;39678:51:0;;-1:-1:-1;39671:58:0;;39515:620;-1:-1:-1;40119:4:0;39343:799;;;;;;:::o;45556:988::-;45822:22;45872:1;45847:22;45864:4;45847:16;:22::i;:::-;:26;;;;:::i;:::-;45884:18;45905:26;;;:17;:26;;;;;;45822:51;;-1:-1:-1;46038:28:0;;;46034:328;;-1:-1:-1;;;;;46105:18:0;;46083:19;46105:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46156:30;;;;;;:44;;;46273:30;;:17;:30;;;;;:43;;;46034:328;-1:-1:-1;46458:26:0;;;;:17;:26;;;;;;;;46451:33;;;-1:-1:-1;;;;;46502:18:0;;;;;:12;:18;;;;;:34;;;;;;;46495:41;45556:988::o;46839:1079::-;47117:10;:17;47092:22;;47117:21;;47137:1;;47117:21;:::i;:::-;47149:18;47170:24;;;:15;:24;;;;;;47543:10;:26;;47092:46;;-1:-1:-1;47170:24:0;;47092:46;;47543:26;;;;;;:::i;:::-;;;;;;;;;47521:48;;47607:11;47582:10;47593;47582:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47687:28;;;:15;:28;;;;;;;:41;;;47859:24;;;;;47852:31;47894:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46910:1008;;;46839:1079;:::o;44343:221::-;44428:14;44445:20;44462:2;44445:16;:20::i;:::-;-1:-1:-1;;;;;44476:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44521:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44343:221:0:o;35943:321::-;36073:18;36079:2;36083:7;36073:5;:18::i;:::-;36124:54;36155:1;36159:2;36163:7;36172:5;36124:22;:54::i;:::-;36102:154;;;;-1:-1:-1;;;36102:154:0;;;;;;;:::i;36600:382::-;-1:-1:-1;;;;;36680:16:0;;36672:61;;;;-1:-1:-1;;;36672:61:0;;14891:2:1;36672:61:0;;;14873:21:1;;;14910:18;;;14903:30;14969:34;14949:18;;;14942:62;15021:18;;36672:61:0;14689:356:1;36672:61:0;34687:4;34711:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34711:16:0;:30;36744:58;;;;-1:-1:-1;;;36744:58:0;;11760:2:1;36744:58:0;;;11742:21:1;11799:2;11779:18;;;11772:30;11838;11818:18;;;11811:58;11886:18;;36744:58:0;11558:352:1;36744:58:0;36815:45;36844:1;36848:2;36852:7;36815:20;:45::i;:::-;-1:-1:-1;;;;;36873:13:0;;;;;;:9;:13;;;;;:18;;36890:1;;36873:13;:18;;36890:1;;36873:18;:::i;:::-;;;;-1:-1:-1;;36902:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36902:21:0;-1:-1:-1;;;;;36902:21:0;;;;;;;;36941:33;;36902:16;;;36941:33;;36902:16;;36941:33;36600:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1472:260;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1737:328;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:53;;;2259:1;2256;2249:12;2210:53;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;2497:18;2489:6;2486:30;2483:50;;;2529:1;2526;2519:12;2483:50;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:55:1;;2634:1;2631;2624:12;2583:55;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2070:666;;;;;;;:::o;2741:347::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2906:29;2925:9;2906:29;:::i;:::-;2896:39;;2985:2;2974:9;2970:18;2957:32;3032:5;3025:13;3018:21;3011:5;3008:32;2998:60;;3054:1;3051;3044:12;2998:60;3077:5;3067:15;;;2741:347;;;;;:::o;3093:254::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;3337:2;3322:18;;;;3309:32;;-1:-1:-1;;;3093:254:1:o;3352:1157::-;3470:6;3478;3531:2;3519:9;3510:7;3506:23;3502:32;3499:52;;;3547:1;3544;3537:12;3499:52;3587:9;3574:23;3616:18;3657:2;3649:6;3646:14;3643:34;;;3673:1;3670;3663:12;3643:34;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:55;;3778:1;3775;3768:12;3727:55;3814:2;3801:16;3836:4;3860:60;3876:43;3916:2;3876:43;:::i;3860:60::-;3942:3;3966:2;3961:3;3954:15;3994:2;3989:3;3985:12;3978:19;;4025:2;4021;4017:11;4073:7;4068:2;4062;4059:1;4055:10;4051:2;4047:19;4043:28;4040:41;4037:61;;;4094:1;4091;4084:12;4037:61;4116:1;4107:10;;4126:169;4140:2;4137:1;4134:9;4126:169;;;4197:23;4216:3;4197:23;:::i;:::-;4185:36;;4158:1;4151:9;;;;;4241:12;;;;4273;;4126:169;;;-1:-1:-1;4314:5:1;-1:-1:-1;;4357:18:1;;4344:32;;-1:-1:-1;;4388:16:1;;;4385:36;;;4417:1;4414;4407:12;4385:36;;4440:63;4495:7;4484:8;4473:9;4469:24;4440:63;:::i;:::-;4430:73;;;3352:1157;;;;;:::o;4514:245::-;4572:6;4625:2;4613:9;4604:7;4600:23;4596:32;4593:52;;;4641:1;4638;4631:12;4593:52;4680:9;4667:23;4699:30;4723:5;4699:30;:::i;4764:249::-;4833:6;4886:2;4874:9;4865:7;4861:23;4857:32;4854:52;;;4902:1;4899;4892:12;4854:52;4934:9;4928:16;4953:30;4977:5;4953:30;:::i;5018:450::-;5087:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5196:9;5183:23;5229:18;5221:6;5218:30;5215:50;;;5261:1;5258;5251:12;5215:50;5284:22;;5337:4;5329:13;;5325:27;-1:-1:-1;5315:55:1;;5366:1;5363;5356:12;5315:55;5389:73;5454:7;5449:2;5436:16;5431:2;5427;5423:11;5389:73;:::i;5473:180::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;-1:-1:-1;5624:23:1;;5473:180;-1:-1:-1;5473:180:1:o;5658:257::-;5699:3;5737:5;5731:12;5764:6;5759:3;5752:19;5780:63;5836:6;5829:4;5824:3;5820:14;5813:4;5806:5;5802:16;5780:63;:::i;:::-;5897:2;5876:15;-1:-1:-1;;5872:29:1;5863:39;;;;5904:4;5859:50;;5658:257;-1:-1:-1;;5658:257:1:o;5920:1527::-;6144:3;6182:6;6176:13;6208:4;6221:51;6265:6;6260:3;6255:2;6247:6;6243:15;6221:51;:::i;:::-;6335:13;;6294:16;;;;6357:55;6335:13;6294:16;6379:15;;;6357:55;:::i;:::-;6501:13;;6434:20;;;6474:1;;6561;6583:18;;;;6636;;;;6663:93;;6741:4;6731:8;6727:19;6715:31;;6663:93;6804:2;6794:8;6791:16;6771:18;6768:40;6765:167;;;-1:-1:-1;;;6831:33:1;;6887:4;6884:1;6877:15;6917:4;6838:3;6905:17;6765:167;6948:18;6975:110;;;;7099:1;7094:328;;;;6941:481;;6975:110;-1:-1:-1;;7010:24:1;;6996:39;;7055:20;;;;-1:-1:-1;6975:110:1;;7094:328;20180:1;20173:14;;;20217:4;20204:18;;7189:1;7203:169;7217:8;7214:1;7211:15;7203:169;;;7299:14;;7284:13;;;7277:37;7342:16;;;;7234:10;;7203:169;;;7207:3;;7403:8;7396:5;7392:20;7385:27;;6941:481;-1:-1:-1;7438:3:1;;5920:1527;-1:-1:-1;;;;;;;;;;;5920:1527:1:o;7660:488::-;-1:-1:-1;;;;;7929:15:1;;;7911:34;;7981:15;;7976:2;7961:18;;7954:43;8028:2;8013:18;;8006:34;;;8076:3;8071:2;8056:18;;8049:31;;;7854:4;;8097:45;;8122:19;;8114:6;8097:45;:::i;:::-;8089:53;7660:488;-1:-1:-1;;;;;;7660:488:1:o;8153:632::-;8324:2;8376:21;;;8446:13;;8349:18;;;8468:22;;;8295:4;;8324:2;8547:15;;;;8521:2;8506:18;;;8295:4;8590:169;8604:6;8601:1;8598:13;8590:169;;;8665:13;;8653:26;;8734:15;;;;8699:12;;;;8626:1;8619:9;8590:169;;;-1:-1:-1;8776:3:1;;8153:632;-1:-1:-1;;;;;;8153:632:1:o;8982:219::-;9131:2;9120:9;9113:21;9094:4;9151:44;9191:2;9180:9;9176:18;9168:6;9151:44;:::i;10732:414::-;10934:2;10916:21;;;10973:2;10953:18;;;10946:30;11012:34;11007:2;10992:18;;10985:62;-1:-1:-1;;;11078:2:1;11063:18;;11056:48;11136:3;11121:19;;10732:414::o;15463:356::-;15665:2;15647:21;;;15684:18;;;15677:30;15743:34;15738:2;15723:18;;15716:62;15810:2;15795:18;;15463:356::o;17810:413::-;18012:2;17994:21;;;18051:2;18031:18;;;18024:30;18090:34;18085:2;18070:18;;18063:62;-1:-1:-1;;;18156:2:1;18141:18;;18134:47;18213:3;18198:19;;17810:413::o;19639:275::-;19710:2;19704:9;19775:2;19756:13;;-1:-1:-1;;19752:27:1;19740:40;;19810:18;19795:34;;19831:22;;;19792:62;19789:88;;;19857:18;;:::i;:::-;19893:2;19886:22;19639:275;;-1:-1:-1;19639:275:1:o;19919:183::-;19979:4;20012:18;20004:6;20001:30;19998:56;;;20034:18;;:::i;:::-;-1:-1:-1;20079:1:1;20075:14;20091:4;20071:25;;19919:183::o;20233:128::-;20273:3;20304:1;20300:6;20297:1;20294:13;20291:39;;;20310:18;;:::i;:::-;-1:-1:-1;20346:9:1;;20233:128::o;20366:120::-;20406:1;20432;20422:35;;20437:18;;:::i;:::-;-1:-1:-1;20471:9:1;;20366:120::o;20491:168::-;20531:7;20597:1;20593;20589:6;20585:14;20582:1;20579:21;20574:1;20567:9;20560:17;20556:45;20553:71;;;20604:18;;:::i;:::-;-1:-1:-1;20644:9:1;;20491:168::o;20664:125::-;20704:4;20732:1;20729;20726:8;20723:34;;;20737:18;;:::i;:::-;-1:-1:-1;20774:9:1;;20664:125::o;20794:258::-;20866:1;20876:113;20890:6;20887:1;20884:13;20876:113;;;20966:11;;;20960:18;20947:11;;;20940:39;20912:2;20905:10;20876:113;;;21007:6;21004:1;21001:13;20998:48;;;-1:-1:-1;;21042:1:1;21024:16;;21017:27;20794:258::o;21057:380::-;21136:1;21132:12;;;;21179;;;21200:61;;21254:4;21246:6;21242:17;21232:27;;21200:61;21307:2;21299:6;21296:14;21276:18;21273:38;21270:161;;;21353:10;21348:3;21344:20;21341:1;21334:31;21388:4;21385:1;21378:15;21416:4;21413:1;21406:15;21270:161;;21057:380;;;:::o;21442:135::-;21481:3;-1:-1:-1;;21502:17:1;;21499:43;;;21522:18;;:::i;:::-;-1:-1:-1;21569:1:1;21558:13;;21442:135::o;21582:112::-;21614:1;21640;21630:35;;21645:18;;:::i;:::-;-1:-1:-1;21679:9:1;;21582:112::o;21699:127::-;21760:10;21755:3;21751:20;21748:1;21741:31;21791:4;21788:1;21781:15;21815:4;21812:1;21805:15;21831:127;21892:10;21887:3;21883:20;21880:1;21873:31;21923:4;21920:1;21913:15;21947:4;21944:1;21937:15;21963:127;22024:10;22019:3;22015:20;22012:1;22005:31;22055:4;22052:1;22045:15;22079:4;22076:1;22069:15;22095:127;22156:10;22151:3;22147:20;22144:1;22137:31;22187:4;22184:1;22177:15;22211:4;22208:1;22201:15;22227:127;22288:10;22283:3;22279:20;22276:1;22269:31;22319:4;22316:1;22309:15;22343:4;22340:1;22333:15;22359:131;-1:-1:-1;;;;;;22433:32:1;;22423:43;;22413:71;;22480:1;22477;22470:12

Swarm Source

ipfs://8dce3831a6cee4086ac9e9a2ab456129461ea02692ad459fc7269ef1509ec488
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.